0s autopkgtest: DBG: testbed init 0s autopkgtest [18:25:27]: starting date and time: 2025-02-12 18:25:27+0000 0s autopkgtest [18:25:27]: git checkout: 325255d2 Merge branch 'pin-any-arch' into 'ubuntu/production' 0s autopkgtest [18:25:27]: host juju-7f2275-prod-proposed-migration-environment-15; command line: /home/ubuntu/autopkgtest/runner/autopkgtest --output-dir /tmp/autopkgtest-work.fgzbr70j/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-search-provider --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-6.secgroup --name adt-plucky-s390x-rust-search-provider-20250212-182527-juju-7f2275-prod-proposed-migration-environment-15-36d1adac-ca4c-455e-9351-f124cee654ab --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 47s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.9UAdYD 47s autopkgtest: DBG: sending command to testbed: print-execute-command 47s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.cyd9blls/runcmd 47s autopkgtest: DBG: sending command to testbed: capabilities 47s autopkgtest: DBG: got reply from testbed: ok reboot revert-full-system isolation-machine suggested-normal-user=ubuntu revert root-on-testbed 47s autopkgtest: DBG: testbed capabilities: ['reboot', 'revert-full-system', 'isolation-machine', 'suggested-normal-user=ubuntu', 'revert', 'root-on-testbed', 'has_internet'] 47s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.9UAdYD'], kind short, sout raw, serr pipe, env [] 48s autopkgtest: DBG: testbed command exited with code 0 48s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/wrapper.sh /tmp/autopkgtest.9UAdYD/wrapper.sh 48s autopkgtest: DBG: got reply from testbed: ok 48s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.9UAdYD/wrapper.sh'], kind short, sout raw, serr pipe, env [] 48s autopkgtest: DBG: testbed command exited with code 0 48s autopkgtest: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env [] 48s autopkgtest: DBG: testbed command exited with code 0 48s autopkgtest [18:26:15]: testbed dpkg architecture: s390x 48s autopkgtest: DBG: testbed command ['dpkg-query', '-W', '-f', '${Version}', 'apt'], kind short, sout pipe, serr pipe, env [] 48s autopkgtest: DBG: testbed command exited with code 0 48s autopkgtest [18:26:15]: testbed apt version: 2.9.28 48s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env [] 48s autopkgtest: DBG: testbed command exited with code 0 48s autopkgtest: DBG: testbed has eatmydata 48s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env [] 49s autopkgtest: DBG: testbed command exited with code 0 49s autopkgtest [18:26:16]: @@@@@@@@@@@@@@@@@@@@ test bed setup 49s 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 [] 49s autopkgtest: DBG: testbed command exited with code 0 49s autopkgtest [18:26:16]: testbed release detected to be: None 49s 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 [] 49s autopkgtest: DBG: testbed command exited with code 0 49s 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 [] 49s autopkgtest: DBG: testbed command exited with code 0 49s autopkgtest: DBG: adding APT source: Types: deb deb-src 49s URIs: http://ftpmaster.internal/ubuntu/ 49s Suites: plucky-proposed 49s Components: main restricted universe multiverse 49s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg 49s 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 [] 49s autopkgtest: DBG: testbed command exited with code 0 49s autopkgtest: DBG: adding APT preference to autopkgtest-zz-plucky-proposed-baseline.pref: 49s Package: * 49s Pin: release plucky-proposed 49s Pin-Priority: 500 49s 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 [] 49s autopkgtest: DBG: testbed command exited with code 0 49s autopkgtest [18:26:16]: updating testbed package index (apt update) 49s 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'] 50s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed InRelease [110 kB] 50s Hit:2 http://ftpmaster.internal/ubuntu plucky InRelease 50s Hit:3 http://ftpmaster.internal/ubuntu plucky-updates InRelease 50s Hit:4 http://ftpmaster.internal/ubuntu plucky-security InRelease 50s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [68.2 kB] 50s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [805 kB] 50s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [14.0 kB] 50s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [116 kB] 50s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [800 kB] 50s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [3984 B] 51s Fetched 1918 kB in 1s (2094 kB/s) 51s Reading package lists... 51s autopkgtest: DBG: testbed command exited with code 0 51s autopkgtest: DBG: adding APT preference to autopkgtest-plucky-proposed.pref: 51s Package: * 51s Pin: release plucky-proposed 51s Pin-Priority: 100 51s 51s Package: src:rust-defaults:any src:libgit2:any src:rustc-1.84:any 51s Pin: release plucky-proposed 51s Pin-Priority: 995 51s 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 [] 51s autopkgtest: DBG: testbed command exited with code 0 51s 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.9UAdYD/${d//\\//_}.stamp; done'], kind short, sout raw, serr pipe, env [] 52s autopkgtest: DBG: testbed command exited with code 0 52s 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'] 52s + lsb_release --codename --short 52s + RELEASE=plucky 52s + cat 52s + [ plucky != trusty ] 52s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade 52s Reading package lists... 52s Building dependency tree... 52s Reading state information... 52s Calculating upgrade... 52s The following packages were automatically installed and are no longer required: 52s libnsl2 libpython3.12-minimal libpython3.12-stdlib libpython3.12t64 52s linux-headers-6.11.0-8 linux-headers-6.11.0-8-generic 52s linux-modules-6.11.0-8-generic linux-tools-6.11.0-8 52s linux-tools-6.11.0-8-generic 52s Use 'sudo apt autoremove' to remove them. 52s The following packages will be upgraded: 52s curl libcurl3t64-gnutls libcurl4t64 libnftables1 libnftnl11 libnspr4 52s nftables 52s 7 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 52s Need to get 1698 kB of archives. 52s After this operation, 46.1 kB of additional disk space will be used. 52s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x nftables s390x 1.1.1-1build1 [71.5 kB] 52s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x libnftnl11 s390x 1.2.8-1 [66.6 kB] 52s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x libnftables1 s390x 1.1.1-1build1 [388 kB] 52s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x curl s390x 8.12.0+git20250209.89ed161+ds-1ubuntu1 [257 kB] 53s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x libcurl4t64 s390x 8.12.0+git20250209.89ed161+ds-1ubuntu1 [397 kB] 53s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x libcurl3t64-gnutls s390x 8.12.0+git20250209.89ed161+ds-1ubuntu1 [393 kB] 53s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x libnspr4 s390x 2:4.36-1ubuntu1 [126 kB] 53s Fetched 1698 kB in 1s (2804 kB/s) 53s (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.) 53s Preparing to unpack .../0-nftables_1.1.1-1build1_s390x.deb ... 53s Unpacking nftables (1.1.1-1build1) over (1.1.0-2) ... 53s Preparing to unpack .../1-libnftnl11_1.2.8-1_s390x.deb ... 53s Unpacking libnftnl11:s390x (1.2.8-1) over (1.2.7-1) ... 53s Preparing to unpack .../2-libnftables1_1.1.1-1build1_s390x.deb ... 53s Unpacking libnftables1:s390x (1.1.1-1build1) over (1.1.0-2) ... 53s Preparing to unpack .../3-curl_8.12.0+git20250209.89ed161+ds-1ubuntu1_s390x.deb ... 53s Unpacking curl (8.12.0+git20250209.89ed161+ds-1ubuntu1) over (8.11.1-1ubuntu1) ... 53s Preparing to unpack .../4-libcurl4t64_8.12.0+git20250209.89ed161+ds-1ubuntu1_s390x.deb ... 53s Unpacking libcurl4t64:s390x (8.12.0+git20250209.89ed161+ds-1ubuntu1) over (8.11.1-1ubuntu1) ... 53s Preparing to unpack .../5-libcurl3t64-gnutls_8.12.0+git20250209.89ed161+ds-1ubuntu1_s390x.deb ... 53s Unpacking libcurl3t64-gnutls:s390x (8.12.0+git20250209.89ed161+ds-1ubuntu1) over (8.11.1-1ubuntu1) ... 53s Preparing to unpack .../6-libnspr4_2%3a4.36-1ubuntu1_s390x.deb ... 53s Unpacking libnspr4:s390x (2:4.36-1ubuntu1) over (2:4.35-1.1ubuntu2) ... 53s Setting up libcurl4t64:s390x (8.12.0+git20250209.89ed161+ds-1ubuntu1) ... 53s Setting up libcurl3t64-gnutls:s390x (8.12.0+git20250209.89ed161+ds-1ubuntu1) ... 53s Setting up libnftnl11:s390x (1.2.8-1) ... 53s Setting up libnspr4:s390x (2:4.36-1ubuntu1) ... 53s Setting up curl (8.12.0+git20250209.89ed161+ds-1ubuntu1) ... 53s Setting up libnftables1:s390x (1.1.1-1build1) ... 53s Setting up nftables (1.1.1-1build1) ... 53s Processing triggers for man-db (2.13.0-1) ... 54s Processing triggers for libc-bin (2.40-4ubuntu1) ... 54s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref 54s + /usr/lib/apt/apt-helper analyze-pattern ?true 54s + uname+ sed s/\./\\./g 54s -r 54s + running_kernel_pattern=^linux-.*6\.12\.0-15-generic.* 54s + apt list ?obsolete 54s + tail -n+2 54s + cut -d/ -f1 54s + grep -v ^linux-.*6\.12\.0-15-generic.* 54s + true 54s + obsolete_pkgs= 54s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove 54s Reading package lists... 55s Building dependency tree... 55s Reading state information... 55s The following packages will be REMOVED: 55s libnsl2* libpython3.12-minimal* libpython3.12-stdlib* libpython3.12t64* 55s linux-headers-6.11.0-8* linux-headers-6.11.0-8-generic* 55s linux-modules-6.11.0-8-generic* linux-tools-6.11.0-8* 55s linux-tools-6.11.0-8-generic* 55s 0 upgraded, 0 newly installed, 9 to remove and 0 not upgraded. 55s After this operation, 167 MB disk space will be freed. 55s (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.) 55s Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ... 55s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ... 55s Removing libpython3.12t64:s390x (3.12.9-1) ... 55s Removing libpython3.12-stdlib:s390x (3.12.9-1) ... 55s Removing libnsl2:s390x (1.3.0-3build3) ... 55s Removing libpython3.12-minimal:s390x (3.12.9-1) ... 55s Removing linux-headers-6.11.0-8-generic (6.11.0-8.8) ... 55s Removing linux-headers-6.11.0-8 (6.11.0-8.8) ... 56s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 56s Processing triggers for libc-bin (2.40-4ubuntu1) ... 56s (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.) 56s Purging configuration files for libpython3.12-minimal:s390x (3.12.9-1) ... 56s Purging configuration files for linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 56s + grep -q trusty /etc/lsb-release 56s + [ ! -d /usr/share/doc/unattended-upgrades ] 56s + [ ! -d /usr/share/doc/lxd ] 56s + [ ! -d /usr/share/doc/lxd-client ] 56s + [ ! -d /usr/share/doc/snapd ] 56s + type iptables 56s + cat 56s + chmod 755 /etc/rc.local 56s + . /etc/rc.local 56s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 56s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP 56s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP 56s + uname -m 56s + [ s390x = ppc64le ] 56s + [ -d /run/systemd/system ] 56s + systemd-detect-virt --quiet --vm 56s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/ 56s + cat 56s + grep -q lz4 /etc/initramfs-tools/initramfs.conf 56s + echo COMPRESS=lz4 56s autopkgtest: DBG: testbed command exited with code 0 56s autopkgtest [18:26:23]: upgrading testbed (apt dist-upgrade and autopurge) 56s 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'] 56s Reading package lists... 56s Building dependency tree... 56s Reading state information... 57s Calculating upgrade...Starting pkgProblemResolver with broken count: 0 57s Starting 2 pkgProblemResolver with broken count: 0 57s Done 57s Entering ResolveByKeep 57s 57s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 57s autopkgtest: DBG: testbed command exited with code 0 57s 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'] 57s Reading package lists... 57s Building dependency tree... 57s Reading state information... 57s Starting pkgProblemResolver with broken count: 0 57s Starting 2 pkgProblemResolver with broken count: 0 57s Done 57s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 58s autopkgtest: DBG: testbed command exited with code 0 58s 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.9UAdYD/${d//\\//_}.stamp; [ ! -d $d ] || [ `stat -c %Y $d` = `stat -c %Y $s` ]; done'], kind short, sout raw, serr raw, env [] 58s autopkgtest: DBG: testbed command exited with code 1 58s autopkgtest [18:26:25]: rebooting testbed after setup commands that affected boot 58s autopkgtest: DBG: sending command to testbed: reboot 73s autopkgtest: DBG: got reply from testbed: ok 73s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 73s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.9UAdYD'], kind short, sout raw, serr pipe, env [] 73s autopkgtest: DBG: testbed command exited with code 0 73s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.9UAdYD/autopkgtest-reboot 73s autopkgtest: DBG: got reply from testbed: ok 73s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.9UAdYD/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 73s autopkgtest: DBG: testbed command exited with code 0 73s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.9UAdYD/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 73s autopkgtest: DBG: testbed command exited with code 0 73s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.9UAdYD/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 73s autopkgtest: DBG: testbed command exited with code 0 73s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.9UAdYD'], kind short, sout raw, serr pipe, env [] 73s autopkgtest: DBG: testbed command exited with code 0 73s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.9UAdYD/autopkgtest-reboot-prepare 74s autopkgtest: DBG: got reply from testbed: ok 74s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.9UAdYD/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 74s autopkgtest: DBG: testbed command exited with code 0 74s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.9UAdYD/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 74s autopkgtest: DBG: testbed command exited with code 0 74s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 74s autopkgtest: DBG: testbed command exited with code 0 74s autopkgtest [18:26:41]: testbed running kernel: Linux 6.12.0-15-generic #15-Ubuntu SMP Tue Feb 4 15:05:57 UTC 2025 74s autopkgtest: DBG: testbed command ['sh', '-c', 'nproc; cat /proc/cpuinfo 2>/dev/null || true'], kind short, sout pipe, serr pipe, env [] 74s autopkgtest: DBG: testbed command exited with code 0 74s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.9UAdYD/testbed-packages"], kind short, sout raw, serr pipe, env [] 74s autopkgtest: DBG: testbed command exited with code 0 74s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.9UAdYD/testbed-packages /tmp/autopkgtest-work.fgzbr70j/out/testbed-packages 75s autopkgtest: DBG: got reply from testbed: ok 75s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 75s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.9UAdYD'], kind short, sout raw, serr pipe, env [] 75s autopkgtest: DBG: testbed command exited with code 0 75s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.9UAdYD/autopkgtest-reboot 75s autopkgtest: DBG: got reply from testbed: ok 75s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.9UAdYD/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 75s autopkgtest: DBG: testbed command exited with code 0 75s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.9UAdYD/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 75s autopkgtest: DBG: testbed command exited with code 0 75s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.9UAdYD/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 76s autopkgtest: DBG: testbed command exited with code 0 76s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.9UAdYD'], kind short, sout raw, serr pipe, env [] 76s autopkgtest: DBG: testbed command exited with code 0 76s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.9UAdYD/autopkgtest-reboot-prepare 76s autopkgtest: DBG: got reply from testbed: ok 76s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.9UAdYD/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 76s autopkgtest: DBG: testbed command exited with code 0 76s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.9UAdYD/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 76s autopkgtest: DBG: testbed command exited with code 0 76s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 76s autopkgtest: DBG: testbed command exited with code 0 76s autopkgtest: DBG: Binaries: initialising 76s autopkgtest [18:26:43]: @@@@@@@@@@@@@@@@@@@@ apt-source rust-search-provider 76s autopkgtest: DBG: blame += rust-search-provider 76s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=[] 76s autopkgtest: DBG: testbed command ['apt-cache', 'showsrc', '--only-source', 'rust-search-provider'], kind short, sout pipe, serr pipe, env [] 77s autopkgtest: DBG: testbed command exited with code 0 77s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^librust-search-provider-dev$'], kind short, sout pipe, serr raw, env [] 77s autopkgtest: DBG: testbed command exited with code 0 77s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'librust-search-provider-dev=0.10.0-2'], kind short, sout pipe, serr raw, env [] 77s autopkgtest: DBG: testbed command exited with code 0 77s autopkgtest: DBG: install_deps: deps_new=[] 77s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v dpkg-source'], kind short, sout pipe, serr pipe, env [] 77s autopkgtest: DBG: testbed command exited with code 0 77s 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.9UAdYD/build.XXX); cd $builddir; OUT=$(apt-get source -d -q --only-source rust-search-provider=0.10.0-2 2>&1) || RC=$?;if [ -n "$RC" ]; then if echo "$OUT" | grep -q "Unable to find a source package"; then exit 1; else exit $RC; fi;fi;echo "$OUT" | grep ^Get: || true;dpkg-source -x rust-search-provider_*.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'] 77s + cd / 77s + mktemp -d /tmp/autopkgtest.9UAdYD/build.XXX 77s + builddir=/tmp/autopkgtest.9UAdYD/build.JnS 77s + cd /tmp/autopkgtest.9UAdYD/build.JnS 77s + apt-get source -d -q --only-source rust-search-provider=0.10.0-2 78s + OUT=Reading package lists... 78s NOTICE: 'rust-search-provider' packaging is maintained in the 'Git' version control system at: 78s https://salsa.debian.org/rust-team/debcargo-conf.git [src/search-provider] 78s Please use: 78s git clone https://salsa.debian.org/rust-team/debcargo-conf.git [src/search-provider] 78s to retrieve the latest (possibly unreleased) updates to the package. 78s Need to get 22.6 kB of source archives. 78s Get:1 http://ftpmaster.internal/ubuntu plucky/universe rust-search-provider 0.10.0-2 (dsc) [2476 B] 78s Get:2 http://ftpmaster.internal/ubuntu plucky/universe rust-search-provider 0.10.0-2 (tar) [17.6 kB] 78s Get:3 http://ftpmaster.internal/ubuntu plucky/universe rust-search-provider 0.10.0-2 (diff) [2528 B] 78s Fetched 22.6 kB in 0s (83.0 kB/s) 78s Download complete and in download only mode 78s + [ -n ] 78s + echo Reading package lists... 78s NOTICE: 'rust-search-provider' packaging is maintained in the 'Git' version control system at: 78s https://salsa.debian.org/rust-team/debcargo-conf.git [src/search-provider] 78s Please use: 78s git clone https://salsa.debian.org/rust-team/debcargo-conf.git [src/search-provider] 78s to retrieve the latest (possibly unreleased) updates to the package. 78s Need to get 22.6 kB of source archives. 78s Get:1 http://ftpmaster.internal/ubuntu plucky/universe rust-search-provider 0.10.0-2 (dsc) [2476 B] 78s Get:2 http://ftpmaster.internal/ubuntu plucky/universe rust-search-provider 0.10.0-2 (tar) [17.6 kB] 78s Get:3 http://ftpmaster.internal/ubuntu plucky/universe rust-search-provider 0.10.0-2 (diff) [2528 B] 78s Fetched 22.6 kB in 0s (83.0 kB/s) 78s Download complete and in download only mode 78s + grep ^Get: 78s Get:1 http://ftpmaster.internal/ubuntu plucky/universe rust-search-provider 0.10.0-2 (dsc) [2476 B] 78s Get:2 http://ftpmaster.internal/ubuntu plucky/universe rust-search-provider 0.10.0-2 (tar) [17.6 kB] 78s Get:3 http://ftpmaster.internal/ubuntu plucky/universe rust-search-provider 0.10.0-2 (diff) [2528 B] 78s + dpkg-source -x rust-search-provider_0.10.0-2.dsc src 78s gpgv: Signature made Tue Aug 27 17:04:43 2024 UTC 78s gpgv: using RSA key 4D0BE12F0E4776D8AACE9696E66C775AEBFE6C7D 78s gpgv: Can't check signature: No public key 78s dpkg-source: warning: cannot verify inline signature for ./rust-search-provider_0.10.0-2.dsc: no acceptable signature found 78s + chmod -R a+rX . 78s + cd src/. 78s + pwd 78s + sed -n 1 {s/).*//; s/ (/\n/; p} debian/changelog 78s autopkgtest: DBG: testbed command exited with code 0 78s autopkgtest [18:26:45]: testing package rust-search-provider version 0.10.0-2 78s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.9UAdYD/build.JnS/src/debian/ /tmp/autopkgtest-work.fgzbr70j/out/pkg/debian/ 78s autopkgtest: DBG: got reply from testbed: ok 78s autopkgtest: DBG: processing dependency dh-cargo (>= 18) 78s autopkgtest: DBG: processing dependency @ 78s autopkgtest: DBG: synthesised dependency librust-search-provider-dev 78s autopkgtest: DBG: Test defined: name rust-search-provider:@ path None command "/usr/share/cargo/bin/cargo-auto-test search-provider 0.10.0 --all-targets --all-features" restrictions ['allow-stderr', 'skip-not-installable'] features ['test-name=rust-search-provider:@'] depends ['dh-cargo (>= 18)', 'librust-search-provider-dev'] 78s autopkgtest: DBG: processing dependency dh-cargo (>= 18) 78s autopkgtest: DBG: processing dependency @ 78s autopkgtest: DBG: synthesised dependency librust-search-provider-dev 78s autopkgtest: DBG: Test defined: name librust-search-provider-dev:async-std path None command "/usr/share/cargo/bin/cargo-auto-test search-provider 0.10.0 --all-targets --no-default-features --features async-std" restrictions ['allow-stderr', 'skip-not-installable'] features ['test-name=librust-search-provider-dev:async-std'] depends ['dh-cargo (>= 18)', 'librust-search-provider-dev'] 78s autopkgtest: DBG: processing dependency dh-cargo (>= 18) 78s autopkgtest: DBG: processing dependency @ 78s autopkgtest: DBG: synthesised dependency librust-search-provider-dev 78s autopkgtest: DBG: Test defined: name librust-search-provider-dev:default path None command "/usr/share/cargo/bin/cargo-auto-test search-provider 0.10.0 --all-targets" restrictions ['allow-stderr', 'skip-not-installable'] features ['test-name=librust-search-provider-dev:default'] depends ['dh-cargo (>= 18)', 'librust-search-provider-dev'] 78s autopkgtest: DBG: processing dependency dh-cargo (>= 18) 78s autopkgtest: DBG: processing dependency @ 78s autopkgtest: DBG: synthesised dependency librust-search-provider-dev 78s autopkgtest: DBG: Test defined: name librust-search-provider-dev:gdk path None command "/usr/share/cargo/bin/cargo-auto-test search-provider 0.10.0 --all-targets --no-default-features --features gdk" restrictions ['allow-stderr', 'flaky', 'skip-not-installable'] features ['test-name=librust-search-provider-dev:gdk'] depends ['dh-cargo (>= 18)', 'librust-search-provider-dev'] 78s autopkgtest: DBG: processing dependency dh-cargo (>= 18) 78s autopkgtest: DBG: processing dependency @ 78s autopkgtest: DBG: synthesised dependency librust-search-provider-dev 78s autopkgtest: DBG: Test defined: name librust-search-provider-dev:gdk-pixbuf path None command "/usr/share/cargo/bin/cargo-auto-test search-provider 0.10.0 --all-targets --no-default-features --features gdk-pixbuf" restrictions ['allow-stderr', 'flaky', 'skip-not-installable'] features ['test-name=librust-search-provider-dev:gdk-pixbuf'] depends ['dh-cargo (>= 18)', 'librust-search-provider-dev'] 78s autopkgtest: DBG: processing dependency dh-cargo (>= 18) 78s autopkgtest: DBG: processing dependency @ 78s autopkgtest: DBG: synthesised dependency librust-search-provider-dev 78s autopkgtest: DBG: Test defined: name librust-search-provider-dev:tokio path None command "/usr/share/cargo/bin/cargo-auto-test search-provider 0.10.0 --all-targets --no-default-features --features tokio" restrictions ['allow-stderr', 'skip-not-installable'] features ['test-name=librust-search-provider-dev:tokio'] depends ['dh-cargo (>= 18)', 'librust-search-provider-dev'] 78s autopkgtest: DBG: processing dependency dh-cargo (>= 18) 78s autopkgtest: DBG: processing dependency @ 78s autopkgtest: DBG: synthesised dependency librust-search-provider-dev 78s autopkgtest: DBG: Test defined: name librust-search-provider-dev: path None command "/usr/share/cargo/bin/cargo-auto-test search-provider 0.10.0 --all-targets --no-default-features" restrictions ['allow-stderr', 'flaky', 'skip-not-installable'] features ['test-name=librust-search-provider-dev:'] depends ['dh-cargo (>= 18)', 'librust-search-provider-dev'] 78s autopkgtest [18:26:45]: build not needed 78s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.9UAdYD/build.JnS/src/ /tmp/autopkgtest-work.fgzbr70j/out/tests-tree/ 79s autopkgtest: DBG: got reply from testbed: ok 79s autopkgtest: DBG: processing dependency dh-cargo (>= 18) 79s autopkgtest: DBG: processing dependency @ 79s autopkgtest: DBG: synthesised dependency librust-search-provider-dev 79s autopkgtest: DBG: Test defined: name rust-search-provider:@ path None command "/usr/share/cargo/bin/cargo-auto-test search-provider 0.10.0 --all-targets --all-features" restrictions ['allow-stderr', 'skip-not-installable'] features ['test-name=rust-search-provider:@'] depends ['dh-cargo (>= 18)', 'librust-search-provider-dev'] 79s autopkgtest: DBG: processing dependency dh-cargo (>= 18) 79s autopkgtest: DBG: processing dependency @ 79s autopkgtest: DBG: synthesised dependency librust-search-provider-dev 79s autopkgtest: DBG: Test defined: name librust-search-provider-dev:async-std path None command "/usr/share/cargo/bin/cargo-auto-test search-provider 0.10.0 --all-targets --no-default-features --features async-std" restrictions ['allow-stderr', 'skip-not-installable'] features ['test-name=librust-search-provider-dev:async-std'] depends ['dh-cargo (>= 18)', 'librust-search-provider-dev'] 79s autopkgtest: DBG: processing dependency dh-cargo (>= 18) 79s autopkgtest: DBG: processing dependency @ 79s autopkgtest: DBG: synthesised dependency librust-search-provider-dev 79s autopkgtest: DBG: Test defined: name librust-search-provider-dev:default path None command "/usr/share/cargo/bin/cargo-auto-test search-provider 0.10.0 --all-targets" restrictions ['allow-stderr', 'skip-not-installable'] features ['test-name=librust-search-provider-dev:default'] depends ['dh-cargo (>= 18)', 'librust-search-provider-dev'] 79s autopkgtest: DBG: processing dependency dh-cargo (>= 18) 79s autopkgtest: DBG: processing dependency @ 79s autopkgtest: DBG: synthesised dependency librust-search-provider-dev 79s autopkgtest: DBG: Test defined: name librust-search-provider-dev:gdk path None command "/usr/share/cargo/bin/cargo-auto-test search-provider 0.10.0 --all-targets --no-default-features --features gdk" restrictions ['allow-stderr', 'flaky', 'skip-not-installable'] features ['test-name=librust-search-provider-dev:gdk'] depends ['dh-cargo (>= 18)', 'librust-search-provider-dev'] 79s autopkgtest: DBG: processing dependency dh-cargo (>= 18) 79s autopkgtest: DBG: processing dependency @ 79s autopkgtest: DBG: synthesised dependency librust-search-provider-dev 79s autopkgtest: DBG: Test defined: name librust-search-provider-dev:gdk-pixbuf path None command "/usr/share/cargo/bin/cargo-auto-test search-provider 0.10.0 --all-targets --no-default-features --features gdk-pixbuf" restrictions ['allow-stderr', 'flaky', 'skip-not-installable'] features ['test-name=librust-search-provider-dev:gdk-pixbuf'] depends ['dh-cargo (>= 18)', 'librust-search-provider-dev'] 79s autopkgtest: DBG: processing dependency dh-cargo (>= 18) 79s autopkgtest: DBG: processing dependency @ 79s autopkgtest: DBG: synthesised dependency librust-search-provider-dev 79s autopkgtest: DBG: Test defined: name librust-search-provider-dev:tokio path None command "/usr/share/cargo/bin/cargo-auto-test search-provider 0.10.0 --all-targets --no-default-features --features tokio" restrictions ['allow-stderr', 'skip-not-installable'] features ['test-name=librust-search-provider-dev:tokio'] depends ['dh-cargo (>= 18)', 'librust-search-provider-dev'] 79s autopkgtest: DBG: processing dependency dh-cargo (>= 18) 79s autopkgtest: DBG: processing dependency @ 79s autopkgtest: DBG: synthesised dependency librust-search-provider-dev 79s autopkgtest: DBG: Test defined: name librust-search-provider-dev: path None command "/usr/share/cargo/bin/cargo-auto-test search-provider 0.10.0 --all-targets --no-default-features" restrictions ['allow-stderr', 'flaky', 'skip-not-installable'] features ['test-name=librust-search-provider-dev:'] depends ['dh-cargo (>= 18)', 'librust-search-provider-dev'] 79s autopkgtest [18:26:46]: test rust-search-provider:@: preparing testbed 79s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=['dh-cargo (>= 18)', 'librust-search-provider-dev'] 79s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 79s autopkgtest: DBG: install_deps: deps_new=['dh-cargo (>= 18)', 'librust-search-provider-dev'] 79s autopkgtest: DBG: install-deps: satisfying dh-cargo (>= 18), librust-search-provider-dev 79s autopkgtest: DBG: can use apt-get on testbed: True 79s 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-search-provider-dev'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 79s Reading package lists... 79s Building dependency tree... 79s Reading state information... 79s Starting pkgProblemResolver with broken count: 0 79s Starting 2 pkgProblemResolver with broken count: 0 79s Done 80s The following NEW packages will be installed: 80s adwaita-icon-theme autoconf automake autopoint autotools-dev cargo 80s cargo-1.84 cpp cpp-14 cpp-14-s390x-linux-gnu cpp-s390x-linux-gnu 80s dconf-gsettings-backend dconf-service debhelper debugedit dh-autoreconf 80s dh-cargo dh-cargo-tools dh-strip-nondeterminism dwz fontconfig 80s fontconfig-config fonts-dejavu-core fonts-dejavu-mono gcc gcc-14 80s gcc-14-s390x-linux-gnu gcc-s390x-linux-gnu gettext gir1.2-freedesktop 80s gir1.2-freedesktop-dev gir1.2-gdkpixbuf-2.0 gir1.2-glib-2.0-dev 80s gir1.2-graphene-1.0 gir1.2-gtk-4.0 gir1.2-harfbuzz-0.0 gir1.2-pango-1.0 80s girepository-tools gtk-update-icon-cache hicolor-icon-theme 80s humanity-icon-theme icu-devtools intltool-debian libarchive-zip-perl 80s libasan8 libblkid-dev libbrotli-dev libbz2-dev libcairo-gobject2 80s libcairo-script-interpreter2 libcairo2 libcairo2-dev libcc1-0 80s libcpdb-frontend2t64 libcpdb2t64 libdatrie-dev libdatrie1 libdconf1 80s libdebhelper-perl libdeflate-dev libdeflate0 libdrm-radeon1 libegl-dev 80s libegl-mesa0 libegl1 libegl1-mesa-dev libepoxy-dev libepoxy0 libexpat1-dev 80s libffi-dev libfile-stripnondeterminism-perl libfontconfig-dev libfontconfig1 80s libfontconfig1-dev libfreetype-dev libfreetype6 libfribidi-dev libgbm1 80s libgcc-14-dev libgdk-pixbuf-2.0-0 libgdk-pixbuf-2.0-dev libgdk-pixbuf2.0-bin 80s libgdk-pixbuf2.0-common libgio-2.0-dev libgio-2.0-dev-bin 80s libgirepository-2.0-0 libgit2-1.9 libgl-dev libgl1 libgl1-mesa-dri 80s libglapi-mesa libgles-dev libgles1 libgles2 libglib2.0-bin libglib2.0-dev 80s libglib2.0-dev-bin libglvnd-core-dev libglvnd-dev libglvnd0 libglx-dev 80s libglx-mesa0 libglx0 libgomp1 libgraphene-1.0-0 libgraphene-1.0-dev 80s libgraphite2-3 libgraphite2-dev libgtk-4-1 libgtk-4-common libgtk-4-dev 80s libharfbuzz-cairo0 libharfbuzz-dev libharfbuzz-gobject0 libharfbuzz-icu0 80s libharfbuzz-subset0 libharfbuzz0b libice-dev libice6 libicu-dev libisl23 80s libitm1 libjbig-dev libjbig0 libjpeg-dev libjpeg-turbo8 libjpeg-turbo8-dev 80s libjpeg8 libjpeg8-dev liblzma-dev libmount-dev libmpc3 libopengl-dev 80s libopengl0 libpango-1.0-0 libpango1.0-dev libpangocairo-1.0-0 80s libpangoft2-1.0-0 libpangoxft-1.0-0 libpcre2-16-0 libpcre2-32-0 libpcre2-dev 80s libpcre2-posix3 libpixman-1-0 libpixman-1-dev libpkgconf3 libpng-dev 80s librust-addr2line-dev librust-adler-dev librust-ahash-dev 80s librust-aho-corasick-dev librust-allocator-api2-dev librust-anstream-dev 80s librust-anstyle-dev librust-anstyle-parse-dev librust-anstyle-query-dev 80s librust-arbitrary-dev librust-arrayvec-dev librust-async-broadcast-dev 80s librust-async-channel-dev librust-async-executor-dev librust-async-fs-dev 80s librust-async-io-dev librust-async-lock-dev librust-async-task-dev 80s librust-async-trait-dev librust-atomic-dev librust-atomic-waker-dev 80s librust-autocfg-dev librust-backtrace-dev librust-bitflags-1-dev 80s librust-bitflags-dev librust-blobby-dev librust-block-buffer-dev 80s librust-blocking-dev librust-bumpalo-dev librust-bytemuck-derive-dev 80s librust-bytemuck-dev librust-byteorder-dev librust-bytes-dev 80s librust-cairo-rs-dev librust-cairo-sys-rs-dev librust-cc-dev 80s librust-cfg-aliases-dev librust-cfg-expr-dev librust-cfg-if-dev 80s librust-chrono-dev librust-colorchoice-dev 80s librust-compiler-builtins+core-dev 80s librust-compiler-builtins+rustc-dep-of-std-dev librust-compiler-builtins-dev 80s librust-concurrent-queue-dev librust-const-oid-dev librust-const-random-dev 80s librust-const-random-macro-dev librust-cpp-demangle-dev 80s librust-cpufeatures-dev librust-crc32fast-dev librust-critical-section-dev 80s librust-crossbeam-deque-dev librust-crossbeam-epoch+std-dev 80s librust-crossbeam-epoch-dev librust-crossbeam-utils-dev librust-crunchy-dev 80s librust-crypto-common-dev librust-defmt-dev librust-defmt-macros-dev 80s librust-defmt-parser-dev librust-deranged-dev librust-derive-arbitrary-dev 80s librust-digest-dev librust-either-dev librust-endi-dev 80s librust-enumflags2-derive-dev librust-enumflags2-dev librust-env-filter-dev 80s librust-env-logger-dev librust-equivalent-dev librust-erased-serde-dev 80s librust-errno-dev librust-event-listener-dev 80s librust-event-listener-strategy-dev librust-fallible-iterator-dev 80s librust-fastrand-dev librust-flate2-dev librust-form-urlencoded-dev 80s librust-freetype-rs-dev librust-freetype-sys-dev librust-futures-channel-dev 80s librust-futures-core-dev librust-futures-dev librust-futures-executor-dev 80s librust-futures-io-dev librust-futures-lite-dev librust-futures-macro-dev 80s librust-futures-sink-dev librust-futures-task-dev librust-futures-util-dev 80s librust-gdk-pixbuf-dev librust-gdk-pixbuf-sys-dev librust-gdk4-dev 80s librust-gdk4-sys-dev librust-generic-array-dev librust-getrandom-dev 80s librust-gimli-dev librust-gio-dev librust-gio-sys-dev librust-gl-dev 80s librust-gl-generator-dev librust-glib-dev librust-glib-macros-dev 80s librust-glib-sys-dev librust-gobject-sys-dev librust-hash32-dev 80s librust-hashbrown-dev librust-heapless-dev librust-heck-dev librust-hex-dev 80s librust-humantime-dev librust-iana-time-zone-dev librust-idna-dev 80s librust-indexmap-dev librust-itoa-dev librust-jobserver-dev 80s librust-js-sys-dev librust-khronos-api-dev librust-kstring-dev 80s librust-libc-dev librust-libm-dev librust-libz-sys-dev 80s librust-linux-raw-sys-dev librust-lock-api-dev librust-log-dev 80s librust-md-5-dev librust-md5-asm-dev librust-memchr-dev librust-memmap2-dev 80s librust-memoffset-dev librust-miniz-oxide-dev librust-mio-dev 80s librust-nix-dev librust-no-panic-dev librust-num-conv-dev 80s librust-num-cpus-dev librust-num-threads-dev librust-num-traits-dev 80s librust-object-dev librust-once-cell-dev librust-ordered-stream-dev 80s librust-owning-ref-dev librust-pango-dev librust-pango-sys-dev 80s librust-parking-dev librust-parking-lot-core-dev librust-parking-lot-dev 80s librust-percent-encoding-dev librust-pin-project-lite-dev 80s librust-pin-utils-dev librust-pkg-config-dev librust-polling-dev 80s librust-portable-atomic-dev librust-powerfmt-dev librust-powerfmt-macros-dev 80s librust-ppv-lite86-dev librust-proc-macro-crate-dev 80s librust-proc-macro-error-attr2-dev librust-proc-macro-error2-dev 80s librust-proc-macro2-dev librust-pure-rust-locales-dev librust-quickcheck-dev 80s librust-quote-dev librust-rand-chacha-dev librust-rand-core+getrandom-dev 80s librust-rand-core+serde-dev librust-rand-core+std-dev librust-rand-core-dev 80s librust-rand-dev librust-rayon-core-dev librust-rayon-dev 80s librust-regex-automata-dev librust-regex-dev librust-regex-syntax-dev 80s librust-rustc-demangle-dev librust-rustc-std-workspace-core-dev 80s librust-rustix-dev librust-ruzstd-dev librust-ryu-dev librust-scopeguard-dev 80s librust-search-provider-dev librust-serde-bytes-dev librust-serde-derive-dev 80s librust-serde-dev librust-serde-fmt-dev librust-serde-json-dev 80s librust-serde-repr-dev librust-serde-spanned-dev librust-serde-test-dev 80s librust-sha1-asm-dev librust-sha1-dev librust-shlex-dev 80s librust-signal-hook-registry-dev librust-slab-dev librust-slog-dev 80s librust-smallvec-dev librust-socket2-dev librust-stable-deref-trait-dev 80s librust-static-assertions-dev librust-subtle-dev librust-sval-buffer-dev 80s librust-sval-derive-dev librust-sval-dev librust-sval-dynamic-dev 80s librust-sval-fmt-dev librust-sval-ref-dev librust-sval-serde-dev 80s librust-syn-1-dev librust-syn-dev librust-system-deps-dev 80s librust-target-lexicon-dev librust-thiserror-dev librust-thiserror-impl-dev 80s librust-time-core-dev librust-time-dev librust-time-macros-dev 80s librust-tiny-keccak-dev librust-tokio-dev librust-tokio-macros-dev 80s librust-tokio-vsock-dev librust-toml-datetime-dev librust-toml-dev 80s librust-toml-edit-dev librust-tracing-attributes-dev 80s librust-tracing-core-dev librust-tracing-dev librust-twox-hash-dev 80s librust-typed-arena-dev librust-typenum-dev librust-ufmt-write-dev 80s librust-unicode-bidi-dev librust-unicode-ident-dev 80s librust-unicode-normalization-dev librust-unicode-segmentation-dev 80s librust-url-dev librust-utf8parse-dev librust-uuid-dev 80s librust-valuable-derive-dev librust-valuable-dev librust-value-bag-dev 80s librust-value-bag-serde1-dev librust-value-bag-sval2-dev 80s librust-version-check-dev librust-version-compare-dev librust-vsock-dev 80s librust-wasm-bindgen-backend-dev librust-wasm-bindgen-dev 80s librust-wasm-bindgen-macro-dev librust-wasm-bindgen-macro-support-dev 80s librust-wasm-bindgen-shared-dev librust-winnow-dev librust-x11-dev 80s librust-xdg-home-dev librust-xml-rs-dev librust-zbus-dev 80s librust-zbus-macros-dev librust-zbus-names-dev librust-zerocopy-derive-dev 80s librust-zerocopy-dev librust-zeroize-derive-dev librust-zeroize-dev 80s librust-zvariant-derive-dev librust-zvariant-dev librust-zvariant-utils-dev 80s libselinux1-dev libsepol-dev libsharpyuv-dev libsharpyuv0 libsm-dev libsm6 80s libstd-rust-1.84 libstd-rust-1.84-dev libsysprof-capture-4-dev libthai-data 80s libthai-dev libthai0 libtiff-dev libtiff6 libtiffxx6 libtool libubsan1 80s libvulkan-dev libvulkan1 libwayland-bin libwayland-client0 80s libwayland-cursor0 libwayland-dev libwayland-egl1 libwayland-server0 80s libwebp-dev libwebp7 libwebpdecoder3 libwebpdemux2 libwebpmux3 libx11-dev 80s libx11-xcb-dev libx11-xcb1 libxau-dev libxcb-dri3-0 libxcb-glx0 80s libxcb-present0 libxcb-randr0 libxcb-render0 libxcb-render0-dev libxcb-shm0 80s libxcb-shm0-dev libxcb-sync1 libxcb-xfixes0 libxcb1-dev libxcomposite-dev 80s libxcomposite1 libxcursor-dev libxcursor1 libxdamage-dev libxdamage1 80s libxdmcp-dev libxext-dev libxfixes-dev libxfixes3 libxft-dev libxft2 80s libxi-dev libxi6 libxinerama-dev libxinerama1 libxkbcommon-dev libxmu-dev 80s libxmu-headers libxmu6 libxrandr-dev libxrandr2 libxrender-dev libxrender1 80s libxshmfence1 libxss-dev libxss1 libxt-dev libxt6t64 libxtst-dev libxtst6 80s libxxf86vm-dev libxxf86vm1 libzstd-dev m4 mesa-libgallium 80s native-architecture pango1.0-tools pkgconf pkgconf-bin po-debconf 80s python3-packaging rustc rustc-1.84 ubuntu-mono uuid-dev wayland-protocols 80s x11-common x11proto-dev xorg-sgml-doctools xtrans-dev zlib1g-dev 80s 0 upgraded, 509 newly installed, 0 to remove and 0 not upgraded. 80s Need to get 196 MB of archives. 80s After this operation, 888 MB of additional disk space will be used. 80s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x libgdk-pixbuf2.0-common all 2.42.12+dfsg-2 [8004 B] 80s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x libjpeg-turbo8 s390x 2.1.5-3ubuntu2 [147 kB] 80s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x libjpeg8 s390x 8c-2ubuntu11 [2146 B] 80s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x libdeflate0 s390x 1.23-1 [46.1 kB] 80s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x libjbig0 s390x 2.1-6.1ubuntu2 [33.1 kB] 80s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x libsharpyuv0 s390x 1.5.0-0.1 [16.7 kB] 80s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x libwebp7 s390x 1.5.0-0.1 [210 kB] 80s Get:8 http://ftpmaster.internal/ubuntu plucky/main s390x libtiff6 s390x 4.5.1+git230720-4ubuntu4 [217 kB] 80s Get:9 http://ftpmaster.internal/ubuntu plucky/main s390x libgdk-pixbuf-2.0-0 s390x 2.42.12+dfsg-2 [154 kB] 80s Get:10 http://ftpmaster.internal/ubuntu plucky/main s390x gtk-update-icon-cache s390x 4.17.1+ds-2ubuntu1 [52.5 kB] 80s Get:11 http://ftpmaster.internal/ubuntu plucky/main s390x hicolor-icon-theme all 0.18-2 [13.3 kB] 80s Get:12 http://ftpmaster.internal/ubuntu plucky/main s390x humanity-icon-theme all 0.6.16 [1282 kB] 80s Get:13 http://ftpmaster.internal/ubuntu plucky/main s390x ubuntu-mono all 24.04-0ubuntu1 [151 kB] 80s Get:14 http://ftpmaster.internal/ubuntu plucky/main s390x adwaita-icon-theme all 48~beta-2 [578 kB] 80s Get:15 http://ftpmaster.internal/ubuntu plucky/main s390x m4 s390x 1.4.19-5 [259 kB] 81s Get:16 http://ftpmaster.internal/ubuntu plucky/main s390x autoconf all 2.72-3 [382 kB] 81s Get:17 http://ftpmaster.internal/ubuntu plucky/main s390x autotools-dev all 20220109.1 [44.9 kB] 81s Get:18 http://ftpmaster.internal/ubuntu plucky/main s390x automake all 1:1.17-3 [572 kB] 81s Get:19 http://ftpmaster.internal/ubuntu plucky/main s390x autopoint all 0.23.1-1 [619 kB] 81s Get:20 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libgit2-1.9 s390x 1.9.0~ds-0ubuntu1 [601 kB] 81s Get:21 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libstd-rust-1.84 s390x 1.84.0+dfsg0ubuntu1-0ubuntu1 [29.9 MB] 81s Get:22 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libstd-rust-1.84-dev s390x 1.84.0+dfsg0ubuntu1-0ubuntu1 [47.9 MB] 83s Get:23 http://ftpmaster.internal/ubuntu plucky/main s390x libisl23 s390x 0.27-1 [704 kB] 83s Get:24 http://ftpmaster.internal/ubuntu plucky/main s390x libmpc3 s390x 1.3.1-1build2 [57.8 kB] 83s Get:25 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-14-s390x-linux-gnu s390x 14.2.0-16ubuntu1 [9572 kB] 83s Get:26 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-14 s390x 14.2.0-16ubuntu1 [1032 B] 83s Get:27 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-s390x-linux-gnu s390x 4:14.2.0-1ubuntu1 [5556 B] 83s Get:28 http://ftpmaster.internal/ubuntu plucky/main s390x cpp s390x 4:14.2.0-1ubuntu1 [22.4 kB] 83s Get:29 http://ftpmaster.internal/ubuntu plucky/main s390x libcc1-0 s390x 14.2.0-16ubuntu1 [50.7 kB] 83s Get:30 http://ftpmaster.internal/ubuntu plucky/main s390x libgomp1 s390x 14.2.0-16ubuntu1 [151 kB] 83s Get:31 http://ftpmaster.internal/ubuntu plucky/main s390x libitm1 s390x 14.2.0-16ubuntu1 [30.9 kB] 83s Get:32 http://ftpmaster.internal/ubuntu plucky/main s390x libasan8 s390x 14.2.0-16ubuntu1 [2964 kB] 83s Get:33 http://ftpmaster.internal/ubuntu plucky/main s390x libubsan1 s390x 14.2.0-16ubuntu1 [1184 kB] 83s Get:34 http://ftpmaster.internal/ubuntu plucky/main s390x libgcc-14-dev s390x 14.2.0-16ubuntu1 [1037 kB] 84s Get:35 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14-s390x-linux-gnu s390x 14.2.0-16ubuntu1 [18.7 MB] 84s Get:36 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14 s390x 14.2.0-16ubuntu1 [525 kB] 84s Get:37 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-s390x-linux-gnu s390x 4:14.2.0-1ubuntu1 [1204 B] 84s Get:38 http://ftpmaster.internal/ubuntu plucky/main s390x gcc s390x 4:14.2.0-1ubuntu1 [5004 B] 84s Get:39 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x rustc-1.84 s390x 1.84.0+dfsg0ubuntu1-0ubuntu1 [6414 kB] 84s Get:40 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x cargo-1.84 s390x 1.84.0+dfsg0ubuntu1-0ubuntu1 [7497 kB] 85s Get:41 http://ftpmaster.internal/ubuntu plucky/main s390x libdconf1 s390x 0.40.0-5 [40.0 kB] 85s Get:42 http://ftpmaster.internal/ubuntu plucky/main s390x dconf-service s390x 0.40.0-5 [28.4 kB] 85s Get:43 http://ftpmaster.internal/ubuntu plucky/main s390x dconf-gsettings-backend s390x 0.40.0-5 [22.8 kB] 85s Get:44 http://ftpmaster.internal/ubuntu plucky/main s390x libdebhelper-perl all 13.24.1ubuntu2 [95.4 kB] 85s Get:45 http://ftpmaster.internal/ubuntu plucky/main s390x libtool all 2.5.4-3build1 [168 kB] 85s Get:46 http://ftpmaster.internal/ubuntu plucky/main s390x dh-autoreconf all 20 [16.1 kB] 85s Get:47 http://ftpmaster.internal/ubuntu plucky/main s390x libarchive-zip-perl all 1.68-1 [90.2 kB] 85s Get:48 http://ftpmaster.internal/ubuntu plucky/main s390x libfile-stripnondeterminism-perl all 1.14.1-2 [20.3 kB] 85s Get:49 http://ftpmaster.internal/ubuntu plucky/main s390x dh-strip-nondeterminism all 1.14.1-2 [5064 B] 85s Get:50 http://ftpmaster.internal/ubuntu plucky/main s390x debugedit s390x 1:5.1-2 [50.1 kB] 85s Get:51 http://ftpmaster.internal/ubuntu plucky/main s390x dwz s390x 0.15-1build6 [122 kB] 85s Get:52 http://ftpmaster.internal/ubuntu plucky/main s390x gettext s390x 0.23.1-1 [1065 kB] 85s Get:53 http://ftpmaster.internal/ubuntu plucky/main s390x intltool-debian all 0.35.0+20060710.6 [23.2 kB] 85s Get:54 http://ftpmaster.internal/ubuntu plucky/main s390x po-debconf all 1.0.21+nmu1 [233 kB] 85s Get:55 http://ftpmaster.internal/ubuntu plucky/main s390x debhelper all 13.24.1ubuntu2 [895 kB] 85s Get:56 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x rustc s390x 1.84.0ubuntu1 [2830 B] 85s Get:57 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x cargo s390x 1.84.0ubuntu1 [2240 B] 85s Get:58 http://ftpmaster.internal/ubuntu plucky/main s390x dh-cargo-tools all 31ubuntu4 [5834 B] 85s Get:59 http://ftpmaster.internal/ubuntu plucky/main s390x dh-cargo all 31ubuntu4 [8668 B] 85s Get:60 http://ftpmaster.internal/ubuntu plucky/main s390x libfreetype6 s390x 2.13.3+dfsg-1 [431 kB] 85s Get:61 http://ftpmaster.internal/ubuntu plucky/main s390x fonts-dejavu-mono all 2.37-8 [502 kB] 85s Get:62 http://ftpmaster.internal/ubuntu plucky/main s390x fonts-dejavu-core all 2.37-8 [835 kB] 85s Get:63 http://ftpmaster.internal/ubuntu plucky/main s390x fontconfig-config s390x 2.15.0-1.1ubuntu2 [37.4 kB] 85s Get:64 http://ftpmaster.internal/ubuntu plucky/main s390x libfontconfig1 s390x 2.15.0-1.1ubuntu2 [150 kB] 85s Get:65 http://ftpmaster.internal/ubuntu plucky/main s390x fontconfig s390x 2.15.0-1.1ubuntu2 [191 kB] 85s Get:66 http://ftpmaster.internal/ubuntu plucky/main s390x libpixman-1-0 s390x 0.44.0-3 [201 kB] 85s Get:67 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-render0 s390x 1.17.0-2 [17.0 kB] 85s Get:68 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-shm0 s390x 1.17.0-2 [5862 B] 85s Get:69 http://ftpmaster.internal/ubuntu plucky/main s390x libxrender1 s390x 1:0.9.10-1.1build1 [20.4 kB] 85s Get:70 http://ftpmaster.internal/ubuntu plucky/main s390x libcairo2 s390x 1.18.2-2 [580 kB] 85s Get:71 http://ftpmaster.internal/ubuntu plucky/main s390x libcairo-gobject2 s390x 1.18.2-2 [127 kB] 85s Get:72 http://ftpmaster.internal/ubuntu plucky/main s390x gir1.2-freedesktop s390x 1.82.0-4 [64.0 kB] 85s Get:73 http://ftpmaster.internal/ubuntu plucky/main s390x gir1.2-glib-2.0-dev s390x 2.83.3-2 [860 kB] 85s Get:74 http://ftpmaster.internal/ubuntu plucky/main s390x gir1.2-freedesktop-dev s390x 1.82.0-4 [37.0 kB] 85s Get:75 http://ftpmaster.internal/ubuntu plucky/main s390x gir1.2-gdkpixbuf-2.0 s390x 2.42.12+dfsg-2 [9330 B] 85s Get:76 http://ftpmaster.internal/ubuntu plucky/main s390x libgraphene-1.0-0 s390x 1.10.8-5 [54.2 kB] 85s Get:77 http://ftpmaster.internal/ubuntu plucky/main s390x gir1.2-graphene-1.0 s390x 1.10.8-5 [11.0 kB] 85s Get:78 http://ftpmaster.internal/ubuntu plucky/main s390x libgraphite2-3 s390x 1.3.14-2ubuntu1 [79.8 kB] 85s Get:79 http://ftpmaster.internal/ubuntu plucky/main s390x libharfbuzz0b s390x 10.2.0-1 [538 kB] 85s Get:80 http://ftpmaster.internal/ubuntu plucky/main s390x libharfbuzz-gobject0 s390x 10.2.0-1 [35.1 kB] 85s Get:81 http://ftpmaster.internal/ubuntu plucky/main s390x gir1.2-harfbuzz-0.0 s390x 10.2.0-1 [44.4 kB] 85s Get:82 http://ftpmaster.internal/ubuntu plucky/main s390x libthai-data all 0.1.29-2build1 [158 kB] 85s Get:83 http://ftpmaster.internal/ubuntu plucky/main s390x libdatrie1 s390x 0.2.13-3build1 [20.6 kB] 85s Get:84 http://ftpmaster.internal/ubuntu plucky/main s390x libthai0 s390x 0.1.29-2build1 [20.7 kB] 85s Get:85 http://ftpmaster.internal/ubuntu plucky/main s390x libpango-1.0-0 s390x 1.56.1-1 [253 kB] 85s Get:86 http://ftpmaster.internal/ubuntu plucky/main s390x libpangoft2-1.0-0 s390x 1.56.1-1 [50.3 kB] 85s Get:87 http://ftpmaster.internal/ubuntu plucky/main s390x libpangocairo-1.0-0 s390x 1.56.1-1 [28.3 kB] 85s Get:88 http://ftpmaster.internal/ubuntu plucky/main s390x libxft2 s390x 2.3.6-1build1 [49.6 kB] 85s Get:89 http://ftpmaster.internal/ubuntu plucky/main s390x libpangoxft-1.0-0 s390x 1.56.1-1 [20.2 kB] 85s Get:90 http://ftpmaster.internal/ubuntu plucky/main s390x gir1.2-pango-1.0 s390x 1.56.1-1 [34.4 kB] 85s Get:91 http://ftpmaster.internal/ubuntu plucky/main s390x libcairo-script-interpreter2 s390x 1.18.2-2 [62.3 kB] 85s Get:92 http://ftpmaster.internal/ubuntu plucky/main s390x libcpdb2t64 s390x 2.0~b5-1.2build1 [26.3 kB] 85s Get:93 http://ftpmaster.internal/ubuntu plucky/main s390x libcpdb-frontend2t64 s390x 2.0~b5-1.2build1 [19.4 kB] 85s Get:94 http://ftpmaster.internal/ubuntu plucky/main s390x libepoxy0 s390x 1.5.10-2 [222 kB] 85s Get:95 http://ftpmaster.internal/ubuntu plucky/main s390x libharfbuzz-subset0 s390x 10.2.0-1 [552 kB] 85s Get:96 http://ftpmaster.internal/ubuntu plucky/main s390x libvulkan1 s390x 1.4.304.0-1 [147 kB] 85s Get:97 http://ftpmaster.internal/ubuntu plucky/main s390x libwayland-client0 s390x 1.23.1-1 [27.8 kB] 85s Get:98 http://ftpmaster.internal/ubuntu plucky/main s390x libwayland-egl1 s390x 1.23.1-1 [5654 B] 85s Get:99 http://ftpmaster.internal/ubuntu plucky/main s390x libxfixes3 s390x 1:6.0.0-2build1 [11.3 kB] 85s Get:100 http://ftpmaster.internal/ubuntu plucky/main s390x libxcursor1 s390x 1:1.2.3-1 [23.4 kB] 86s Get:101 http://ftpmaster.internal/ubuntu plucky/main s390x libxdamage1 s390x 1:1.1.6-1build1 [6156 B] 86s Get:102 http://ftpmaster.internal/ubuntu plucky/main s390x libxi6 s390x 2:1.8.2-1 [35.4 kB] 86s Get:103 http://ftpmaster.internal/ubuntu plucky/main s390x libxinerama1 s390x 2:1.1.4-3build1 [6476 B] 86s Get:104 http://ftpmaster.internal/ubuntu plucky/main s390x libxrandr2 s390x 2:1.5.4-1 [20.8 kB] 86s Get:105 http://ftpmaster.internal/ubuntu plucky/main s390x libglvnd0 s390x 1.7.0-1build1 [110 kB] 86s Get:106 http://ftpmaster.internal/ubuntu plucky/main s390x libgles2 s390x 1.7.0-1build1 [22.4 kB] 86s Get:107 http://ftpmaster.internal/ubuntu plucky/main s390x libgtk-4-common all 4.17.1+ds-2ubuntu1 [1505 kB] 86s Get:108 http://ftpmaster.internal/ubuntu plucky/main s390x libgtk-4-1 s390x 4.17.1+ds-2ubuntu1 [3323 kB] 87s Get:109 http://ftpmaster.internal/ubuntu plucky/main s390x gir1.2-gtk-4.0 s390x 4.17.1+ds-2ubuntu1 [211 kB] 87s Get:110 http://ftpmaster.internal/ubuntu plucky/main s390x native-architecture all 0.2.5 [2082 B] 87s Get:111 http://ftpmaster.internal/ubuntu plucky/main s390x libgirepository-2.0-0 s390x 2.83.3-2 [75.4 kB] 87s Get:112 http://ftpmaster.internal/ubuntu plucky/main s390x girepository-tools s390x 2.83.3-2 [114 kB] 87s Get:113 http://ftpmaster.internal/ubuntu plucky/main s390x icu-devtools s390x 76.1-1ubuntu2 [225 kB] 87s Get:114 http://ftpmaster.internal/ubuntu plucky/main s390x libbrotli-dev s390x 1.1.0-2build3 [395 kB] 87s Get:115 http://ftpmaster.internal/ubuntu plucky/main s390x libbz2-dev s390x 1.0.8-6 [39.1 kB] 87s Get:116 http://ftpmaster.internal/ubuntu plucky/main s390x libexpat1-dev s390x 2.6.4-1 [146 kB] 87s Get:117 http://ftpmaster.internal/ubuntu plucky/main s390x zlib1g-dev s390x 1:1.3.dfsg+really1.3.1-1ubuntu1 [898 kB] 87s Get:118 http://ftpmaster.internal/ubuntu plucky/main s390x libpng-dev s390x 1.6.46-4 [283 kB] 87s Get:119 http://ftpmaster.internal/ubuntu plucky/main s390x libfreetype-dev s390x 2.13.3+dfsg-1 [605 kB] 87s Get:120 http://ftpmaster.internal/ubuntu plucky/main s390x uuid-dev s390x 2.40.2-14ubuntu1 [54.0 kB] 87s Get:121 http://ftpmaster.internal/ubuntu plucky/main s390x libpkgconf3 s390x 1.8.1-4 [31.2 kB] 87s Get:122 http://ftpmaster.internal/ubuntu plucky/main s390x pkgconf-bin s390x 1.8.1-4 [21.5 kB] 87s Get:123 http://ftpmaster.internal/ubuntu plucky/main s390x pkgconf s390x 1.8.1-4 [16.7 kB] 87s Get:124 http://ftpmaster.internal/ubuntu plucky/main s390x libfontconfig-dev s390x 2.15.0-1.1ubuntu2 [172 kB] 87s Get:125 http://ftpmaster.internal/ubuntu plucky/main s390x libffi-dev s390x 3.4.6-1build1 [58.8 kB] 87s Get:126 http://ftpmaster.internal/ubuntu plucky/main s390x libblkid-dev s390x 2.40.2-14ubuntu1 [233 kB] 87s Get:127 http://ftpmaster.internal/ubuntu plucky/main s390x libsepol-dev s390x 3.7-1 [412 kB] 87s Get:128 http://ftpmaster.internal/ubuntu plucky/main s390x libpcre2-16-0 s390x 10.42-4ubuntu3 [236 kB] 87s Get:129 http://ftpmaster.internal/ubuntu plucky/main s390x libpcre2-32-0 s390x 10.42-4ubuntu3 [221 kB] 87s Get:130 http://ftpmaster.internal/ubuntu plucky/main s390x libpcre2-posix3 s390x 10.42-4ubuntu3 [6820 B] 87s Get:131 http://ftpmaster.internal/ubuntu plucky/main s390x libpcre2-dev s390x 10.42-4ubuntu3 [815 kB] 87s Get:132 http://ftpmaster.internal/ubuntu plucky/main s390x libselinux1-dev s390x 3.7-3ubuntu2 [169 kB] 87s Get:133 http://ftpmaster.internal/ubuntu plucky/main s390x libmount-dev s390x 2.40.2-14ubuntu1 [34.6 kB] 87s Get:134 http://ftpmaster.internal/ubuntu plucky/main s390x libsysprof-capture-4-dev s390x 48~beta-2 [51.9 kB] 87s Get:135 http://ftpmaster.internal/ubuntu plucky/main s390x libgio-2.0-dev s390x 2.83.3-2 [1818 kB] 87s Get:136 http://ftpmaster.internal/ubuntu plucky/main s390x libglib2.0-bin s390x 2.83.3-2 [99.5 kB] 87s Get:137 http://ftpmaster.internal/ubuntu plucky/main s390x python3-packaging all 24.2-1 [51.5 kB] 87s Get:138 http://ftpmaster.internal/ubuntu plucky/main s390x libgio-2.0-dev-bin s390x 2.83.3-2 [129 kB] 87s Get:139 http://ftpmaster.internal/ubuntu plucky/main s390x libglib2.0-dev-bin s390x 2.83.3-2 [18.1 kB] 87s Get:140 http://ftpmaster.internal/ubuntu plucky/main s390x libglib2.0-dev s390x 2.83.3-2 [18.9 kB] 87s Get:141 http://ftpmaster.internal/ubuntu plucky/main s390x libpixman-1-dev s390x 0.44.0-3 [10.7 kB] 87s Get:142 http://ftpmaster.internal/ubuntu plucky/main s390x x11-common all 1:7.7+23ubuntu3 [21.7 kB] 87s Get:143 http://ftpmaster.internal/ubuntu plucky/main s390x libice6 s390x 2:1.1.1-1 [45.4 kB] 87s Get:144 http://ftpmaster.internal/ubuntu plucky/main s390x libsm6 s390x 2:1.2.4-1 [18.4 kB] 87s Get:145 http://ftpmaster.internal/ubuntu plucky/main s390x xorg-sgml-doctools all 1:1.11-1.1 [10.9 kB] 87s Get:146 http://ftpmaster.internal/ubuntu plucky/main s390x x11proto-dev all 2024.1-1 [606 kB] 87s Get:147 http://ftpmaster.internal/ubuntu plucky/main s390x libice-dev s390x 2:1.1.1-1 [55.2 kB] 87s Get:148 http://ftpmaster.internal/ubuntu plucky/main s390x libsm-dev s390x 2:1.2.4-1 [20.6 kB] 87s Get:149 http://ftpmaster.internal/ubuntu plucky/main s390x libxau-dev s390x 1:1.0.11-1 [9752 B] 87s Get:150 http://ftpmaster.internal/ubuntu plucky/main s390x libxdmcp-dev s390x 1:1.1.3-0ubuntu6 [26.9 kB] 87s Get:151 http://ftpmaster.internal/ubuntu plucky/main s390x xtrans-dev all 1.4.0-1 [68.9 kB] 87s Get:152 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb1-dev s390x 1.17.0-2 [88.9 kB] 87s Get:153 http://ftpmaster.internal/ubuntu plucky/main s390x libx11-dev s390x 2:1.8.10-2 [761 kB] 88s Get:154 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-render0-dev s390x 1.17.0-2 [20.8 kB] 88s Get:155 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-shm0-dev s390x 1.17.0-2 [8516 B] 88s Get:156 http://ftpmaster.internal/ubuntu plucky/main s390x libxext-dev s390x 2:1.3.4-1build2 [85.7 kB] 88s Get:157 http://ftpmaster.internal/ubuntu plucky/main s390x libxrender-dev s390x 1:0.9.10-1.1build1 [27.8 kB] 88s Get:158 http://ftpmaster.internal/ubuntu plucky/main s390x libcairo2-dev s390x 1.18.2-2 [41.1 kB] 88s Get:159 http://ftpmaster.internal/ubuntu plucky/main s390x libdatrie-dev s390x 0.2.13-3build1 [21.4 kB] 88s Get:160 http://ftpmaster.internal/ubuntu plucky/main s390x libdeflate-dev s390x 1.23-1 [52.2 kB] 88s Get:161 http://ftpmaster.internal/ubuntu plucky/main s390x libdrm-radeon1 s390x 2.4.123-1 [22.4 kB] 88s Get:162 http://ftpmaster.internal/ubuntu plucky/main s390x libwayland-server0 s390x 1.23.1-1 [36.8 kB] 88s Get:163 http://ftpmaster.internal/ubuntu plucky/main s390x libglapi-mesa s390x 24.3.4-3ubuntu1 [68.4 kB] 88s Get:164 http://ftpmaster.internal/ubuntu plucky/main s390x libx11-xcb1 s390x 2:1.8.10-2 [7954 B] 88s Get:165 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-dri3-0 s390x 1.17.0-2 [7616 B] 88s Get:166 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-present0 s390x 1.17.0-2 [6244 B] 88s Get:167 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-randr0 s390x 1.17.0-2 [19.2 kB] 88s Get:168 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-sync1 s390x 1.17.0-2 [9488 B] 88s Get:169 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-xfixes0 s390x 1.17.0-2 [10.5 kB] 88s Get:170 http://ftpmaster.internal/ubuntu plucky/main s390x libxshmfence1 s390x 1.3-1build5 [4772 B] 88s Get:171 http://ftpmaster.internal/ubuntu plucky/main s390x mesa-libgallium s390x 24.3.4-3ubuntu1 [7967 kB] 88s Get:172 http://ftpmaster.internal/ubuntu plucky/main s390x libgbm1 s390x 24.3.4-3ubuntu1 [34.5 kB] 88s Get:173 http://ftpmaster.internal/ubuntu plucky/main s390x libegl-mesa0 s390x 24.3.4-3ubuntu1 [126 kB] 88s Get:174 http://ftpmaster.internal/ubuntu plucky/main s390x libegl1 s390x 1.7.0-1build1 [31.8 kB] 88s Get:175 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-glx0 s390x 1.17.0-2 [26.0 kB] 88s Get:176 http://ftpmaster.internal/ubuntu plucky/main s390x libxxf86vm1 s390x 1:1.1.4-1build4 [9630 B] 88s Get:177 http://ftpmaster.internal/ubuntu plucky/main s390x libgl1-mesa-dri s390x 24.3.4-3ubuntu1 [35.3 kB] 88s Get:178 http://ftpmaster.internal/ubuntu plucky/main s390x libglx-mesa0 s390x 24.3.4-3ubuntu1 [162 kB] 88s Get:179 http://ftpmaster.internal/ubuntu plucky/main s390x libglx0 s390x 1.7.0-1build1 [32.2 kB] 88s Get:180 http://ftpmaster.internal/ubuntu plucky/main s390x libgl1 s390x 1.7.0-1build1 [142 kB] 88s Get:181 http://ftpmaster.internal/ubuntu plucky/main s390x libglx-dev s390x 1.7.0-1build1 [14.2 kB] 88s Get:182 http://ftpmaster.internal/ubuntu plucky/main s390x libgl-dev s390x 1.7.0-1build1 [102 kB] 88s Get:183 http://ftpmaster.internal/ubuntu plucky/main s390x libegl-dev s390x 1.7.0-1build1 [18.2 kB] 88s Get:184 http://ftpmaster.internal/ubuntu plucky/main s390x libglvnd-core-dev s390x 1.7.0-1build1 [13.5 kB] 88s Get:185 http://ftpmaster.internal/ubuntu plucky/main s390x libgles1 s390x 1.7.0-1build1 [13.2 kB] 88s Get:186 http://ftpmaster.internal/ubuntu plucky/main s390x libgles-dev s390x 1.7.0-1build1 [50.5 kB] 88s Get:187 http://ftpmaster.internal/ubuntu plucky/main s390x libopengl0 s390x 1.7.0-1build1 [48.0 kB] 88s Get:188 http://ftpmaster.internal/ubuntu plucky/main s390x libopengl-dev s390x 1.7.0-1build1 [3446 B] 88s Get:189 http://ftpmaster.internal/ubuntu plucky/main s390x libglvnd-dev s390x 1.7.0-1build1 [3198 B] 88s Get:190 http://ftpmaster.internal/ubuntu plucky/main s390x libegl1-mesa-dev s390x 24.3.4-3ubuntu1 [24.1 kB] 88s Get:191 http://ftpmaster.internal/ubuntu plucky/main s390x libepoxy-dev s390x 1.5.10-2 [132 kB] 88s Get:192 http://ftpmaster.internal/ubuntu plucky/main s390x libfontconfig1-dev s390x 2.15.0-1.1ubuntu2 [1844 B] 88s Get:193 http://ftpmaster.internal/ubuntu plucky/main s390x libfribidi-dev s390x 1.0.16-1 [66.0 kB] 88s Get:194 http://ftpmaster.internal/ubuntu plucky/main s390x libgdk-pixbuf2.0-bin s390x 2.42.12+dfsg-2 [13.9 kB] 88s Get:195 http://ftpmaster.internal/ubuntu plucky/main s390x libjpeg-turbo8-dev s390x 2.1.5-3ubuntu2 [281 kB] 88s Get:196 http://ftpmaster.internal/ubuntu plucky/main s390x libjpeg8-dev s390x 8c-2ubuntu11 [1484 B] 88s Get:197 http://ftpmaster.internal/ubuntu plucky/main s390x libjpeg-dev s390x 8c-2ubuntu11 [1484 B] 88s Get:198 http://ftpmaster.internal/ubuntu plucky/main s390x libjbig-dev s390x 2.1-6.1ubuntu2 [30.6 kB] 88s Get:199 http://ftpmaster.internal/ubuntu plucky/main s390x liblzma-dev s390x 5.6.3-1 [183 kB] 89s Get:200 http://ftpmaster.internal/ubuntu plucky/main s390x libzstd-dev s390x 1.5.6+dfsg-2 [408 kB] 89s Get:201 http://ftpmaster.internal/ubuntu plucky/main s390x libwebpdemux2 s390x 1.5.0-0.1 [12.6 kB] 89s Get:202 http://ftpmaster.internal/ubuntu plucky/main s390x libwebpmux3 s390x 1.5.0-0.1 [25.8 kB] 89s Get:203 http://ftpmaster.internal/ubuntu plucky/main s390x libwebpdecoder3 s390x 1.5.0-0.1 [90.2 kB] 89s Get:204 http://ftpmaster.internal/ubuntu plucky/main s390x libsharpyuv-dev s390x 1.5.0-0.1 [17.3 kB] 89s Get:205 http://ftpmaster.internal/ubuntu plucky/main s390x libwebp-dev s390x 1.5.0-0.1 [341 kB] 89s Get:206 http://ftpmaster.internal/ubuntu plucky/main s390x libtiffxx6 s390x 4.5.1+git230720-4ubuntu4 [5894 B] 89s Get:207 http://ftpmaster.internal/ubuntu plucky/main s390x libtiff-dev s390x 4.5.1+git230720-4ubuntu4 [357 kB] 89s Get:208 http://ftpmaster.internal/ubuntu plucky/main s390x libgdk-pixbuf-2.0-dev s390x 2.42.12+dfsg-2 [47.9 kB] 89s Get:209 http://ftpmaster.internal/ubuntu plucky/main s390x libgraphene-1.0-dev s390x 1.10.8-5 [58.5 kB] 89s Get:210 http://ftpmaster.internal/ubuntu plucky/main s390x libgraphite2-dev s390x 1.3.14-2ubuntu1 [14.7 kB] 89s Get:211 http://ftpmaster.internal/ubuntu plucky/main s390x libharfbuzz-icu0 s390x 10.2.0-1 [13.3 kB] 89s Get:212 http://ftpmaster.internal/ubuntu plucky/main s390x libharfbuzz-cairo0 s390x 10.2.0-1 [27.5 kB] 89s Get:213 http://ftpmaster.internal/ubuntu plucky/main s390x libicu-dev s390x 76.1-1ubuntu2 [12.2 MB] 91s Get:214 http://ftpmaster.internal/ubuntu plucky/main s390x libharfbuzz-dev s390x 10.2.0-1 [143 kB] 91s Get:215 http://ftpmaster.internal/ubuntu plucky/main s390x libthai-dev s390x 0.1.29-2build1 [28.3 kB] 91s Get:216 http://ftpmaster.internal/ubuntu plucky/main s390x libxft-dev s390x 2.3.6-1build1 [69.1 kB] 91s Get:217 http://ftpmaster.internal/ubuntu plucky/main s390x pango1.0-tools s390x 1.56.1-1 [39.0 kB] 91s Get:218 http://ftpmaster.internal/ubuntu plucky/main s390x libpango1.0-dev s390x 1.56.1-1 [148 kB] 91s Get:219 http://ftpmaster.internal/ubuntu plucky/main s390x libwayland-cursor0 s390x 1.23.1-1 [11.5 kB] 91s Get:220 http://ftpmaster.internal/ubuntu plucky/main s390x libwayland-bin s390x 1.23.1-1 [21.3 kB] 91s Get:221 http://ftpmaster.internal/ubuntu plucky/main s390x libwayland-dev s390x 1.23.1-1 [74.4 kB] 91s Get:222 http://ftpmaster.internal/ubuntu plucky/main s390x libxcomposite1 s390x 1:0.4.6-1 [6588 B] 91s Get:223 http://ftpmaster.internal/ubuntu plucky/main s390x libxfixes-dev s390x 1:6.0.0-2build1 [12.8 kB] 91s Get:224 http://ftpmaster.internal/ubuntu plucky/main s390x libxcomposite-dev s390x 1:0.4.6-1 [9554 B] 91s Get:225 http://ftpmaster.internal/ubuntu plucky/main s390x libxcursor-dev s390x 1:1.2.3-1 [34.9 kB] 91s Get:226 http://ftpmaster.internal/ubuntu plucky/main s390x libxdamage-dev s390x 1:1.1.6-1build1 [5328 B] 91s Get:227 http://ftpmaster.internal/ubuntu plucky/main s390x libxi-dev s390x 2:1.8.2-1 [196 kB] 91s Get:228 http://ftpmaster.internal/ubuntu plucky/main s390x libxinerama-dev s390x 2:1.1.4-3build1 [8118 B] 91s Get:229 http://ftpmaster.internal/ubuntu plucky/main s390x libxkbcommon-dev s390x 1.7.0-2 [57.1 kB] 91s Get:230 http://ftpmaster.internal/ubuntu plucky/main s390x libxrandr-dev s390x 2:1.5.4-1 [27.6 kB] 91s Get:231 http://ftpmaster.internal/ubuntu plucky/main s390x libvulkan-dev s390x 1.4.304.0-1 [1366 kB] 91s Get:232 http://ftpmaster.internal/ubuntu plucky/main s390x wayland-protocols all 1.40-1 [109 kB] 91s Get:233 http://ftpmaster.internal/ubuntu plucky/main s390x libgtk-4-dev s390x 4.17.1+ds-2ubuntu1 [942 kB] 91s Get:234 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-cfg-if-dev s390x 1.0.0-1 [10.5 kB] 91s Get:235 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-cpp-demangle-dev s390x 0.4.0-1 [66.1 kB] 91s Get:236 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-fallible-iterator-dev s390x 0.3.0-2 [20.3 kB] 91s Get:237 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-unicode-ident-dev s390x 1.0.13-1 [38.5 kB] 91s Get:238 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-proc-macro2-dev s390x 1.0.92-1 [46.1 kB] 91s Get:239 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-quote-dev s390x 1.0.37-1 [29.5 kB] 91s Get:240 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-syn-dev s390x 2.0.96-2 [227 kB] 91s Get:241 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-derive-arbitrary-dev s390x 1.4.1-1 [13.5 kB] 91s Get:242 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-arbitrary-dev s390x 1.4.1-1 [36.9 kB] 91s Get:243 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-equivalent-dev s390x 1.0.1-1 [8240 B] 91s Get:244 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-critical-section-dev s390x 1.2.0-1 [21.0 kB] 91s Get:245 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-serde-derive-dev s390x 1.0.217-1 [51.2 kB] 91s Get:246 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-serde-dev s390x 1.0.217-1 [67.2 kB] 91s Get:247 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-portable-atomic-dev s390x 1.10.0-3 [128 kB] 91s Get:248 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rustc-std-workspace-core-dev s390x 1.0.0-1 [3020 B] 91s Get:249 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-libc-dev s390x 0.2.169-1 [382 kB] 91s Get:250 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-getrandom-dev s390x 0.2.15-1 [37.8 kB] 91s Get:251 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-smallvec-dev s390x 1.13.2-1 [35.5 kB] 91s Get:252 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-parking-lot-core-dev s390x 0.9.10-1 [32.6 kB] 91s Get:253 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-once-cell-dev s390x 1.20.2-1 [31.9 kB] 91s Get:254 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-crunchy-dev s390x 0.2.2-1 [5340 B] 91s Get:255 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-tiny-keccak-dev s390x 2.0.2-1 [20.9 kB] 91s Get:256 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-const-random-macro-dev s390x 0.1.16-2 [10.5 kB] 91s Get:257 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-const-random-dev s390x 0.1.17-2 [8590 B] 91s Get:258 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-version-check-dev s390x 0.9.5-1 [16.9 kB] 92s Get:259 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-byteorder-dev s390x 1.5.0-1 [22.4 kB] 92s Get:260 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-zerocopy-derive-dev s390x 0.7.34-1 [30.3 kB] 92s Get:261 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-zerocopy-dev s390x 0.7.34-1 [117 kB] 92s Get:262 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-ahash-dev all 0.8.11-9 [38.1 kB] 92s Get:263 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-allocator-api2-dev s390x 0.2.16-1 [54.8 kB] 92s Get:264 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-compiler-builtins-dev s390x 0.1.139-1 [178 kB] 92s Get:265 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-either-dev s390x 1.13.0-1 [20.2 kB] 92s Get:266 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-crossbeam-utils-dev s390x 0.8.19-1 [41.1 kB] 92s Get:267 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-crossbeam-epoch-dev s390x 0.9.18-1 [42.3 kB] 92s Get:268 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-crossbeam-epoch+std-dev s390x 0.9.18-1 [1128 B] 92s Get:269 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-crossbeam-deque-dev s390x 0.8.5-1 [22.4 kB] 92s Get:270 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rayon-core-dev s390x 1.12.1-1 [63.7 kB] 92s Get:271 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rayon-dev s390x 1.10.0-1 [149 kB] 92s Get:272 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-hashbrown-dev s390x 0.14.5-5 [110 kB] 92s Get:273 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-indexmap-dev s390x 2.7.0-1 [69.4 kB] 92s Get:274 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-stable-deref-trait-dev s390x 1.2.0-1 [9794 B] 92s Get:275 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-gimli-dev s390x 0.31.1-2 [216 kB] 92s Get:276 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-memmap2-dev s390x 0.9.5-1 [31.6 kB] 92s Get:277 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-crc32fast-dev s390x 1.4.2-1 [39.8 kB] 92s Get:278 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-pkg-config-dev s390x 0.3.31-1 [23.5 kB] 92s Get:279 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-libz-sys-dev s390x 1.1.20-1 [19.7 kB] 92s Get:280 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-adler-dev s390x 1.0.2-2 [15.3 kB] 92s Get:281 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-miniz-oxide-dev s390x 0.7.1-1 [51.5 kB] 92s Get:282 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-flate2-dev s390x 1.0.34-1 [94.5 kB] 92s Get:283 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-sval-derive-dev s390x 2.6.1-2 [11.0 kB] 92s Get:284 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-sval-dev s390x 2.6.1-2 [28.0 kB] 92s Get:285 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-sval-ref-dev s390x 2.6.1-1 [8942 B] 92s Get:286 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-erased-serde-dev s390x 0.3.31-1 [22.7 kB] 92s Get:287 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-serde-fmt-dev all 1.0.3-4 [7202 B] 92s Get:288 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-no-panic-dev s390x 0.1.32-1 [14.6 kB] 92s Get:289 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-itoa-dev s390x 1.0.14-1 [13.5 kB] 92s Get:290 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-ryu-dev s390x 1.0.19-1 [43.1 kB] 92s Get:291 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-serde-json-dev s390x 1.0.133-1 [130 kB] 92s Get:292 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-serde-test-dev s390x 1.0.171-1 [20.6 kB] 92s Get:293 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-value-bag-serde1-dev s390x 1.9.0-1 [7820 B] 92s Get:294 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-sval-buffer-dev s390x 2.6.1-1 [16.8 kB] 92s Get:295 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-sval-dynamic-dev s390x 2.6.1-1 [9542 B] 92s Get:296 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-sval-fmt-dev s390x 2.6.1-1 [12.0 kB] 92s Get:297 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-sval-serde-dev s390x 2.6.1-1 [13.2 kB] 92s Get:298 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-value-bag-sval2-dev s390x 1.9.0-1 [7862 B] 92s Get:299 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-value-bag-dev s390x 1.9.0-1 [37.6 kB] 92s Get:300 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-log-dev s390x 0.4.22-1 [43.0 kB] 92s Get:301 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-memchr-dev s390x 2.7.4-1 [71.8 kB] 92s Get:302 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-blobby-dev s390x 0.3.1-1 [11.3 kB] 92s Get:303 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-typenum-dev s390x 1.17.0-2 [41.2 kB] 92s Get:304 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-zeroize-derive-dev s390x 1.4.2-1 [12.7 kB] 92s Get:305 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-zeroize-dev s390x 1.8.1-1 [21.6 kB] 92s Get:306 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-generic-array-dev s390x 0.14.7-1 [16.9 kB] 92s Get:307 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-block-buffer-dev s390x 0.10.2-2 [12.2 kB] 92s Get:308 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-const-oid-dev s390x 0.9.6-1 [41.5 kB] 92s Get:309 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rand-core-dev s390x 0.6.4-2 [23.8 kB] 92s Get:310 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rand-core+getrandom-dev s390x 0.6.4-2 [1054 B] 92s Get:311 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-crypto-common-dev s390x 0.1.6-1 [10.5 kB] 92s Get:312 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-subtle-dev s390x 2.6.1-1 [16.1 kB] 92s Get:313 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-digest-dev s390x 0.10.7-2 [20.9 kB] 93s Get:314 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-ppv-lite86-dev s390x 0.2.20-1 [22.2 kB] 93s Get:315 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rand-chacha-dev s390x 0.3.1-2 [16.9 kB] 93s Get:316 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rand-core+serde-dev s390x 0.6.4-2 [1108 B] 93s Get:317 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rand-core+std-dev s390x 0.6.4-2 [1052 B] 93s Get:318 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rand-dev s390x 0.8.5-1 [77.5 kB] 93s Get:319 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-static-assertions-dev s390x 1.1.0-1 [19.0 kB] 93s Get:320 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-twox-hash-dev s390x 1.6.3-1 [21.6 kB] 93s Get:321 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-ruzstd-dev s390x 0.7.3-2 [57.7 kB] 93s Get:322 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-object-dev s390x 0.36.5-2 [259 kB] 93s Get:323 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rustc-demangle-dev s390x 0.1.24-1 [28.9 kB] 93s Get:324 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-typed-arena-dev s390x 2.0.2-1 [13.9 kB] 93s Get:325 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-addr2line-dev s390x 0.24.2-2 [34.8 kB] 93s Get:326 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-aho-corasick-dev s390x 1.1.3-1 [146 kB] 93s Get:327 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-anstyle-dev s390x 1.0.8-1 [16.7 kB] 93s Get:328 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-arrayvec-dev s390x 0.7.6-1 [31.7 kB] 93s Get:329 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-utf8parse-dev s390x 0.2.1-1 [15.0 kB] 93s Get:330 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-anstyle-parse-dev s390x 0.2.1-1 [17.1 kB] 93s Get:331 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-anstyle-query-dev s390x 1.0.0-1 [9768 B] 93s Get:332 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-colorchoice-dev s390x 1.0.0-1 [8338 B] 93s Get:333 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-anstream-dev s390x 0.6.15-1 [25.7 kB] 93s Get:334 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-concurrent-queue-dev s390x 2.5.0-4 [23.9 kB] 93s Get:335 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-parking-dev s390x 2.2.0-1 [11.6 kB] 93s Get:336 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-pin-project-lite-dev s390x 0.2.13-1 [30.2 kB] 93s Get:337 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-event-listener-dev all 5.4.0-3 [31.3 kB] 93s Get:338 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-event-listener-strategy-dev s390x 0.5.3-1 [13.1 kB] 93s Get:339 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-futures-core-dev s390x 0.3.31-1 [16.9 kB] 93s Get:340 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-async-broadcast-dev s390x 0.7.1-1 [22.6 kB] 93s Get:341 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-async-channel-dev all 2.3.1-9 [13.3 kB] 93s Get:342 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-async-task-dev all 4.7.1-4 [29.5 kB] 93s Get:343 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-fastrand-dev s390x 2.1.1-1 [17.8 kB] 93s Get:344 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-futures-io-dev s390x 0.3.31-1 [11.2 kB] 93s Get:345 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-futures-lite-dev s390x 2.3.0-2 [38.6 kB] 93s Get:346 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-autocfg-dev s390x 1.1.0-1 [15.2 kB] 93s Get:347 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-slab-dev s390x 0.4.9-1 [21.2 kB] 93s Get:348 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-async-executor-dev all 1.13.1-2 [18.8 kB] 93s Get:349 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-async-lock-dev all 3.4.0-5 [29.4 kB] 93s Get:350 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-atomic-waker-dev s390x 1.1.2-1 [14.3 kB] 93s Get:351 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-tracing-attributes-dev s390x 0.1.27-1 [33.3 kB] 93s Get:352 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-syn-1-dev s390x 1.0.109-3 [188 kB] 93s Get:353 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-valuable-derive-dev s390x 0.1.0-1 [5942 B] 93s Get:354 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-valuable-dev s390x 0.1.0-4 [23.5 kB] 93s Get:355 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-tracing-core-dev s390x 0.1.32-1 [53.8 kB] 93s Get:356 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-tracing-dev s390x 0.1.40-1 [69.5 kB] 93s Get:357 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-blocking-dev all 1.6.1-6 [17.7 kB] 93s Get:358 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-async-fs-dev all 2.1.2-5 [15.4 kB] 93s Get:359 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-bytemuck-derive-dev s390x 1.5.0-2 [18.7 kB] 93s Get:360 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-bytemuck-dev s390x 1.21.0-1 [48.9 kB] 93s Get:361 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-bitflags-dev s390x 2.8.0-1 [43.5 kB] 93s Get:362 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-compiler-builtins+core-dev s390x 0.1.139-1 [1096 B] 93s Get:363 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-compiler-builtins+rustc-dep-of-std-dev s390x 0.1.139-1 [1106 B] 93s Get:364 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-errno-dev s390x 0.3.8-1 [13.0 kB] 93s Get:365 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-linux-raw-sys-dev s390x 0.4.14-1 [138 kB] 93s Get:366 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rustix-dev s390x 0.38.37-1 [272 kB] 93s Get:367 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-polling-dev s390x 3.4.0-1 [47.8 kB] 93s Get:368 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-async-io-dev s390x 2.3.3-4 [41.0 kB] 93s Get:369 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-async-trait-dev s390x 0.1.83-1 [30.4 kB] 93s Get:370 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-atomic-dev s390x 0.6.0-1 [15.5 kB] 93s Get:371 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-backtrace-dev s390x 0.3.74-3 [79.8 kB] 93s Get:372 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-bitflags-1-dev s390x 1.3.2-7 [25.6 kB] 93s Get:373 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-bumpalo-dev s390x 3.16.0-1 [75.7 kB] 93s Get:374 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-bytes-dev s390x 1.9.0-1 [59.0 kB] 93s Get:375 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-target-lexicon-dev s390x 0.12.14-1 [25.1 kB] 93s Get:376 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-cfg-expr-dev s390x 0.15.8-1 [39.1 kB] 93s Get:377 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-unicode-segmentation-dev s390x 1.12.0-1 [77.3 kB] 93s Get:378 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-heck-dev s390x 0.4.1-1 [13.3 kB] 93s Get:379 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-serde-spanned-dev s390x 0.6.7-1 [10.7 kB] 93s Get:380 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-toml-datetime-dev s390x 0.6.8-1 [13.3 kB] 93s Get:381 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-kstring-dev s390x 2.0.0-1 [17.7 kB] 94s Get:382 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-winnow-dev s390x 0.6.18-1 [127 kB] 94s Get:383 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-toml-edit-dev s390x 0.22.20-1 [94.1 kB] 94s Get:384 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-toml-dev s390x 0.8.19-1 [43.2 kB] 94s Get:385 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-version-compare-dev s390x 0.1.1-1 [14.6 kB] 94s Get:386 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-system-deps-dev s390x 7.0.2-2 [30.2 kB] 94s Get:387 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-glib-sys-dev s390x 0.20.7-1 [54.4 kB] 94s Get:388 http://ftpmaster.internal/ubuntu plucky/main s390x libxxf86vm-dev s390x 1:1.1.4-1build4 [14.1 kB] 94s Get:389 http://ftpmaster.internal/ubuntu plucky/main s390x libx11-xcb-dev s390x 2:1.8.10-2 [9892 B] 94s Get:390 http://ftpmaster.internal/ubuntu plucky/main s390x libxt6t64 s390x 1:1.2.1-1.2build1 [184 kB] 94s Get:391 http://ftpmaster.internal/ubuntu plucky/main s390x libxt-dev s390x 1:1.2.1-1.2build1 [410 kB] 94s Get:392 http://ftpmaster.internal/ubuntu plucky/main s390x libxmu6 s390x 2:1.1.3-3build2 [53.0 kB] 94s Get:393 http://ftpmaster.internal/ubuntu plucky/main s390x libxmu-headers all 2:1.1.3-3build2 [53.0 kB] 94s Get:394 http://ftpmaster.internal/ubuntu plucky/main s390x libxmu-dev s390x 2:1.1.3-3build2 [60.2 kB] 94s Get:395 http://ftpmaster.internal/ubuntu plucky/main s390x libxss1 s390x 1:1.2.3-1build3 [7396 B] 94s Get:396 http://ftpmaster.internal/ubuntu plucky/main s390x libxss-dev s390x 1:1.2.3-1build3 [12.5 kB] 94s Get:397 http://ftpmaster.internal/ubuntu plucky/main s390x libxtst6 s390x 2:1.2.5-1 [13.5 kB] 94s Get:398 http://ftpmaster.internal/ubuntu plucky/main s390x libxtst-dev s390x 2:1.2.5-1 [16.5 kB] 94s Get:399 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-x11-dev s390x 2.19.1-1 [59.2 kB] 94s Get:400 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-cairo-sys-rs-dev s390x 0.20.7-1 [14.5 kB] 94s Get:401 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-jobserver-dev s390x 0.1.32-1 [29.1 kB] 94s Get:402 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-shlex-dev s390x 1.3.0-1 [20.1 kB] 94s Get:403 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-cc-dev s390x 1.1.14-1 [73.6 kB] 94s Get:404 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-freetype-sys-dev s390x 0.20.1-1 [17.2 kB] 94s Get:405 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-freetype-rs-dev s390x 0.36.0-2 [97.4 kB] 94s Get:406 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-futures-sink-dev s390x 0.3.31-1 [10.1 kB] 94s Get:407 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-futures-channel-dev s390x 0.3.31-1 [32.1 kB] 94s Get:408 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-futures-task-dev s390x 0.3.31-3 [13.7 kB] 94s Get:409 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-futures-macro-dev s390x 0.3.31-1 [13.4 kB] 94s Get:410 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-pin-utils-dev s390x 0.1.0-1 [9340 B] 94s Get:411 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-futures-util-dev s390x 0.3.31-1 [129 kB] 94s Get:412 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-num-cpus-dev s390x 1.16.0-1 [18.1 kB] 94s Get:413 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-futures-executor-dev s390x 0.3.31-1 [20.0 kB] 94s Get:414 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-gobject-sys-dev s390x 0.20.7-1 [19.5 kB] 94s Get:415 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-gio-sys-dev s390x 0.20.8-2 [67.2 kB] 94s Get:416 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-proc-macro-crate-dev s390x 3.2.0-1 [13.4 kB] 94s Get:417 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-glib-macros-dev s390x 0.20.7-1 [61.8 kB] 94s Get:418 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-glib-dev s390x 0.20.7-1 [218 kB] 94s Get:419 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-cairo-rs-dev s390x 0.20.7-1 [47.7 kB] 94s Get:420 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-cfg-aliases-dev s390x 0.2.1-1 [8100 B] 94s Get:421 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-iana-time-zone-dev s390x 0.1.60-1 [25.1 kB] 94s Get:422 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-wasm-bindgen-shared-dev s390x 0.2.99-1 [9822 B] 94s Get:423 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-wasm-bindgen-backend-dev s390x 0.2.99-1 [30.5 kB] 94s Get:424 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-wasm-bindgen-macro-support-dev s390x 0.2.99-1 [23.9 kB] 94s Get:425 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-wasm-bindgen-macro-dev s390x 0.2.99-1 [9304 B] 95s Get:426 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-wasm-bindgen-dev s390x 0.2.99-1 [44.1 kB] 95s Get:427 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-js-sys-dev s390x 0.3.64-1 [71.9 kB] 95s Get:428 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-libm-dev s390x 0.2.8-1 [101 kB] 95s Get:429 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-num-traits-dev s390x 0.2.19-2 [46.2 kB] 95s Get:430 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-pure-rust-locales-dev s390x 0.8.1-1 [112 kB] 95s Get:431 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-chrono-dev s390x 0.4.39-2 [174 kB] 95s Get:432 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-cpufeatures-dev s390x 0.2.16-1 [15.5 kB] 95s Get:433 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-thiserror-impl-dev s390x 2.0.11-1 [21.9 kB] 95s Get:434 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-thiserror-dev s390x 2.0.11-1 [29.0 kB] 95s Get:435 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-defmt-parser-dev s390x 0.4.1-1 [11.8 kB] 95s Get:436 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-proc-macro-error-attr2-dev s390x 2.0.0-1 [9402 B] 95s Get:437 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-proc-macro-error2-dev s390x 2.0.1-1 [26.2 kB] 95s Get:438 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-defmt-macros-dev s390x 0.4.0-1 [22.4 kB] 95s Get:439 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-defmt-dev s390x 0.3.10-1 [26.8 kB] 95s Get:440 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-powerfmt-macros-dev s390x 0.1.0-1 [10.5 kB] 95s Get:441 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-powerfmt-dev s390x 0.2.0-1 [16.5 kB] 95s Get:442 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-regex-syntax-dev s390x 0.8.5-1 [203 kB] 95s Get:443 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-regex-automata-dev s390x 0.4.9-2 [425 kB] 95s Get:444 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-regex-dev s390x 1.11.1-2 [201 kB] 95s Get:445 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-env-filter-dev s390x 0.1.3-1 [15.0 kB] 95s Get:446 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-humantime-dev s390x 2.1.0-2 [19.2 kB] 95s Get:447 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-env-logger-dev s390x 0.11.5-2 [30.2 kB] 95s Get:448 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-quickcheck-dev s390x 1.0.3-5 [28.1 kB] 95s Get:449 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-deranged-dev s390x 0.3.11-1 [18.4 kB] 95s Get:450 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-endi-dev s390x 1.1.0-2build1 [6938 B] 95s Get:451 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-enumflags2-derive-dev s390x 0.7.10-1 [10.1 kB] 95s Get:452 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-enumflags2-dev s390x 0.7.10-1 [18.3 kB] 95s Get:453 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-percent-encoding-dev s390x 2.3.1-1 [11.9 kB] 95s Get:454 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-form-urlencoded-dev s390x 1.2.1-1 [10.8 kB] 95s Get:455 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-futures-dev s390x 0.3.30-2 [53.2 kB] 95s Get:456 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-gdk-pixbuf-sys-dev s390x 0.20.7-1 [11.5 kB] 95s Get:457 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-gio-dev s390x 0.20.7-1 [159 kB] 95s Get:458 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-gdk-pixbuf-dev s390x 0.20.7-1 [20.0 kB] 95s Get:459 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-pango-sys-dev s390x 0.20.7-1 [23.8 kB] 95s Get:460 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-gdk4-sys-dev s390x 0.9.5-1 [57.0 kB] 95s Get:461 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-khronos-api-dev s390x 3.1.0-1 [257 kB] 95s Get:462 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-xml-rs-dev s390x 0.8.19-1build1 [49.5 kB] 95s Get:463 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-gl-generator-dev s390x 0.14.0-1 [22.1 kB] 95s Get:464 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-gl-dev s390x 0.14.0-2 [6306 B] 95s Get:465 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-pango-dev s390x 0.20.7-1 [41.8 kB] 95s Get:466 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-gdk4-dev s390x 0.9.5-1 [77.3 kB] 95s Get:467 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-hash32-dev s390x 0.3.1-2 [12.1 kB] 95s Get:468 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-ufmt-write-dev s390x 0.1.0-1 [3768 B] 95s Get:469 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-heapless-dev s390x 0.8.0-2 [69.4 kB] 95s Get:470 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-hex-dev s390x 0.4.3-2 [15.7 kB] 95s Get:471 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-unicode-bidi-dev s390x 0.3.17-1 [47.5 kB] 95s Get:472 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-unicode-normalization-dev s390x 0.1.22-1 [104 kB] 95s Get:473 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-idna-dev s390x 0.4.0-1 [222 kB] 95s Get:474 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-owning-ref-dev s390x 0.4.1-1 [13.7 kB] 95s Get:475 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-scopeguard-dev s390x 1.2.0-1 [13.3 kB] 95s Get:476 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-lock-api-dev s390x 0.4.12-1 [22.9 kB] 95s Get:477 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-md5-asm-dev s390x 0.5.0-2 [7516 B] 95s Get:478 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-md-5-dev s390x 0.10.6-1 [17.5 kB] 95s Get:479 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-memoffset-dev s390x 0.8.0-1 [10.9 kB] 95s Get:480 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-mio-dev s390x 1.0.2-3 [87.7 kB] 95s Get:481 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-nix-dev s390x 0.29.0-2 [266 kB] 95s Get:482 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-num-conv-dev s390x 0.1.0-1 [8990 B] 95s Get:483 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-num-threads-dev s390x 0.1.7-1 [9154 B] 95s Get:484 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-ordered-stream-dev s390x 0.2.0-2 [20.0 kB] 95s Get:485 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-parking-lot-dev s390x 0.12.3-1 [38.7 kB] 95s Get:486 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-serde-repr-dev s390x 0.1.12-1 [11.9 kB] 95s Get:487 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-sha1-asm-dev s390x 0.5.1-2 [8060 B] 95s Get:488 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-sha1-dev s390x 0.10.6-1 [16.0 kB] 95s Get:489 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-signal-hook-registry-dev s390x 1.4.0-1 [19.2 kB] 95s Get:490 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-socket2-dev s390x 0.5.8-1 [48.9 kB] 95s Get:491 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-tokio-macros-dev s390x 2.5.0-1 [14.3 kB] 95s Get:492 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-tokio-dev s390x 1.43.0-1 [585 kB] 95s Get:493 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-vsock-dev s390x 0.4.0-5 [14.1 kB] 95s Get:494 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-tokio-vsock-dev s390x 0.5.0-3 [15.7 kB] 95s Get:495 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-xdg-home-dev s390x 1.3.0-1 [6420 B] 95s Get:496 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-zvariant-utils-dev s390x 2.1.0-1 [9028 B] 95s Get:497 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-zbus-macros-dev s390x 4.4.0-1 [31.1 kB] 95s Get:498 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-serde-bytes-dev s390x 0.11.12-1 [13.4 kB] 95s Get:499 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-time-core-dev s390x 0.1.2-1 [9136 B] 96s Get:500 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-time-macros-dev s390x 0.2.19-1 [25.1 kB] 96s Get:501 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-time-dev s390x 0.3.37-1 [102 kB] 96s Get:502 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-url-dev s390x 2.5.2-1 [70.8 kB] 96s Get:503 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-slog-dev s390x 2.7.0-1 [44.0 kB] 96s Get:504 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-uuid-dev s390x 1.10.0-1 [44.2 kB] 96s Get:505 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-zvariant-derive-dev s390x 4.2.0-1 [13.3 kB] 96s Get:506 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-zvariant-dev s390x 4.2.0-2 [67.7 kB] 96s Get:507 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-zbus-names-dev s390x 3.0.0-3 [12.2 kB] 96s Get:508 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-zbus-dev s390x 4.4.0-3 [120 kB] 96s Get:509 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-search-provider-dev s390x 0.10.0-2 [18.9 kB] 97s Fetched 196 MB in 16s (12.2 MB/s) 97s Selecting previously unselected package libgdk-pixbuf2.0-common. 97s (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.) 97s Preparing to unpack .../000-libgdk-pixbuf2.0-common_2.42.12+dfsg-2_all.deb ... 97s Unpacking libgdk-pixbuf2.0-common (2.42.12+dfsg-2) ... 97s Selecting previously unselected package libjpeg-turbo8:s390x. 97s Preparing to unpack .../001-libjpeg-turbo8_2.1.5-3ubuntu2_s390x.deb ... 97s Unpacking libjpeg-turbo8:s390x (2.1.5-3ubuntu2) ... 97s Selecting previously unselected package libjpeg8:s390x. 97s Preparing to unpack .../002-libjpeg8_8c-2ubuntu11_s390x.deb ... 97s Unpacking libjpeg8:s390x (8c-2ubuntu11) ... 97s Selecting previously unselected package libdeflate0:s390x. 97s Preparing to unpack .../003-libdeflate0_1.23-1_s390x.deb ... 97s Unpacking libdeflate0:s390x (1.23-1) ... 97s Selecting previously unselected package libjbig0:s390x. 97s Preparing to unpack .../004-libjbig0_2.1-6.1ubuntu2_s390x.deb ... 97s Unpacking libjbig0:s390x (2.1-6.1ubuntu2) ... 97s Selecting previously unselected package libsharpyuv0:s390x. 97s Preparing to unpack .../005-libsharpyuv0_1.5.0-0.1_s390x.deb ... 97s Unpacking libsharpyuv0:s390x (1.5.0-0.1) ... 97s Selecting previously unselected package libwebp7:s390x. 97s Preparing to unpack .../006-libwebp7_1.5.0-0.1_s390x.deb ... 97s Unpacking libwebp7:s390x (1.5.0-0.1) ... 97s Selecting previously unselected package libtiff6:s390x. 97s Preparing to unpack .../007-libtiff6_4.5.1+git230720-4ubuntu4_s390x.deb ... 97s Unpacking libtiff6:s390x (4.5.1+git230720-4ubuntu4) ... 97s Selecting previously unselected package libgdk-pixbuf-2.0-0:s390x. 97s Preparing to unpack .../008-libgdk-pixbuf-2.0-0_2.42.12+dfsg-2_s390x.deb ... 97s Unpacking libgdk-pixbuf-2.0-0:s390x (2.42.12+dfsg-2) ... 97s Selecting previously unselected package gtk-update-icon-cache. 97s Preparing to unpack .../009-gtk-update-icon-cache_4.17.1+ds-2ubuntu1_s390x.deb ... 97s No diversion 'diversion of /usr/sbin/update-icon-caches to /usr/sbin/update-icon-caches.gtk2 by libgtk-3-bin', none removed. 97s No diversion 'diversion of /usr/share/man/man8/update-icon-caches.8.gz to /usr/share/man/man8/update-icon-caches.gtk2.8.gz by libgtk-3-bin', none removed. 97s Unpacking gtk-update-icon-cache (4.17.1+ds-2ubuntu1) ... 97s Selecting previously unselected package hicolor-icon-theme. 97s Preparing to unpack .../010-hicolor-icon-theme_0.18-2_all.deb ... 97s Unpacking hicolor-icon-theme (0.18-2) ... 97s Selecting previously unselected package humanity-icon-theme. 97s Preparing to unpack .../011-humanity-icon-theme_0.6.16_all.deb ... 97s Unpacking humanity-icon-theme (0.6.16) ... 98s Selecting previously unselected package ubuntu-mono. 98s Preparing to unpack .../012-ubuntu-mono_24.04-0ubuntu1_all.deb ... 98s Unpacking ubuntu-mono (24.04-0ubuntu1) ... 98s Selecting previously unselected package adwaita-icon-theme. 98s Preparing to unpack .../013-adwaita-icon-theme_48~beta-2_all.deb ... 98s Unpacking adwaita-icon-theme (48~beta-2) ... 98s Selecting previously unselected package m4. 98s Preparing to unpack .../014-m4_1.4.19-5_s390x.deb ... 98s Unpacking m4 (1.4.19-5) ... 98s Selecting previously unselected package autoconf. 98s Preparing to unpack .../015-autoconf_2.72-3_all.deb ... 98s Unpacking autoconf (2.72-3) ... 98s Selecting previously unselected package autotools-dev. 98s Preparing to unpack .../016-autotools-dev_20220109.1_all.deb ... 98s Unpacking autotools-dev (20220109.1) ... 98s Selecting previously unselected package automake. 98s Preparing to unpack .../017-automake_1%3a1.17-3_all.deb ... 98s Unpacking automake (1:1.17-3) ... 98s Selecting previously unselected package autopoint. 98s Preparing to unpack .../018-autopoint_0.23.1-1_all.deb ... 98s Unpacking autopoint (0.23.1-1) ... 98s Selecting previously unselected package libgit2-1.9:s390x. 98s Preparing to unpack .../019-libgit2-1.9_1.9.0~ds-0ubuntu1_s390x.deb ... 98s Unpacking libgit2-1.9:s390x (1.9.0~ds-0ubuntu1) ... 98s Selecting previously unselected package libstd-rust-1.84:s390x. 98s Preparing to unpack .../020-libstd-rust-1.84_1.84.0+dfsg0ubuntu1-0ubuntu1_s390x.deb ... 98s Unpacking libstd-rust-1.84:s390x (1.84.0+dfsg0ubuntu1-0ubuntu1) ... 98s Selecting previously unselected package libstd-rust-1.84-dev:s390x. 98s Preparing to unpack .../021-libstd-rust-1.84-dev_1.84.0+dfsg0ubuntu1-0ubuntu1_s390x.deb ... 98s Unpacking libstd-rust-1.84-dev:s390x (1.84.0+dfsg0ubuntu1-0ubuntu1) ... 99s Selecting previously unselected package libisl23:s390x. 99s Preparing to unpack .../022-libisl23_0.27-1_s390x.deb ... 99s Unpacking libisl23:s390x (0.27-1) ... 99s Selecting previously unselected package libmpc3:s390x. 99s Preparing to unpack .../023-libmpc3_1.3.1-1build2_s390x.deb ... 99s Unpacking libmpc3:s390x (1.3.1-1build2) ... 99s Selecting previously unselected package cpp-14-s390x-linux-gnu. 99s Preparing to unpack .../024-cpp-14-s390x-linux-gnu_14.2.0-16ubuntu1_s390x.deb ... 99s Unpacking cpp-14-s390x-linux-gnu (14.2.0-16ubuntu1) ... 99s Selecting previously unselected package cpp-14. 99s Preparing to unpack .../025-cpp-14_14.2.0-16ubuntu1_s390x.deb ... 99s Unpacking cpp-14 (14.2.0-16ubuntu1) ... 99s Selecting previously unselected package cpp-s390x-linux-gnu. 99s Preparing to unpack .../026-cpp-s390x-linux-gnu_4%3a14.2.0-1ubuntu1_s390x.deb ... 99s Unpacking cpp-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 99s Selecting previously unselected package cpp. 99s Preparing to unpack .../027-cpp_4%3a14.2.0-1ubuntu1_s390x.deb ... 99s Unpacking cpp (4:14.2.0-1ubuntu1) ... 99s Selecting previously unselected package libcc1-0:s390x. 99s Preparing to unpack .../028-libcc1-0_14.2.0-16ubuntu1_s390x.deb ... 99s Unpacking libcc1-0:s390x (14.2.0-16ubuntu1) ... 99s Selecting previously unselected package libgomp1:s390x. 99s Preparing to unpack .../029-libgomp1_14.2.0-16ubuntu1_s390x.deb ... 99s Unpacking libgomp1:s390x (14.2.0-16ubuntu1) ... 99s Selecting previously unselected package libitm1:s390x. 99s Preparing to unpack .../030-libitm1_14.2.0-16ubuntu1_s390x.deb ... 99s Unpacking libitm1:s390x (14.2.0-16ubuntu1) ... 99s Selecting previously unselected package libasan8:s390x. 99s Preparing to unpack .../031-libasan8_14.2.0-16ubuntu1_s390x.deb ... 99s Unpacking libasan8:s390x (14.2.0-16ubuntu1) ... 99s Selecting previously unselected package libubsan1:s390x. 99s Preparing to unpack .../032-libubsan1_14.2.0-16ubuntu1_s390x.deb ... 99s Unpacking libubsan1:s390x (14.2.0-16ubuntu1) ... 99s Selecting previously unselected package libgcc-14-dev:s390x. 99s Preparing to unpack .../033-libgcc-14-dev_14.2.0-16ubuntu1_s390x.deb ... 99s Unpacking libgcc-14-dev:s390x (14.2.0-16ubuntu1) ... 100s Selecting previously unselected package gcc-14-s390x-linux-gnu. 100s Preparing to unpack .../034-gcc-14-s390x-linux-gnu_14.2.0-16ubuntu1_s390x.deb ... 100s Unpacking gcc-14-s390x-linux-gnu (14.2.0-16ubuntu1) ... 100s Selecting previously unselected package gcc-14. 100s Preparing to unpack .../035-gcc-14_14.2.0-16ubuntu1_s390x.deb ... 100s Unpacking gcc-14 (14.2.0-16ubuntu1) ... 100s Selecting previously unselected package gcc-s390x-linux-gnu. 100s Preparing to unpack .../036-gcc-s390x-linux-gnu_4%3a14.2.0-1ubuntu1_s390x.deb ... 100s Unpacking gcc-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 100s Selecting previously unselected package gcc. 100s Preparing to unpack .../037-gcc_4%3a14.2.0-1ubuntu1_s390x.deb ... 100s Unpacking gcc (4:14.2.0-1ubuntu1) ... 100s Selecting previously unselected package rustc-1.84. 100s Preparing to unpack .../038-rustc-1.84_1.84.0+dfsg0ubuntu1-0ubuntu1_s390x.deb ... 100s Unpacking rustc-1.84 (1.84.0+dfsg0ubuntu1-0ubuntu1) ... 100s Selecting previously unselected package cargo-1.84. 100s Preparing to unpack .../039-cargo-1.84_1.84.0+dfsg0ubuntu1-0ubuntu1_s390x.deb ... 100s Unpacking cargo-1.84 (1.84.0+dfsg0ubuntu1-0ubuntu1) ... 100s Selecting previously unselected package libdconf1:s390x. 100s Preparing to unpack .../040-libdconf1_0.40.0-5_s390x.deb ... 100s Unpacking libdconf1:s390x (0.40.0-5) ... 100s Selecting previously unselected package dconf-service. 100s Preparing to unpack .../041-dconf-service_0.40.0-5_s390x.deb ... 100s Unpacking dconf-service (0.40.0-5) ... 100s Selecting previously unselected package dconf-gsettings-backend:s390x. 100s Preparing to unpack .../042-dconf-gsettings-backend_0.40.0-5_s390x.deb ... 100s Unpacking dconf-gsettings-backend:s390x (0.40.0-5) ... 100s Selecting previously unselected package libdebhelper-perl. 100s Preparing to unpack .../043-libdebhelper-perl_13.24.1ubuntu2_all.deb ... 100s Unpacking libdebhelper-perl (13.24.1ubuntu2) ... 100s Selecting previously unselected package libtool. 100s Preparing to unpack .../044-libtool_2.5.4-3build1_all.deb ... 100s Unpacking libtool (2.5.4-3build1) ... 100s Selecting previously unselected package dh-autoreconf. 100s Preparing to unpack .../045-dh-autoreconf_20_all.deb ... 100s Unpacking dh-autoreconf (20) ... 100s Selecting previously unselected package libarchive-zip-perl. 100s Preparing to unpack .../046-libarchive-zip-perl_1.68-1_all.deb ... 100s Unpacking libarchive-zip-perl (1.68-1) ... 100s Selecting previously unselected package libfile-stripnondeterminism-perl. 100s Preparing to unpack .../047-libfile-stripnondeterminism-perl_1.14.1-2_all.deb ... 100s Unpacking libfile-stripnondeterminism-perl (1.14.1-2) ... 100s Selecting previously unselected package dh-strip-nondeterminism. 100s Preparing to unpack .../048-dh-strip-nondeterminism_1.14.1-2_all.deb ... 100s Unpacking dh-strip-nondeterminism (1.14.1-2) ... 100s Selecting previously unselected package debugedit. 100s Preparing to unpack .../049-debugedit_1%3a5.1-2_s390x.deb ... 100s Unpacking debugedit (1:5.1-2) ... 100s Selecting previously unselected package dwz. 100s Preparing to unpack .../050-dwz_0.15-1build6_s390x.deb ... 100s Unpacking dwz (0.15-1build6) ... 100s Selecting previously unselected package gettext. 100s Preparing to unpack .../051-gettext_0.23.1-1_s390x.deb ... 100s Unpacking gettext (0.23.1-1) ... 100s Selecting previously unselected package intltool-debian. 100s Preparing to unpack .../052-intltool-debian_0.35.0+20060710.6_all.deb ... 100s Unpacking intltool-debian (0.35.0+20060710.6) ... 100s Selecting previously unselected package po-debconf. 100s Preparing to unpack .../053-po-debconf_1.0.21+nmu1_all.deb ... 100s Unpacking po-debconf (1.0.21+nmu1) ... 100s Selecting previously unselected package debhelper. 100s Preparing to unpack .../054-debhelper_13.24.1ubuntu2_all.deb ... 100s Unpacking debhelper (13.24.1ubuntu2) ... 100s Selecting previously unselected package rustc. 100s Preparing to unpack .../055-rustc_1.84.0ubuntu1_s390x.deb ... 100s Unpacking rustc (1.84.0ubuntu1) ... 100s Selecting previously unselected package cargo. 100s Preparing to unpack .../056-cargo_1.84.0ubuntu1_s390x.deb ... 100s Unpacking cargo (1.84.0ubuntu1) ... 100s Selecting previously unselected package dh-cargo-tools. 100s Preparing to unpack .../057-dh-cargo-tools_31ubuntu4_all.deb ... 100s Unpacking dh-cargo-tools (31ubuntu4) ... 100s Selecting previously unselected package dh-cargo. 100s Preparing to unpack .../058-dh-cargo_31ubuntu4_all.deb ... 100s Unpacking dh-cargo (31ubuntu4) ... 100s Selecting previously unselected package libfreetype6:s390x. 100s Preparing to unpack .../059-libfreetype6_2.13.3+dfsg-1_s390x.deb ... 100s Unpacking libfreetype6:s390x (2.13.3+dfsg-1) ... 100s Selecting previously unselected package fonts-dejavu-mono. 100s Preparing to unpack .../060-fonts-dejavu-mono_2.37-8_all.deb ... 100s Unpacking fonts-dejavu-mono (2.37-8) ... 100s Selecting previously unselected package fonts-dejavu-core. 100s Preparing to unpack .../061-fonts-dejavu-core_2.37-8_all.deb ... 100s Unpacking fonts-dejavu-core (2.37-8) ... 100s Selecting previously unselected package fontconfig-config. 100s Preparing to unpack .../062-fontconfig-config_2.15.0-1.1ubuntu2_s390x.deb ... 100s Unpacking fontconfig-config (2.15.0-1.1ubuntu2) ... 100s Selecting previously unselected package libfontconfig1:s390x. 100s Preparing to unpack .../063-libfontconfig1_2.15.0-1.1ubuntu2_s390x.deb ... 100s Unpacking libfontconfig1:s390x (2.15.0-1.1ubuntu2) ... 100s Selecting previously unselected package fontconfig. 101s Preparing to unpack .../064-fontconfig_2.15.0-1.1ubuntu2_s390x.deb ... 101s Unpacking fontconfig (2.15.0-1.1ubuntu2) ... 101s Selecting previously unselected package libpixman-1-0:s390x. 101s Preparing to unpack .../065-libpixman-1-0_0.44.0-3_s390x.deb ... 101s Unpacking libpixman-1-0:s390x (0.44.0-3) ... 101s Selecting previously unselected package libxcb-render0:s390x. 101s Preparing to unpack .../066-libxcb-render0_1.17.0-2_s390x.deb ... 101s Unpacking libxcb-render0:s390x (1.17.0-2) ... 101s Selecting previously unselected package libxcb-shm0:s390x. 101s Preparing to unpack .../067-libxcb-shm0_1.17.0-2_s390x.deb ... 101s Unpacking libxcb-shm0:s390x (1.17.0-2) ... 101s Selecting previously unselected package libxrender1:s390x. 101s Preparing to unpack .../068-libxrender1_1%3a0.9.10-1.1build1_s390x.deb ... 101s Unpacking libxrender1:s390x (1:0.9.10-1.1build1) ... 101s Selecting previously unselected package libcairo2:s390x. 101s Preparing to unpack .../069-libcairo2_1.18.2-2_s390x.deb ... 101s Unpacking libcairo2:s390x (1.18.2-2) ... 101s Selecting previously unselected package libcairo-gobject2:s390x. 101s Preparing to unpack .../070-libcairo-gobject2_1.18.2-2_s390x.deb ... 101s Unpacking libcairo-gobject2:s390x (1.18.2-2) ... 101s Selecting previously unselected package gir1.2-freedesktop:s390x. 101s Preparing to unpack .../071-gir1.2-freedesktop_1.82.0-4_s390x.deb ... 101s Unpacking gir1.2-freedesktop:s390x (1.82.0-4) ... 101s Selecting previously unselected package gir1.2-glib-2.0-dev:s390x. 101s Preparing to unpack .../072-gir1.2-glib-2.0-dev_2.83.3-2_s390x.deb ... 101s Unpacking gir1.2-glib-2.0-dev:s390x (2.83.3-2) ... 101s Selecting previously unselected package gir1.2-freedesktop-dev:s390x. 101s Preparing to unpack .../073-gir1.2-freedesktop-dev_1.82.0-4_s390x.deb ... 101s Unpacking gir1.2-freedesktop-dev:s390x (1.82.0-4) ... 101s Selecting previously unselected package gir1.2-gdkpixbuf-2.0:s390x. 101s Preparing to unpack .../074-gir1.2-gdkpixbuf-2.0_2.42.12+dfsg-2_s390x.deb ... 101s Unpacking gir1.2-gdkpixbuf-2.0:s390x (2.42.12+dfsg-2) ... 101s Selecting previously unselected package libgraphene-1.0-0:s390x. 101s Preparing to unpack .../075-libgraphene-1.0-0_1.10.8-5_s390x.deb ... 101s Unpacking libgraphene-1.0-0:s390x (1.10.8-5) ... 101s Selecting previously unselected package gir1.2-graphene-1.0:s390x. 101s Preparing to unpack .../076-gir1.2-graphene-1.0_1.10.8-5_s390x.deb ... 101s Unpacking gir1.2-graphene-1.0:s390x (1.10.8-5) ... 101s Selecting previously unselected package libgraphite2-3:s390x. 101s Preparing to unpack .../077-libgraphite2-3_1.3.14-2ubuntu1_s390x.deb ... 101s Unpacking libgraphite2-3:s390x (1.3.14-2ubuntu1) ... 101s Selecting previously unselected package libharfbuzz0b:s390x. 101s Preparing to unpack .../078-libharfbuzz0b_10.2.0-1_s390x.deb ... 101s Unpacking libharfbuzz0b:s390x (10.2.0-1) ... 101s Selecting previously unselected package libharfbuzz-gobject0:s390x. 101s Preparing to unpack .../079-libharfbuzz-gobject0_10.2.0-1_s390x.deb ... 101s Unpacking libharfbuzz-gobject0:s390x (10.2.0-1) ... 101s Selecting previously unselected package gir1.2-harfbuzz-0.0:s390x. 101s Preparing to unpack .../080-gir1.2-harfbuzz-0.0_10.2.0-1_s390x.deb ... 101s Unpacking gir1.2-harfbuzz-0.0:s390x (10.2.0-1) ... 101s Selecting previously unselected package libthai-data. 101s Preparing to unpack .../081-libthai-data_0.1.29-2build1_all.deb ... 101s Unpacking libthai-data (0.1.29-2build1) ... 101s Selecting previously unselected package libdatrie1:s390x. 101s Preparing to unpack .../082-libdatrie1_0.2.13-3build1_s390x.deb ... 101s Unpacking libdatrie1:s390x (0.2.13-3build1) ... 101s Selecting previously unselected package libthai0:s390x. 101s Preparing to unpack .../083-libthai0_0.1.29-2build1_s390x.deb ... 101s Unpacking libthai0:s390x (0.1.29-2build1) ... 101s Selecting previously unselected package libpango-1.0-0:s390x. 101s Preparing to unpack .../084-libpango-1.0-0_1.56.1-1_s390x.deb ... 101s Unpacking libpango-1.0-0:s390x (1.56.1-1) ... 101s Selecting previously unselected package libpangoft2-1.0-0:s390x. 101s Preparing to unpack .../085-libpangoft2-1.0-0_1.56.1-1_s390x.deb ... 101s Unpacking libpangoft2-1.0-0:s390x (1.56.1-1) ... 101s Selecting previously unselected package libpangocairo-1.0-0:s390x. 101s Preparing to unpack .../086-libpangocairo-1.0-0_1.56.1-1_s390x.deb ... 101s Unpacking libpangocairo-1.0-0:s390x (1.56.1-1) ... 101s Selecting previously unselected package libxft2:s390x. 101s Preparing to unpack .../087-libxft2_2.3.6-1build1_s390x.deb ... 101s Unpacking libxft2:s390x (2.3.6-1build1) ... 101s Selecting previously unselected package libpangoxft-1.0-0:s390x. 101s Preparing to unpack .../088-libpangoxft-1.0-0_1.56.1-1_s390x.deb ... 101s Unpacking libpangoxft-1.0-0:s390x (1.56.1-1) ... 101s Selecting previously unselected package gir1.2-pango-1.0:s390x. 101s Preparing to unpack .../089-gir1.2-pango-1.0_1.56.1-1_s390x.deb ... 101s Unpacking gir1.2-pango-1.0:s390x (1.56.1-1) ... 101s Selecting previously unselected package libcairo-script-interpreter2:s390x. 101s Preparing to unpack .../090-libcairo-script-interpreter2_1.18.2-2_s390x.deb ... 101s Unpacking libcairo-script-interpreter2:s390x (1.18.2-2) ... 101s Selecting previously unselected package libcpdb2t64:s390x. 101s Preparing to unpack .../091-libcpdb2t64_2.0~b5-1.2build1_s390x.deb ... 101s Unpacking libcpdb2t64:s390x (2.0~b5-1.2build1) ... 101s Selecting previously unselected package libcpdb-frontend2t64:s390x. 101s Preparing to unpack .../092-libcpdb-frontend2t64_2.0~b5-1.2build1_s390x.deb ... 101s Unpacking libcpdb-frontend2t64:s390x (2.0~b5-1.2build1) ... 101s Selecting previously unselected package libepoxy0:s390x. 101s Preparing to unpack .../093-libepoxy0_1.5.10-2_s390x.deb ... 101s Unpacking libepoxy0:s390x (1.5.10-2) ... 101s Selecting previously unselected package libharfbuzz-subset0:s390x. 101s Preparing to unpack .../094-libharfbuzz-subset0_10.2.0-1_s390x.deb ... 101s Unpacking libharfbuzz-subset0:s390x (10.2.0-1) ... 101s Selecting previously unselected package libvulkan1:s390x. 101s Preparing to unpack .../095-libvulkan1_1.4.304.0-1_s390x.deb ... 101s Unpacking libvulkan1:s390x (1.4.304.0-1) ... 101s Selecting previously unselected package libwayland-client0:s390x. 101s Preparing to unpack .../096-libwayland-client0_1.23.1-1_s390x.deb ... 101s Unpacking libwayland-client0:s390x (1.23.1-1) ... 101s Selecting previously unselected package libwayland-egl1:s390x. 101s Preparing to unpack .../097-libwayland-egl1_1.23.1-1_s390x.deb ... 101s Unpacking libwayland-egl1:s390x (1.23.1-1) ... 101s Selecting previously unselected package libxfixes3:s390x. 101s Preparing to unpack .../098-libxfixes3_1%3a6.0.0-2build1_s390x.deb ... 101s Unpacking libxfixes3:s390x (1:6.0.0-2build1) ... 101s Selecting previously unselected package libxcursor1:s390x. 101s Preparing to unpack .../099-libxcursor1_1%3a1.2.3-1_s390x.deb ... 101s Unpacking libxcursor1:s390x (1:1.2.3-1) ... 101s Selecting previously unselected package libxdamage1:s390x. 101s Preparing to unpack .../100-libxdamage1_1%3a1.1.6-1build1_s390x.deb ... 101s Unpacking libxdamage1:s390x (1:1.1.6-1build1) ... 101s Selecting previously unselected package libxi6:s390x. 101s Preparing to unpack .../101-libxi6_2%3a1.8.2-1_s390x.deb ... 101s Unpacking libxi6:s390x (2:1.8.2-1) ... 101s Selecting previously unselected package libxinerama1:s390x. 101s Preparing to unpack .../102-libxinerama1_2%3a1.1.4-3build1_s390x.deb ... 101s Unpacking libxinerama1:s390x (2:1.1.4-3build1) ... 101s Selecting previously unselected package libxrandr2:s390x. 101s Preparing to unpack .../103-libxrandr2_2%3a1.5.4-1_s390x.deb ... 101s Unpacking libxrandr2:s390x (2:1.5.4-1) ... 101s Selecting previously unselected package libglvnd0:s390x. 101s Preparing to unpack .../104-libglvnd0_1.7.0-1build1_s390x.deb ... 101s Unpacking libglvnd0:s390x (1.7.0-1build1) ... 101s Selecting previously unselected package libgles2:s390x. 101s Preparing to unpack .../105-libgles2_1.7.0-1build1_s390x.deb ... 101s Unpacking libgles2:s390x (1.7.0-1build1) ... 101s Selecting previously unselected package libgtk-4-common. 101s Preparing to unpack .../106-libgtk-4-common_4.17.1+ds-2ubuntu1_all.deb ... 101s Unpacking libgtk-4-common (4.17.1+ds-2ubuntu1) ... 101s Selecting previously unselected package libgtk-4-1:s390x. 101s Preparing to unpack .../107-libgtk-4-1_4.17.1+ds-2ubuntu1_s390x.deb ... 101s Unpacking libgtk-4-1:s390x (4.17.1+ds-2ubuntu1) ... 101s Selecting previously unselected package gir1.2-gtk-4.0:s390x. 101s Preparing to unpack .../108-gir1.2-gtk-4.0_4.17.1+ds-2ubuntu1_s390x.deb ... 101s Unpacking gir1.2-gtk-4.0:s390x (4.17.1+ds-2ubuntu1) ... 101s Selecting previously unselected package native-architecture. 101s Preparing to unpack .../109-native-architecture_0.2.5_all.deb ... 101s Unpacking native-architecture (0.2.5) ... 101s Selecting previously unselected package libgirepository-2.0-0:s390x. 101s Preparing to unpack .../110-libgirepository-2.0-0_2.83.3-2_s390x.deb ... 101s Unpacking libgirepository-2.0-0:s390x (2.83.3-2) ... 101s Selecting previously unselected package girepository-tools:s390x. 101s Preparing to unpack .../111-girepository-tools_2.83.3-2_s390x.deb ... 101s Unpacking girepository-tools:s390x (2.83.3-2) ... 101s Selecting previously unselected package icu-devtools. 101s Preparing to unpack .../112-icu-devtools_76.1-1ubuntu2_s390x.deb ... 101s Unpacking icu-devtools (76.1-1ubuntu2) ... 101s Selecting previously unselected package libbrotli-dev:s390x. 101s Preparing to unpack .../113-libbrotli-dev_1.1.0-2build3_s390x.deb ... 101s Unpacking libbrotli-dev:s390x (1.1.0-2build3) ... 101s Selecting previously unselected package libbz2-dev:s390x. 101s Preparing to unpack .../114-libbz2-dev_1.0.8-6_s390x.deb ... 101s Unpacking libbz2-dev:s390x (1.0.8-6) ... 101s Selecting previously unselected package libexpat1-dev:s390x. 101s Preparing to unpack .../115-libexpat1-dev_2.6.4-1_s390x.deb ... 101s Unpacking libexpat1-dev:s390x (2.6.4-1) ... 101s Selecting previously unselected package zlib1g-dev:s390x. 101s Preparing to unpack .../116-zlib1g-dev_1%3a1.3.dfsg+really1.3.1-1ubuntu1_s390x.deb ... 101s Unpacking zlib1g-dev:s390x (1:1.3.dfsg+really1.3.1-1ubuntu1) ... 101s Selecting previously unselected package libpng-dev:s390x. 101s Preparing to unpack .../117-libpng-dev_1.6.46-4_s390x.deb ... 101s Unpacking libpng-dev:s390x (1.6.46-4) ... 101s Selecting previously unselected package libfreetype-dev:s390x. 101s Preparing to unpack .../118-libfreetype-dev_2.13.3+dfsg-1_s390x.deb ... 101s Unpacking libfreetype-dev:s390x (2.13.3+dfsg-1) ... 101s Selecting previously unselected package uuid-dev:s390x. 101s Preparing to unpack .../119-uuid-dev_2.40.2-14ubuntu1_s390x.deb ... 101s Unpacking uuid-dev:s390x (2.40.2-14ubuntu1) ... 101s Selecting previously unselected package libpkgconf3:s390x. 101s Preparing to unpack .../120-libpkgconf3_1.8.1-4_s390x.deb ... 101s Unpacking libpkgconf3:s390x (1.8.1-4) ... 101s Selecting previously unselected package pkgconf-bin. 101s Preparing to unpack .../121-pkgconf-bin_1.8.1-4_s390x.deb ... 101s Unpacking pkgconf-bin (1.8.1-4) ... 101s Selecting previously unselected package pkgconf:s390x. 101s Preparing to unpack .../122-pkgconf_1.8.1-4_s390x.deb ... 101s Unpacking pkgconf:s390x (1.8.1-4) ... 101s Selecting previously unselected package libfontconfig-dev:s390x. 101s Preparing to unpack .../123-libfontconfig-dev_2.15.0-1.1ubuntu2_s390x.deb ... 101s Unpacking libfontconfig-dev:s390x (2.15.0-1.1ubuntu2) ... 101s Selecting previously unselected package libffi-dev:s390x. 101s Preparing to unpack .../124-libffi-dev_3.4.6-1build1_s390x.deb ... 101s Unpacking libffi-dev:s390x (3.4.6-1build1) ... 101s Selecting previously unselected package libblkid-dev:s390x. 101s Preparing to unpack .../125-libblkid-dev_2.40.2-14ubuntu1_s390x.deb ... 101s Unpacking libblkid-dev:s390x (2.40.2-14ubuntu1) ... 101s Selecting previously unselected package libsepol-dev:s390x. 101s Preparing to unpack .../126-libsepol-dev_3.7-1_s390x.deb ... 101s Unpacking libsepol-dev:s390x (3.7-1) ... 101s Selecting previously unselected package libpcre2-16-0:s390x. 101s Preparing to unpack .../127-libpcre2-16-0_10.42-4ubuntu3_s390x.deb ... 101s Unpacking libpcre2-16-0:s390x (10.42-4ubuntu3) ... 101s Selecting previously unselected package libpcre2-32-0:s390x. 101s Preparing to unpack .../128-libpcre2-32-0_10.42-4ubuntu3_s390x.deb ... 101s Unpacking libpcre2-32-0:s390x (10.42-4ubuntu3) ... 101s Selecting previously unselected package libpcre2-posix3:s390x. 101s Preparing to unpack .../129-libpcre2-posix3_10.42-4ubuntu3_s390x.deb ... 101s Unpacking libpcre2-posix3:s390x (10.42-4ubuntu3) ... 101s Selecting previously unselected package libpcre2-dev:s390x. 101s Preparing to unpack .../130-libpcre2-dev_10.42-4ubuntu3_s390x.deb ... 101s Unpacking libpcre2-dev:s390x (10.42-4ubuntu3) ... 101s Selecting previously unselected package libselinux1-dev:s390x. 101s Preparing to unpack .../131-libselinux1-dev_3.7-3ubuntu2_s390x.deb ... 101s Unpacking libselinux1-dev:s390x (3.7-3ubuntu2) ... 102s Selecting previously unselected package libmount-dev:s390x. 102s Preparing to unpack .../132-libmount-dev_2.40.2-14ubuntu1_s390x.deb ... 102s Unpacking libmount-dev:s390x (2.40.2-14ubuntu1) ... 102s Selecting previously unselected package libsysprof-capture-4-dev:s390x. 102s Preparing to unpack .../133-libsysprof-capture-4-dev_48~beta-2_s390x.deb ... 102s Unpacking libsysprof-capture-4-dev:s390x (48~beta-2) ... 102s Selecting previously unselected package libgio-2.0-dev:s390x. 102s Preparing to unpack .../134-libgio-2.0-dev_2.83.3-2_s390x.deb ... 102s Unpacking libgio-2.0-dev:s390x (2.83.3-2) ... 102s Selecting previously unselected package libglib2.0-bin. 102s Preparing to unpack .../135-libglib2.0-bin_2.83.3-2_s390x.deb ... 102s Unpacking libglib2.0-bin (2.83.3-2) ... 102s Selecting previously unselected package python3-packaging. 102s Preparing to unpack .../136-python3-packaging_24.2-1_all.deb ... 102s Unpacking python3-packaging (24.2-1) ... 102s Selecting previously unselected package libgio-2.0-dev-bin. 102s Preparing to unpack .../137-libgio-2.0-dev-bin_2.83.3-2_s390x.deb ... 102s Unpacking libgio-2.0-dev-bin (2.83.3-2) ... 102s Selecting previously unselected package libglib2.0-dev-bin. 102s Preparing to unpack .../138-libglib2.0-dev-bin_2.83.3-2_s390x.deb ... 102s Unpacking libglib2.0-dev-bin (2.83.3-2) ... 102s Selecting previously unselected package libglib2.0-dev:s390x. 102s Preparing to unpack .../139-libglib2.0-dev_2.83.3-2_s390x.deb ... 102s Unpacking libglib2.0-dev:s390x (2.83.3-2) ... 102s Selecting previously unselected package libpixman-1-dev:s390x. 102s Preparing to unpack .../140-libpixman-1-dev_0.44.0-3_s390x.deb ... 102s Unpacking libpixman-1-dev:s390x (0.44.0-3) ... 102s Selecting previously unselected package x11-common. 102s Preparing to unpack .../141-x11-common_1%3a7.7+23ubuntu3_all.deb ... 102s Unpacking x11-common (1:7.7+23ubuntu3) ... 102s Selecting previously unselected package libice6:s390x. 102s Preparing to unpack .../142-libice6_2%3a1.1.1-1_s390x.deb ... 102s Unpacking libice6:s390x (2:1.1.1-1) ... 102s Selecting previously unselected package libsm6:s390x. 102s Preparing to unpack .../143-libsm6_2%3a1.2.4-1_s390x.deb ... 102s Unpacking libsm6:s390x (2:1.2.4-1) ... 102s Selecting previously unselected package xorg-sgml-doctools. 102s Preparing to unpack .../144-xorg-sgml-doctools_1%3a1.11-1.1_all.deb ... 102s Unpacking xorg-sgml-doctools (1:1.11-1.1) ... 102s Selecting previously unselected package x11proto-dev. 102s Preparing to unpack .../145-x11proto-dev_2024.1-1_all.deb ... 102s Unpacking x11proto-dev (2024.1-1) ... 102s Selecting previously unselected package libice-dev:s390x. 102s Preparing to unpack .../146-libice-dev_2%3a1.1.1-1_s390x.deb ... 102s Unpacking libice-dev:s390x (2:1.1.1-1) ... 102s Selecting previously unselected package libsm-dev:s390x. 102s Preparing to unpack .../147-libsm-dev_2%3a1.2.4-1_s390x.deb ... 102s Unpacking libsm-dev:s390x (2:1.2.4-1) ... 102s Selecting previously unselected package libxau-dev:s390x. 102s Preparing to unpack .../148-libxau-dev_1%3a1.0.11-1_s390x.deb ... 102s Unpacking libxau-dev:s390x (1:1.0.11-1) ... 102s Selecting previously unselected package libxdmcp-dev:s390x. 102s Preparing to unpack .../149-libxdmcp-dev_1%3a1.1.3-0ubuntu6_s390x.deb ... 102s Unpacking libxdmcp-dev:s390x (1:1.1.3-0ubuntu6) ... 102s Selecting previously unselected package xtrans-dev. 102s Preparing to unpack .../150-xtrans-dev_1.4.0-1_all.deb ... 102s Unpacking xtrans-dev (1.4.0-1) ... 102s Selecting previously unselected package libxcb1-dev:s390x. 102s Preparing to unpack .../151-libxcb1-dev_1.17.0-2_s390x.deb ... 102s Unpacking libxcb1-dev:s390x (1.17.0-2) ... 102s Selecting previously unselected package libx11-dev:s390x. 102s Preparing to unpack .../152-libx11-dev_2%3a1.8.10-2_s390x.deb ... 102s Unpacking libx11-dev:s390x (2:1.8.10-2) ... 102s Selecting previously unselected package libxcb-render0-dev:s390x. 102s Preparing to unpack .../153-libxcb-render0-dev_1.17.0-2_s390x.deb ... 102s Unpacking libxcb-render0-dev:s390x (1.17.0-2) ... 102s Selecting previously unselected package libxcb-shm0-dev:s390x. 102s Preparing to unpack .../154-libxcb-shm0-dev_1.17.0-2_s390x.deb ... 102s Unpacking libxcb-shm0-dev:s390x (1.17.0-2) ... 102s Selecting previously unselected package libxext-dev:s390x. 102s Preparing to unpack .../155-libxext-dev_2%3a1.3.4-1build2_s390x.deb ... 102s Unpacking libxext-dev:s390x (2:1.3.4-1build2) ... 102s Selecting previously unselected package libxrender-dev:s390x. 102s Preparing to unpack .../156-libxrender-dev_1%3a0.9.10-1.1build1_s390x.deb ... 102s Unpacking libxrender-dev:s390x (1:0.9.10-1.1build1) ... 102s Selecting previously unselected package libcairo2-dev:s390x. 102s Preparing to unpack .../157-libcairo2-dev_1.18.2-2_s390x.deb ... 102s Unpacking libcairo2-dev:s390x (1.18.2-2) ... 102s Selecting previously unselected package libdatrie-dev:s390x. 102s Preparing to unpack .../158-libdatrie-dev_0.2.13-3build1_s390x.deb ... 102s Unpacking libdatrie-dev:s390x (0.2.13-3build1) ... 102s Selecting previously unselected package libdeflate-dev:s390x. 102s Preparing to unpack .../159-libdeflate-dev_1.23-1_s390x.deb ... 102s Unpacking libdeflate-dev:s390x (1.23-1) ... 102s Selecting previously unselected package libdrm-radeon1:s390x. 102s Preparing to unpack .../160-libdrm-radeon1_2.4.123-1_s390x.deb ... 102s Unpacking libdrm-radeon1:s390x (2.4.123-1) ... 102s Selecting previously unselected package libwayland-server0:s390x. 102s Preparing to unpack .../161-libwayland-server0_1.23.1-1_s390x.deb ... 102s Unpacking libwayland-server0:s390x (1.23.1-1) ... 102s Selecting previously unselected package libglapi-mesa:s390x. 102s Preparing to unpack .../162-libglapi-mesa_24.3.4-3ubuntu1_s390x.deb ... 102s Unpacking libglapi-mesa:s390x (24.3.4-3ubuntu1) ... 102s Selecting previously unselected package libx11-xcb1:s390x. 102s Preparing to unpack .../163-libx11-xcb1_2%3a1.8.10-2_s390x.deb ... 102s Unpacking libx11-xcb1:s390x (2:1.8.10-2) ... 102s Selecting previously unselected package libxcb-dri3-0:s390x. 102s Preparing to unpack .../164-libxcb-dri3-0_1.17.0-2_s390x.deb ... 102s Unpacking libxcb-dri3-0:s390x (1.17.0-2) ... 102s Selecting previously unselected package libxcb-present0:s390x. 102s Preparing to unpack .../165-libxcb-present0_1.17.0-2_s390x.deb ... 102s Unpacking libxcb-present0:s390x (1.17.0-2) ... 102s Selecting previously unselected package libxcb-randr0:s390x. 102s Preparing to unpack .../166-libxcb-randr0_1.17.0-2_s390x.deb ... 102s Unpacking libxcb-randr0:s390x (1.17.0-2) ... 102s Selecting previously unselected package libxcb-sync1:s390x. 102s Preparing to unpack .../167-libxcb-sync1_1.17.0-2_s390x.deb ... 102s Unpacking libxcb-sync1:s390x (1.17.0-2) ... 102s Selecting previously unselected package libxcb-xfixes0:s390x. 102s Preparing to unpack .../168-libxcb-xfixes0_1.17.0-2_s390x.deb ... 102s Unpacking libxcb-xfixes0:s390x (1.17.0-2) ... 102s Selecting previously unselected package libxshmfence1:s390x. 102s Preparing to unpack .../169-libxshmfence1_1.3-1build5_s390x.deb ... 102s Unpacking libxshmfence1:s390x (1.3-1build5) ... 102s Selecting previously unselected package mesa-libgallium:s390x. 102s Preparing to unpack .../170-mesa-libgallium_24.3.4-3ubuntu1_s390x.deb ... 102s Unpacking mesa-libgallium:s390x (24.3.4-3ubuntu1) ... 102s Selecting previously unselected package libgbm1:s390x. 102s Preparing to unpack .../171-libgbm1_24.3.4-3ubuntu1_s390x.deb ... 102s Unpacking libgbm1:s390x (24.3.4-3ubuntu1) ... 102s Selecting previously unselected package libegl-mesa0:s390x. 102s Preparing to unpack .../172-libegl-mesa0_24.3.4-3ubuntu1_s390x.deb ... 102s Unpacking libegl-mesa0:s390x (24.3.4-3ubuntu1) ... 102s Selecting previously unselected package libegl1:s390x. 102s Preparing to unpack .../173-libegl1_1.7.0-1build1_s390x.deb ... 102s Unpacking libegl1:s390x (1.7.0-1build1) ... 102s Selecting previously unselected package libxcb-glx0:s390x. 102s Preparing to unpack .../174-libxcb-glx0_1.17.0-2_s390x.deb ... 102s Unpacking libxcb-glx0:s390x (1.17.0-2) ... 102s Selecting previously unselected package libxxf86vm1:s390x. 102s Preparing to unpack .../175-libxxf86vm1_1%3a1.1.4-1build4_s390x.deb ... 102s Unpacking libxxf86vm1:s390x (1:1.1.4-1build4) ... 102s Selecting previously unselected package libgl1-mesa-dri:s390x. 102s Preparing to unpack .../176-libgl1-mesa-dri_24.3.4-3ubuntu1_s390x.deb ... 102s Unpacking libgl1-mesa-dri:s390x (24.3.4-3ubuntu1) ... 102s Selecting previously unselected package libglx-mesa0:s390x. 102s Preparing to unpack .../177-libglx-mesa0_24.3.4-3ubuntu1_s390x.deb ... 102s Unpacking libglx-mesa0:s390x (24.3.4-3ubuntu1) ... 102s Selecting previously unselected package libglx0:s390x. 102s Preparing to unpack .../178-libglx0_1.7.0-1build1_s390x.deb ... 102s Unpacking libglx0:s390x (1.7.0-1build1) ... 102s Selecting previously unselected package libgl1:s390x. 102s Preparing to unpack .../179-libgl1_1.7.0-1build1_s390x.deb ... 102s Unpacking libgl1:s390x (1.7.0-1build1) ... 102s Selecting previously unselected package libglx-dev:s390x. 102s Preparing to unpack .../180-libglx-dev_1.7.0-1build1_s390x.deb ... 102s Unpacking libglx-dev:s390x (1.7.0-1build1) ... 102s Selecting previously unselected package libgl-dev:s390x. 102s Preparing to unpack .../181-libgl-dev_1.7.0-1build1_s390x.deb ... 102s Unpacking libgl-dev:s390x (1.7.0-1build1) ... 102s Selecting previously unselected package libegl-dev:s390x. 102s Preparing to unpack .../182-libegl-dev_1.7.0-1build1_s390x.deb ... 102s Unpacking libegl-dev:s390x (1.7.0-1build1) ... 102s Selecting previously unselected package libglvnd-core-dev:s390x. 102s Preparing to unpack .../183-libglvnd-core-dev_1.7.0-1build1_s390x.deb ... 102s Unpacking libglvnd-core-dev:s390x (1.7.0-1build1) ... 102s Selecting previously unselected package libgles1:s390x. 102s Preparing to unpack .../184-libgles1_1.7.0-1build1_s390x.deb ... 102s Unpacking libgles1:s390x (1.7.0-1build1) ... 102s Selecting previously unselected package libgles-dev:s390x. 102s Preparing to unpack .../185-libgles-dev_1.7.0-1build1_s390x.deb ... 102s Unpacking libgles-dev:s390x (1.7.0-1build1) ... 102s Selecting previously unselected package libopengl0:s390x. 102s Preparing to unpack .../186-libopengl0_1.7.0-1build1_s390x.deb ... 102s Unpacking libopengl0:s390x (1.7.0-1build1) ... 102s Selecting previously unselected package libopengl-dev:s390x. 102s Preparing to unpack .../187-libopengl-dev_1.7.0-1build1_s390x.deb ... 102s Unpacking libopengl-dev:s390x (1.7.0-1build1) ... 102s Selecting previously unselected package libglvnd-dev:s390x. 102s Preparing to unpack .../188-libglvnd-dev_1.7.0-1build1_s390x.deb ... 102s Unpacking libglvnd-dev:s390x (1.7.0-1build1) ... 102s Selecting previously unselected package libegl1-mesa-dev:s390x. 102s Preparing to unpack .../189-libegl1-mesa-dev_24.3.4-3ubuntu1_s390x.deb ... 102s Unpacking libegl1-mesa-dev:s390x (24.3.4-3ubuntu1) ... 102s Selecting previously unselected package libepoxy-dev:s390x. 102s Preparing to unpack .../190-libepoxy-dev_1.5.10-2_s390x.deb ... 102s Unpacking libepoxy-dev:s390x (1.5.10-2) ... 102s Selecting previously unselected package libfontconfig1-dev:s390x. 102s Preparing to unpack .../191-libfontconfig1-dev_2.15.0-1.1ubuntu2_s390x.deb ... 102s Unpacking libfontconfig1-dev:s390x (2.15.0-1.1ubuntu2) ... 102s Selecting previously unselected package libfribidi-dev:s390x. 102s Preparing to unpack .../192-libfribidi-dev_1.0.16-1_s390x.deb ... 102s Unpacking libfribidi-dev:s390x (1.0.16-1) ... 102s Selecting previously unselected package libgdk-pixbuf2.0-bin. 102s Preparing to unpack .../193-libgdk-pixbuf2.0-bin_2.42.12+dfsg-2_s390x.deb ... 102s Unpacking libgdk-pixbuf2.0-bin (2.42.12+dfsg-2) ... 102s Selecting previously unselected package libjpeg-turbo8-dev:s390x. 102s Preparing to unpack .../194-libjpeg-turbo8-dev_2.1.5-3ubuntu2_s390x.deb ... 102s Unpacking libjpeg-turbo8-dev:s390x (2.1.5-3ubuntu2) ... 102s Selecting previously unselected package libjpeg8-dev:s390x. 102s Preparing to unpack .../195-libjpeg8-dev_8c-2ubuntu11_s390x.deb ... 102s Unpacking libjpeg8-dev:s390x (8c-2ubuntu11) ... 103s Selecting previously unselected package libjpeg-dev:s390x. 103s Preparing to unpack .../196-libjpeg-dev_8c-2ubuntu11_s390x.deb ... 103s Unpacking libjpeg-dev:s390x (8c-2ubuntu11) ... 103s Selecting previously unselected package libjbig-dev:s390x. 103s Preparing to unpack .../197-libjbig-dev_2.1-6.1ubuntu2_s390x.deb ... 103s Unpacking libjbig-dev:s390x (2.1-6.1ubuntu2) ... 103s Selecting previously unselected package liblzma-dev:s390x. 103s Preparing to unpack .../198-liblzma-dev_5.6.3-1_s390x.deb ... 103s Unpacking liblzma-dev:s390x (5.6.3-1) ... 103s Selecting previously unselected package libzstd-dev:s390x. 103s Preparing to unpack .../199-libzstd-dev_1.5.6+dfsg-2_s390x.deb ... 103s Unpacking libzstd-dev:s390x (1.5.6+dfsg-2) ... 103s Selecting previously unselected package libwebpdemux2:s390x. 103s Preparing to unpack .../200-libwebpdemux2_1.5.0-0.1_s390x.deb ... 103s Unpacking libwebpdemux2:s390x (1.5.0-0.1) ... 103s Selecting previously unselected package libwebpmux3:s390x. 103s Preparing to unpack .../201-libwebpmux3_1.5.0-0.1_s390x.deb ... 103s Unpacking libwebpmux3:s390x (1.5.0-0.1) ... 103s Selecting previously unselected package libwebpdecoder3:s390x. 103s Preparing to unpack .../202-libwebpdecoder3_1.5.0-0.1_s390x.deb ... 103s Unpacking libwebpdecoder3:s390x (1.5.0-0.1) ... 103s Selecting previously unselected package libsharpyuv-dev:s390x. 103s Preparing to unpack .../203-libsharpyuv-dev_1.5.0-0.1_s390x.deb ... 103s Unpacking libsharpyuv-dev:s390x (1.5.0-0.1) ... 103s Selecting previously unselected package libwebp-dev:s390x. 103s Preparing to unpack .../204-libwebp-dev_1.5.0-0.1_s390x.deb ... 103s Unpacking libwebp-dev:s390x (1.5.0-0.1) ... 103s Selecting previously unselected package libtiffxx6:s390x. 103s Preparing to unpack .../205-libtiffxx6_4.5.1+git230720-4ubuntu4_s390x.deb ... 103s Unpacking libtiffxx6:s390x (4.5.1+git230720-4ubuntu4) ... 103s Selecting previously unselected package libtiff-dev:s390x. 103s Preparing to unpack .../206-libtiff-dev_4.5.1+git230720-4ubuntu4_s390x.deb ... 103s Unpacking libtiff-dev:s390x (4.5.1+git230720-4ubuntu4) ... 103s Selecting previously unselected package libgdk-pixbuf-2.0-dev:s390x. 103s Preparing to unpack .../207-libgdk-pixbuf-2.0-dev_2.42.12+dfsg-2_s390x.deb ... 103s Unpacking libgdk-pixbuf-2.0-dev:s390x (2.42.12+dfsg-2) ... 103s Selecting previously unselected package libgraphene-1.0-dev:s390x. 103s Preparing to unpack .../208-libgraphene-1.0-dev_1.10.8-5_s390x.deb ... 103s Unpacking libgraphene-1.0-dev:s390x (1.10.8-5) ... 103s Selecting previously unselected package libgraphite2-dev:s390x. 103s Preparing to unpack .../209-libgraphite2-dev_1.3.14-2ubuntu1_s390x.deb ... 103s Unpacking libgraphite2-dev:s390x (1.3.14-2ubuntu1) ... 103s Selecting previously unselected package libharfbuzz-icu0:s390x. 103s Preparing to unpack .../210-libharfbuzz-icu0_10.2.0-1_s390x.deb ... 103s Unpacking libharfbuzz-icu0:s390x (10.2.0-1) ... 103s Selecting previously unselected package libharfbuzz-cairo0:s390x. 103s Preparing to unpack .../211-libharfbuzz-cairo0_10.2.0-1_s390x.deb ... 103s Unpacking libharfbuzz-cairo0:s390x (10.2.0-1) ... 103s Selecting previously unselected package libicu-dev:s390x. 103s Preparing to unpack .../212-libicu-dev_76.1-1ubuntu2_s390x.deb ... 103s Unpacking libicu-dev:s390x (76.1-1ubuntu2) ... 103s Selecting previously unselected package libharfbuzz-dev:s390x. 103s Preparing to unpack .../213-libharfbuzz-dev_10.2.0-1_s390x.deb ... 103s Unpacking libharfbuzz-dev:s390x (10.2.0-1) ... 103s Selecting previously unselected package libthai-dev:s390x. 103s Preparing to unpack .../214-libthai-dev_0.1.29-2build1_s390x.deb ... 103s Unpacking libthai-dev:s390x (0.1.29-2build1) ... 103s Selecting previously unselected package libxft-dev:s390x. 103s Preparing to unpack .../215-libxft-dev_2.3.6-1build1_s390x.deb ... 103s Unpacking libxft-dev:s390x (2.3.6-1build1) ... 103s Selecting previously unselected package pango1.0-tools. 103s Preparing to unpack .../216-pango1.0-tools_1.56.1-1_s390x.deb ... 103s Unpacking pango1.0-tools (1.56.1-1) ... 103s Selecting previously unselected package libpango1.0-dev:s390x. 103s Preparing to unpack .../217-libpango1.0-dev_1.56.1-1_s390x.deb ... 103s Unpacking libpango1.0-dev:s390x (1.56.1-1) ... 103s Selecting previously unselected package libwayland-cursor0:s390x. 103s Preparing to unpack .../218-libwayland-cursor0_1.23.1-1_s390x.deb ... 103s Unpacking libwayland-cursor0:s390x (1.23.1-1) ... 103s Selecting previously unselected package libwayland-bin. 103s Preparing to unpack .../219-libwayland-bin_1.23.1-1_s390x.deb ... 103s Unpacking libwayland-bin (1.23.1-1) ... 103s Selecting previously unselected package libwayland-dev:s390x. 103s Preparing to unpack .../220-libwayland-dev_1.23.1-1_s390x.deb ... 103s Unpacking libwayland-dev:s390x (1.23.1-1) ... 103s Selecting previously unselected package libxcomposite1:s390x. 103s Preparing to unpack .../221-libxcomposite1_1%3a0.4.6-1_s390x.deb ... 103s Unpacking libxcomposite1:s390x (1:0.4.6-1) ... 103s Selecting previously unselected package libxfixes-dev:s390x. 103s Preparing to unpack .../222-libxfixes-dev_1%3a6.0.0-2build1_s390x.deb ... 103s Unpacking libxfixes-dev:s390x (1:6.0.0-2build1) ... 103s Selecting previously unselected package libxcomposite-dev:s390x. 103s Preparing to unpack .../223-libxcomposite-dev_1%3a0.4.6-1_s390x.deb ... 103s Unpacking libxcomposite-dev:s390x (1:0.4.6-1) ... 103s Selecting previously unselected package libxcursor-dev:s390x. 103s Preparing to unpack .../224-libxcursor-dev_1%3a1.2.3-1_s390x.deb ... 103s Unpacking libxcursor-dev:s390x (1:1.2.3-1) ... 103s Selecting previously unselected package libxdamage-dev:s390x. 103s Preparing to unpack .../225-libxdamage-dev_1%3a1.1.6-1build1_s390x.deb ... 103s Unpacking libxdamage-dev:s390x (1:1.1.6-1build1) ... 103s Selecting previously unselected package libxi-dev:s390x. 103s Preparing to unpack .../226-libxi-dev_2%3a1.8.2-1_s390x.deb ... 103s Unpacking libxi-dev:s390x (2:1.8.2-1) ... 103s Selecting previously unselected package libxinerama-dev:s390x. 103s Preparing to unpack .../227-libxinerama-dev_2%3a1.1.4-3build1_s390x.deb ... 103s Unpacking libxinerama-dev:s390x (2:1.1.4-3build1) ... 103s Selecting previously unselected package libxkbcommon-dev:s390x. 103s Preparing to unpack .../228-libxkbcommon-dev_1.7.0-2_s390x.deb ... 103s Unpacking libxkbcommon-dev:s390x (1.7.0-2) ... 103s Selecting previously unselected package libxrandr-dev:s390x. 103s Preparing to unpack .../229-libxrandr-dev_2%3a1.5.4-1_s390x.deb ... 103s Unpacking libxrandr-dev:s390x (2:1.5.4-1) ... 103s Selecting previously unselected package libvulkan-dev:s390x. 103s Preparing to unpack .../230-libvulkan-dev_1.4.304.0-1_s390x.deb ... 103s Unpacking libvulkan-dev:s390x (1.4.304.0-1) ... 103s Selecting previously unselected package wayland-protocols. 103s Preparing to unpack .../231-wayland-protocols_1.40-1_all.deb ... 103s Unpacking wayland-protocols (1.40-1) ... 103s Selecting previously unselected package libgtk-4-dev:s390x. 103s Preparing to unpack .../232-libgtk-4-dev_4.17.1+ds-2ubuntu1_s390x.deb ... 103s Unpacking libgtk-4-dev:s390x (4.17.1+ds-2ubuntu1) ... 103s Selecting previously unselected package librust-cfg-if-dev:s390x. 103s Preparing to unpack .../233-librust-cfg-if-dev_1.0.0-1_s390x.deb ... 103s Unpacking librust-cfg-if-dev:s390x (1.0.0-1) ... 103s Selecting previously unselected package librust-cpp-demangle-dev:s390x. 103s Preparing to unpack .../234-librust-cpp-demangle-dev_0.4.0-1_s390x.deb ... 103s Unpacking librust-cpp-demangle-dev:s390x (0.4.0-1) ... 103s Selecting previously unselected package librust-fallible-iterator-dev:s390x. 103s Preparing to unpack .../235-librust-fallible-iterator-dev_0.3.0-2_s390x.deb ... 103s Unpacking librust-fallible-iterator-dev:s390x (0.3.0-2) ... 103s Selecting previously unselected package librust-unicode-ident-dev:s390x. 103s Preparing to unpack .../236-librust-unicode-ident-dev_1.0.13-1_s390x.deb ... 103s Unpacking librust-unicode-ident-dev:s390x (1.0.13-1) ... 103s Selecting previously unselected package librust-proc-macro2-dev:s390x. 103s Preparing to unpack .../237-librust-proc-macro2-dev_1.0.92-1_s390x.deb ... 103s Unpacking librust-proc-macro2-dev:s390x (1.0.92-1) ... 103s Selecting previously unselected package librust-quote-dev:s390x. 103s Preparing to unpack .../238-librust-quote-dev_1.0.37-1_s390x.deb ... 103s Unpacking librust-quote-dev:s390x (1.0.37-1) ... 103s Selecting previously unselected package librust-syn-dev:s390x. 103s Preparing to unpack .../239-librust-syn-dev_2.0.96-2_s390x.deb ... 103s Unpacking librust-syn-dev:s390x (2.0.96-2) ... 103s Selecting previously unselected package librust-derive-arbitrary-dev:s390x. 103s Preparing to unpack .../240-librust-derive-arbitrary-dev_1.4.1-1_s390x.deb ... 103s Unpacking librust-derive-arbitrary-dev:s390x (1.4.1-1) ... 103s Selecting previously unselected package librust-arbitrary-dev:s390x. 103s Preparing to unpack .../241-librust-arbitrary-dev_1.4.1-1_s390x.deb ... 103s Unpacking librust-arbitrary-dev:s390x (1.4.1-1) ... 103s Selecting previously unselected package librust-equivalent-dev:s390x. 103s Preparing to unpack .../242-librust-equivalent-dev_1.0.1-1_s390x.deb ... 103s Unpacking librust-equivalent-dev:s390x (1.0.1-1) ... 103s Selecting previously unselected package librust-critical-section-dev:s390x. 103s Preparing to unpack .../243-librust-critical-section-dev_1.2.0-1_s390x.deb ... 103s Unpacking librust-critical-section-dev:s390x (1.2.0-1) ... 104s Selecting previously unselected package librust-serde-derive-dev:s390x. 104s Preparing to unpack .../244-librust-serde-derive-dev_1.0.217-1_s390x.deb ... 104s Unpacking librust-serde-derive-dev:s390x (1.0.217-1) ... 104s Selecting previously unselected package librust-serde-dev:s390x. 104s Preparing to unpack .../245-librust-serde-dev_1.0.217-1_s390x.deb ... 104s Unpacking librust-serde-dev:s390x (1.0.217-1) ... 104s Selecting previously unselected package librust-portable-atomic-dev:s390x. 104s Preparing to unpack .../246-librust-portable-atomic-dev_1.10.0-3_s390x.deb ... 104s Unpacking librust-portable-atomic-dev:s390x (1.10.0-3) ... 104s Selecting previously unselected package librust-rustc-std-workspace-core-dev:s390x. 104s Preparing to unpack .../247-librust-rustc-std-workspace-core-dev_1.0.0-1_s390x.deb ... 104s Unpacking librust-rustc-std-workspace-core-dev:s390x (1.0.0-1) ... 104s Selecting previously unselected package librust-libc-dev:s390x. 104s Preparing to unpack .../248-librust-libc-dev_0.2.169-1_s390x.deb ... 104s Unpacking librust-libc-dev:s390x (0.2.169-1) ... 104s Selecting previously unselected package librust-getrandom-dev:s390x. 104s Preparing to unpack .../249-librust-getrandom-dev_0.2.15-1_s390x.deb ... 104s Unpacking librust-getrandom-dev:s390x (0.2.15-1) ... 104s Selecting previously unselected package librust-smallvec-dev:s390x. 104s Preparing to unpack .../250-librust-smallvec-dev_1.13.2-1_s390x.deb ... 104s Unpacking librust-smallvec-dev:s390x (1.13.2-1) ... 104s Selecting previously unselected package librust-parking-lot-core-dev:s390x. 104s Preparing to unpack .../251-librust-parking-lot-core-dev_0.9.10-1_s390x.deb ... 104s Unpacking librust-parking-lot-core-dev:s390x (0.9.10-1) ... 104s Selecting previously unselected package librust-once-cell-dev:s390x. 104s Preparing to unpack .../252-librust-once-cell-dev_1.20.2-1_s390x.deb ... 104s Unpacking librust-once-cell-dev:s390x (1.20.2-1) ... 104s Selecting previously unselected package librust-crunchy-dev:s390x. 104s Preparing to unpack .../253-librust-crunchy-dev_0.2.2-1_s390x.deb ... 104s Unpacking librust-crunchy-dev:s390x (0.2.2-1) ... 104s Selecting previously unselected package librust-tiny-keccak-dev:s390x. 104s Preparing to unpack .../254-librust-tiny-keccak-dev_2.0.2-1_s390x.deb ... 104s Unpacking librust-tiny-keccak-dev:s390x (2.0.2-1) ... 104s Selecting previously unselected package librust-const-random-macro-dev:s390x. 104s Preparing to unpack .../255-librust-const-random-macro-dev_0.1.16-2_s390x.deb ... 104s Unpacking librust-const-random-macro-dev:s390x (0.1.16-2) ... 104s Selecting previously unselected package librust-const-random-dev:s390x. 104s Preparing to unpack .../256-librust-const-random-dev_0.1.17-2_s390x.deb ... 104s Unpacking librust-const-random-dev:s390x (0.1.17-2) ... 104s Selecting previously unselected package librust-version-check-dev:s390x. 104s Preparing to unpack .../257-librust-version-check-dev_0.9.5-1_s390x.deb ... 104s Unpacking librust-version-check-dev:s390x (0.9.5-1) ... 104s Selecting previously unselected package librust-byteorder-dev:s390x. 104s Preparing to unpack .../258-librust-byteorder-dev_1.5.0-1_s390x.deb ... 104s Unpacking librust-byteorder-dev:s390x (1.5.0-1) ... 104s Selecting previously unselected package librust-zerocopy-derive-dev:s390x. 104s Preparing to unpack .../259-librust-zerocopy-derive-dev_0.7.34-1_s390x.deb ... 104s Unpacking librust-zerocopy-derive-dev:s390x (0.7.34-1) ... 104s Selecting previously unselected package librust-zerocopy-dev:s390x. 104s Preparing to unpack .../260-librust-zerocopy-dev_0.7.34-1_s390x.deb ... 104s Unpacking librust-zerocopy-dev:s390x (0.7.34-1) ... 104s Selecting previously unselected package librust-ahash-dev. 104s Preparing to unpack .../261-librust-ahash-dev_0.8.11-9_all.deb ... 104s Unpacking librust-ahash-dev (0.8.11-9) ... 104s Selecting previously unselected package librust-allocator-api2-dev:s390x. 104s Preparing to unpack .../262-librust-allocator-api2-dev_0.2.16-1_s390x.deb ... 104s Unpacking librust-allocator-api2-dev:s390x (0.2.16-1) ... 104s Selecting previously unselected package librust-compiler-builtins-dev:s390x. 104s Preparing to unpack .../263-librust-compiler-builtins-dev_0.1.139-1_s390x.deb ... 104s Unpacking librust-compiler-builtins-dev:s390x (0.1.139-1) ... 104s Selecting previously unselected package librust-either-dev:s390x. 104s Preparing to unpack .../264-librust-either-dev_1.13.0-1_s390x.deb ... 104s Unpacking librust-either-dev:s390x (1.13.0-1) ... 104s Selecting previously unselected package librust-crossbeam-utils-dev:s390x. 104s Preparing to unpack .../265-librust-crossbeam-utils-dev_0.8.19-1_s390x.deb ... 104s Unpacking librust-crossbeam-utils-dev:s390x (0.8.19-1) ... 104s Selecting previously unselected package librust-crossbeam-epoch-dev:s390x. 104s Preparing to unpack .../266-librust-crossbeam-epoch-dev_0.9.18-1_s390x.deb ... 104s Unpacking librust-crossbeam-epoch-dev:s390x (0.9.18-1) ... 104s Selecting previously unselected package librust-crossbeam-epoch+std-dev:s390x. 104s Preparing to unpack .../267-librust-crossbeam-epoch+std-dev_0.9.18-1_s390x.deb ... 104s Unpacking librust-crossbeam-epoch+std-dev:s390x (0.9.18-1) ... 104s Selecting previously unselected package librust-crossbeam-deque-dev:s390x. 104s Preparing to unpack .../268-librust-crossbeam-deque-dev_0.8.5-1_s390x.deb ... 104s Unpacking librust-crossbeam-deque-dev:s390x (0.8.5-1) ... 104s Selecting previously unselected package librust-rayon-core-dev:s390x. 104s Preparing to unpack .../269-librust-rayon-core-dev_1.12.1-1_s390x.deb ... 104s Unpacking librust-rayon-core-dev:s390x (1.12.1-1) ... 104s Selecting previously unselected package librust-rayon-dev:s390x. 104s Preparing to unpack .../270-librust-rayon-dev_1.10.0-1_s390x.deb ... 104s Unpacking librust-rayon-dev:s390x (1.10.0-1) ... 104s Selecting previously unselected package librust-hashbrown-dev:s390x. 104s Preparing to unpack .../271-librust-hashbrown-dev_0.14.5-5_s390x.deb ... 104s Unpacking librust-hashbrown-dev:s390x (0.14.5-5) ... 104s Selecting previously unselected package librust-indexmap-dev:s390x. 104s Preparing to unpack .../272-librust-indexmap-dev_2.7.0-1_s390x.deb ... 104s Unpacking librust-indexmap-dev:s390x (2.7.0-1) ... 104s Selecting previously unselected package librust-stable-deref-trait-dev:s390x. 104s Preparing to unpack .../273-librust-stable-deref-trait-dev_1.2.0-1_s390x.deb ... 104s Unpacking librust-stable-deref-trait-dev:s390x (1.2.0-1) ... 104s Selecting previously unselected package librust-gimli-dev:s390x. 104s Preparing to unpack .../274-librust-gimli-dev_0.31.1-2_s390x.deb ... 104s Unpacking librust-gimli-dev:s390x (0.31.1-2) ... 104s Selecting previously unselected package librust-memmap2-dev:s390x. 104s Preparing to unpack .../275-librust-memmap2-dev_0.9.5-1_s390x.deb ... 104s Unpacking librust-memmap2-dev:s390x (0.9.5-1) ... 104s Selecting previously unselected package librust-crc32fast-dev:s390x. 104s Preparing to unpack .../276-librust-crc32fast-dev_1.4.2-1_s390x.deb ... 104s Unpacking librust-crc32fast-dev:s390x (1.4.2-1) ... 104s Selecting previously unselected package librust-pkg-config-dev:s390x. 104s Preparing to unpack .../277-librust-pkg-config-dev_0.3.31-1_s390x.deb ... 104s Unpacking librust-pkg-config-dev:s390x (0.3.31-1) ... 104s Selecting previously unselected package librust-libz-sys-dev:s390x. 104s Preparing to unpack .../278-librust-libz-sys-dev_1.1.20-1_s390x.deb ... 104s Unpacking librust-libz-sys-dev:s390x (1.1.20-1) ... 104s Selecting previously unselected package librust-adler-dev:s390x. 104s Preparing to unpack .../279-librust-adler-dev_1.0.2-2_s390x.deb ... 104s Unpacking librust-adler-dev:s390x (1.0.2-2) ... 104s Selecting previously unselected package librust-miniz-oxide-dev:s390x. 104s Preparing to unpack .../280-librust-miniz-oxide-dev_0.7.1-1_s390x.deb ... 104s Unpacking librust-miniz-oxide-dev:s390x (0.7.1-1) ... 104s Selecting previously unselected package librust-flate2-dev:s390x. 104s Preparing to unpack .../281-librust-flate2-dev_1.0.34-1_s390x.deb ... 104s Unpacking librust-flate2-dev:s390x (1.0.34-1) ... 104s Selecting previously unselected package librust-sval-derive-dev:s390x. 104s Preparing to unpack .../282-librust-sval-derive-dev_2.6.1-2_s390x.deb ... 104s Unpacking librust-sval-derive-dev:s390x (2.6.1-2) ... 104s Selecting previously unselected package librust-sval-dev:s390x. 104s Preparing to unpack .../283-librust-sval-dev_2.6.1-2_s390x.deb ... 104s Unpacking librust-sval-dev:s390x (2.6.1-2) ... 104s Selecting previously unselected package librust-sval-ref-dev:s390x. 104s Preparing to unpack .../284-librust-sval-ref-dev_2.6.1-1_s390x.deb ... 104s Unpacking librust-sval-ref-dev:s390x (2.6.1-1) ... 104s Selecting previously unselected package librust-erased-serde-dev:s390x. 104s Preparing to unpack .../285-librust-erased-serde-dev_0.3.31-1_s390x.deb ... 104s Unpacking librust-erased-serde-dev:s390x (0.3.31-1) ... 104s Selecting previously unselected package librust-serde-fmt-dev. 104s Preparing to unpack .../286-librust-serde-fmt-dev_1.0.3-4_all.deb ... 104s Unpacking librust-serde-fmt-dev (1.0.3-4) ... 104s Selecting previously unselected package librust-no-panic-dev:s390x. 104s Preparing to unpack .../287-librust-no-panic-dev_0.1.32-1_s390x.deb ... 104s Unpacking librust-no-panic-dev:s390x (0.1.32-1) ... 104s Selecting previously unselected package librust-itoa-dev:s390x. 104s Preparing to unpack .../288-librust-itoa-dev_1.0.14-1_s390x.deb ... 104s Unpacking librust-itoa-dev:s390x (1.0.14-1) ... 104s Selecting previously unselected package librust-ryu-dev:s390x. 104s Preparing to unpack .../289-librust-ryu-dev_1.0.19-1_s390x.deb ... 104s Unpacking librust-ryu-dev:s390x (1.0.19-1) ... 104s Selecting previously unselected package librust-serde-json-dev:s390x. 104s Preparing to unpack .../290-librust-serde-json-dev_1.0.133-1_s390x.deb ... 104s Unpacking librust-serde-json-dev:s390x (1.0.133-1) ... 104s Selecting previously unselected package librust-serde-test-dev:s390x. 104s Preparing to unpack .../291-librust-serde-test-dev_1.0.171-1_s390x.deb ... 104s Unpacking librust-serde-test-dev:s390x (1.0.171-1) ... 104s Selecting previously unselected package librust-value-bag-serde1-dev:s390x. 104s Preparing to unpack .../292-librust-value-bag-serde1-dev_1.9.0-1_s390x.deb ... 104s Unpacking librust-value-bag-serde1-dev:s390x (1.9.0-1) ... 104s Selecting previously unselected package librust-sval-buffer-dev:s390x. 104s Preparing to unpack .../293-librust-sval-buffer-dev_2.6.1-1_s390x.deb ... 104s Unpacking librust-sval-buffer-dev:s390x (2.6.1-1) ... 104s Selecting previously unselected package librust-sval-dynamic-dev:s390x. 104s Preparing to unpack .../294-librust-sval-dynamic-dev_2.6.1-1_s390x.deb ... 104s Unpacking librust-sval-dynamic-dev:s390x (2.6.1-1) ... 104s Selecting previously unselected package librust-sval-fmt-dev:s390x. 104s Preparing to unpack .../295-librust-sval-fmt-dev_2.6.1-1_s390x.deb ... 104s Unpacking librust-sval-fmt-dev:s390x (2.6.1-1) ... 104s Selecting previously unselected package librust-sval-serde-dev:s390x. 104s Preparing to unpack .../296-librust-sval-serde-dev_2.6.1-1_s390x.deb ... 104s Unpacking librust-sval-serde-dev:s390x (2.6.1-1) ... 104s Selecting previously unselected package librust-value-bag-sval2-dev:s390x. 104s Preparing to unpack .../297-librust-value-bag-sval2-dev_1.9.0-1_s390x.deb ... 104s Unpacking librust-value-bag-sval2-dev:s390x (1.9.0-1) ... 104s Selecting previously unselected package librust-value-bag-dev:s390x. 104s Preparing to unpack .../298-librust-value-bag-dev_1.9.0-1_s390x.deb ... 104s Unpacking librust-value-bag-dev:s390x (1.9.0-1) ... 104s Selecting previously unselected package librust-log-dev:s390x. 104s Preparing to unpack .../299-librust-log-dev_0.4.22-1_s390x.deb ... 104s Unpacking librust-log-dev:s390x (0.4.22-1) ... 104s Selecting previously unselected package librust-memchr-dev:s390x. 104s Preparing to unpack .../300-librust-memchr-dev_2.7.4-1_s390x.deb ... 104s Unpacking librust-memchr-dev:s390x (2.7.4-1) ... 104s Selecting previously unselected package librust-blobby-dev:s390x. 104s Preparing to unpack .../301-librust-blobby-dev_0.3.1-1_s390x.deb ... 104s Unpacking librust-blobby-dev:s390x (0.3.1-1) ... 104s Selecting previously unselected package librust-typenum-dev:s390x. 104s Preparing to unpack .../302-librust-typenum-dev_1.17.0-2_s390x.deb ... 104s Unpacking librust-typenum-dev:s390x (1.17.0-2) ... 104s Selecting previously unselected package librust-zeroize-derive-dev:s390x. 104s Preparing to unpack .../303-librust-zeroize-derive-dev_1.4.2-1_s390x.deb ... 104s Unpacking librust-zeroize-derive-dev:s390x (1.4.2-1) ... 104s Selecting previously unselected package librust-zeroize-dev:s390x. 104s Preparing to unpack .../304-librust-zeroize-dev_1.8.1-1_s390x.deb ... 104s Unpacking librust-zeroize-dev:s390x (1.8.1-1) ... 104s Selecting previously unselected package librust-generic-array-dev:s390x. 104s Preparing to unpack .../305-librust-generic-array-dev_0.14.7-1_s390x.deb ... 104s Unpacking librust-generic-array-dev:s390x (0.14.7-1) ... 104s Selecting previously unselected package librust-block-buffer-dev:s390x. 104s Preparing to unpack .../306-librust-block-buffer-dev_0.10.2-2_s390x.deb ... 104s Unpacking librust-block-buffer-dev:s390x (0.10.2-2) ... 104s Selecting previously unselected package librust-const-oid-dev:s390x. 104s Preparing to unpack .../307-librust-const-oid-dev_0.9.6-1_s390x.deb ... 104s Unpacking librust-const-oid-dev:s390x (0.9.6-1) ... 104s Selecting previously unselected package librust-rand-core-dev:s390x. 104s Preparing to unpack .../308-librust-rand-core-dev_0.6.4-2_s390x.deb ... 104s Unpacking librust-rand-core-dev:s390x (0.6.4-2) ... 104s Selecting previously unselected package librust-rand-core+getrandom-dev:s390x. 104s Preparing to unpack .../309-librust-rand-core+getrandom-dev_0.6.4-2_s390x.deb ... 104s Unpacking librust-rand-core+getrandom-dev:s390x (0.6.4-2) ... 104s Selecting previously unselected package librust-crypto-common-dev:s390x. 104s Preparing to unpack .../310-librust-crypto-common-dev_0.1.6-1_s390x.deb ... 104s Unpacking librust-crypto-common-dev:s390x (0.1.6-1) ... 104s Selecting previously unselected package librust-subtle-dev:s390x. 104s Preparing to unpack .../311-librust-subtle-dev_2.6.1-1_s390x.deb ... 104s Unpacking librust-subtle-dev:s390x (2.6.1-1) ... 104s Selecting previously unselected package librust-digest-dev:s390x. 104s Preparing to unpack .../312-librust-digest-dev_0.10.7-2_s390x.deb ... 104s Unpacking librust-digest-dev:s390x (0.10.7-2) ... 104s Selecting previously unselected package librust-ppv-lite86-dev:s390x. 104s Preparing to unpack .../313-librust-ppv-lite86-dev_0.2.20-1_s390x.deb ... 104s Unpacking librust-ppv-lite86-dev:s390x (0.2.20-1) ... 104s Selecting previously unselected package librust-rand-chacha-dev:s390x. 104s Preparing to unpack .../314-librust-rand-chacha-dev_0.3.1-2_s390x.deb ... 104s Unpacking librust-rand-chacha-dev:s390x (0.3.1-2) ... 105s Selecting previously unselected package librust-rand-core+serde-dev:s390x. 105s Preparing to unpack .../315-librust-rand-core+serde-dev_0.6.4-2_s390x.deb ... 105s Unpacking librust-rand-core+serde-dev:s390x (0.6.4-2) ... 105s Selecting previously unselected package librust-rand-core+std-dev:s390x. 105s Preparing to unpack .../316-librust-rand-core+std-dev_0.6.4-2_s390x.deb ... 105s Unpacking librust-rand-core+std-dev:s390x (0.6.4-2) ... 105s Selecting previously unselected package librust-rand-dev:s390x. 105s Preparing to unpack .../317-librust-rand-dev_0.8.5-1_s390x.deb ... 105s Unpacking librust-rand-dev:s390x (0.8.5-1) ... 105s Selecting previously unselected package librust-static-assertions-dev:s390x. 105s Preparing to unpack .../318-librust-static-assertions-dev_1.1.0-1_s390x.deb ... 105s Unpacking librust-static-assertions-dev:s390x (1.1.0-1) ... 105s Selecting previously unselected package librust-twox-hash-dev:s390x. 105s Preparing to unpack .../319-librust-twox-hash-dev_1.6.3-1_s390x.deb ... 105s Unpacking librust-twox-hash-dev:s390x (1.6.3-1) ... 105s Selecting previously unselected package librust-ruzstd-dev:s390x. 105s Preparing to unpack .../320-librust-ruzstd-dev_0.7.3-2_s390x.deb ... 105s Unpacking librust-ruzstd-dev:s390x (0.7.3-2) ... 105s Selecting previously unselected package librust-object-dev:s390x. 105s Preparing to unpack .../321-librust-object-dev_0.36.5-2_s390x.deb ... 105s Unpacking librust-object-dev:s390x (0.36.5-2) ... 105s Selecting previously unselected package librust-rustc-demangle-dev:s390x. 105s Preparing to unpack .../322-librust-rustc-demangle-dev_0.1.24-1_s390x.deb ... 105s Unpacking librust-rustc-demangle-dev:s390x (0.1.24-1) ... 105s Selecting previously unselected package librust-typed-arena-dev:s390x. 105s Preparing to unpack .../323-librust-typed-arena-dev_2.0.2-1_s390x.deb ... 105s Unpacking librust-typed-arena-dev:s390x (2.0.2-1) ... 105s Selecting previously unselected package librust-addr2line-dev:s390x. 105s Preparing to unpack .../324-librust-addr2line-dev_0.24.2-2_s390x.deb ... 105s Unpacking librust-addr2line-dev:s390x (0.24.2-2) ... 105s Selecting previously unselected package librust-aho-corasick-dev:s390x. 105s Preparing to unpack .../325-librust-aho-corasick-dev_1.1.3-1_s390x.deb ... 105s Unpacking librust-aho-corasick-dev:s390x (1.1.3-1) ... 105s Selecting previously unselected package librust-anstyle-dev:s390x. 105s Preparing to unpack .../326-librust-anstyle-dev_1.0.8-1_s390x.deb ... 105s Unpacking librust-anstyle-dev:s390x (1.0.8-1) ... 105s Selecting previously unselected package librust-arrayvec-dev:s390x. 105s Preparing to unpack .../327-librust-arrayvec-dev_0.7.6-1_s390x.deb ... 105s Unpacking librust-arrayvec-dev:s390x (0.7.6-1) ... 105s Selecting previously unselected package librust-utf8parse-dev:s390x. 105s Preparing to unpack .../328-librust-utf8parse-dev_0.2.1-1_s390x.deb ... 105s Unpacking librust-utf8parse-dev:s390x (0.2.1-1) ... 105s Selecting previously unselected package librust-anstyle-parse-dev:s390x. 105s Preparing to unpack .../329-librust-anstyle-parse-dev_0.2.1-1_s390x.deb ... 105s Unpacking librust-anstyle-parse-dev:s390x (0.2.1-1) ... 105s Selecting previously unselected package librust-anstyle-query-dev:s390x. 105s Preparing to unpack .../330-librust-anstyle-query-dev_1.0.0-1_s390x.deb ... 105s Unpacking librust-anstyle-query-dev:s390x (1.0.0-1) ... 105s Selecting previously unselected package librust-colorchoice-dev:s390x. 105s Preparing to unpack .../331-librust-colorchoice-dev_1.0.0-1_s390x.deb ... 105s Unpacking librust-colorchoice-dev:s390x (1.0.0-1) ... 105s Selecting previously unselected package librust-anstream-dev:s390x. 105s Preparing to unpack .../332-librust-anstream-dev_0.6.15-1_s390x.deb ... 105s Unpacking librust-anstream-dev:s390x (0.6.15-1) ... 105s Selecting previously unselected package librust-concurrent-queue-dev:s390x. 105s Preparing to unpack .../333-librust-concurrent-queue-dev_2.5.0-4_s390x.deb ... 105s Unpacking librust-concurrent-queue-dev:s390x (2.5.0-4) ... 105s Selecting previously unselected package librust-parking-dev:s390x. 105s Preparing to unpack .../334-librust-parking-dev_2.2.0-1_s390x.deb ... 105s Unpacking librust-parking-dev:s390x (2.2.0-1) ... 105s Selecting previously unselected package librust-pin-project-lite-dev:s390x. 105s Preparing to unpack .../335-librust-pin-project-lite-dev_0.2.13-1_s390x.deb ... 105s Unpacking librust-pin-project-lite-dev:s390x (0.2.13-1) ... 105s Selecting previously unselected package librust-event-listener-dev. 105s Preparing to unpack .../336-librust-event-listener-dev_5.4.0-3_all.deb ... 105s Unpacking librust-event-listener-dev (5.4.0-3) ... 105s Selecting previously unselected package librust-event-listener-strategy-dev:s390x. 105s Preparing to unpack .../337-librust-event-listener-strategy-dev_0.5.3-1_s390x.deb ... 105s Unpacking librust-event-listener-strategy-dev:s390x (0.5.3-1) ... 105s Selecting previously unselected package librust-futures-core-dev:s390x. 105s Preparing to unpack .../338-librust-futures-core-dev_0.3.31-1_s390x.deb ... 105s Unpacking librust-futures-core-dev:s390x (0.3.31-1) ... 105s Selecting previously unselected package librust-async-broadcast-dev:s390x. 105s Preparing to unpack .../339-librust-async-broadcast-dev_0.7.1-1_s390x.deb ... 105s Unpacking librust-async-broadcast-dev:s390x (0.7.1-1) ... 105s Selecting previously unselected package librust-async-channel-dev. 105s Preparing to unpack .../340-librust-async-channel-dev_2.3.1-9_all.deb ... 105s Unpacking librust-async-channel-dev (2.3.1-9) ... 105s Selecting previously unselected package librust-async-task-dev. 105s Preparing to unpack .../341-librust-async-task-dev_4.7.1-4_all.deb ... 105s Unpacking librust-async-task-dev (4.7.1-4) ... 105s Selecting previously unselected package librust-fastrand-dev:s390x. 105s Preparing to unpack .../342-librust-fastrand-dev_2.1.1-1_s390x.deb ... 105s Unpacking librust-fastrand-dev:s390x (2.1.1-1) ... 105s Selecting previously unselected package librust-futures-io-dev:s390x. 105s Preparing to unpack .../343-librust-futures-io-dev_0.3.31-1_s390x.deb ... 105s Unpacking librust-futures-io-dev:s390x (0.3.31-1) ... 105s Selecting previously unselected package librust-futures-lite-dev:s390x. 105s Preparing to unpack .../344-librust-futures-lite-dev_2.3.0-2_s390x.deb ... 105s Unpacking librust-futures-lite-dev:s390x (2.3.0-2) ... 105s Selecting previously unselected package librust-autocfg-dev:s390x. 105s Preparing to unpack .../345-librust-autocfg-dev_1.1.0-1_s390x.deb ... 105s Unpacking librust-autocfg-dev:s390x (1.1.0-1) ... 105s Selecting previously unselected package librust-slab-dev:s390x. 105s Preparing to unpack .../346-librust-slab-dev_0.4.9-1_s390x.deb ... 105s Unpacking librust-slab-dev:s390x (0.4.9-1) ... 105s Selecting previously unselected package librust-async-executor-dev. 105s Preparing to unpack .../347-librust-async-executor-dev_1.13.1-2_all.deb ... 105s Unpacking librust-async-executor-dev (1.13.1-2) ... 105s Selecting previously unselected package librust-async-lock-dev. 105s Preparing to unpack .../348-librust-async-lock-dev_3.4.0-5_all.deb ... 105s Unpacking librust-async-lock-dev (3.4.0-5) ... 105s Selecting previously unselected package librust-atomic-waker-dev:s390x. 105s Preparing to unpack .../349-librust-atomic-waker-dev_1.1.2-1_s390x.deb ... 105s Unpacking librust-atomic-waker-dev:s390x (1.1.2-1) ... 105s Selecting previously unselected package librust-tracing-attributes-dev:s390x. 105s Preparing to unpack .../350-librust-tracing-attributes-dev_0.1.27-1_s390x.deb ... 105s Unpacking librust-tracing-attributes-dev:s390x (0.1.27-1) ... 105s Selecting previously unselected package librust-syn-1-dev:s390x. 105s Preparing to unpack .../351-librust-syn-1-dev_1.0.109-3_s390x.deb ... 105s Unpacking librust-syn-1-dev:s390x (1.0.109-3) ... 105s Selecting previously unselected package librust-valuable-derive-dev:s390x. 105s Preparing to unpack .../352-librust-valuable-derive-dev_0.1.0-1_s390x.deb ... 105s Unpacking librust-valuable-derive-dev:s390x (0.1.0-1) ... 105s Selecting previously unselected package librust-valuable-dev:s390x. 105s Preparing to unpack .../353-librust-valuable-dev_0.1.0-4_s390x.deb ... 105s Unpacking librust-valuable-dev:s390x (0.1.0-4) ... 105s Selecting previously unselected package librust-tracing-core-dev:s390x. 105s Preparing to unpack .../354-librust-tracing-core-dev_0.1.32-1_s390x.deb ... 105s Unpacking librust-tracing-core-dev:s390x (0.1.32-1) ... 105s Selecting previously unselected package librust-tracing-dev:s390x. 105s Preparing to unpack .../355-librust-tracing-dev_0.1.40-1_s390x.deb ... 105s Unpacking librust-tracing-dev:s390x (0.1.40-1) ... 105s Selecting previously unselected package librust-blocking-dev. 105s Preparing to unpack .../356-librust-blocking-dev_1.6.1-6_all.deb ... 105s Unpacking librust-blocking-dev (1.6.1-6) ... 105s Selecting previously unselected package librust-async-fs-dev. 105s Preparing to unpack .../357-librust-async-fs-dev_2.1.2-5_all.deb ... 105s Unpacking librust-async-fs-dev (2.1.2-5) ... 105s Selecting previously unselected package librust-bytemuck-derive-dev:s390x. 105s Preparing to unpack .../358-librust-bytemuck-derive-dev_1.5.0-2_s390x.deb ... 105s Unpacking librust-bytemuck-derive-dev:s390x (1.5.0-2) ... 105s Selecting previously unselected package librust-bytemuck-dev:s390x. 105s Preparing to unpack .../359-librust-bytemuck-dev_1.21.0-1_s390x.deb ... 105s Unpacking librust-bytemuck-dev:s390x (1.21.0-1) ... 105s Selecting previously unselected package librust-bitflags-dev:s390x. 105s Preparing to unpack .../360-librust-bitflags-dev_2.8.0-1_s390x.deb ... 105s Unpacking librust-bitflags-dev:s390x (2.8.0-1) ... 105s Selecting previously unselected package librust-compiler-builtins+core-dev:s390x. 105s Preparing to unpack .../361-librust-compiler-builtins+core-dev_0.1.139-1_s390x.deb ... 105s Unpacking librust-compiler-builtins+core-dev:s390x (0.1.139-1) ... 105s Selecting previously unselected package librust-compiler-builtins+rustc-dep-of-std-dev:s390x. 105s Preparing to unpack .../362-librust-compiler-builtins+rustc-dep-of-std-dev_0.1.139-1_s390x.deb ... 105s Unpacking librust-compiler-builtins+rustc-dep-of-std-dev:s390x (0.1.139-1) ... 105s Selecting previously unselected package librust-errno-dev:s390x. 105s Preparing to unpack .../363-librust-errno-dev_0.3.8-1_s390x.deb ... 105s Unpacking librust-errno-dev:s390x (0.3.8-1) ... 105s Selecting previously unselected package librust-linux-raw-sys-dev:s390x. 105s Preparing to unpack .../364-librust-linux-raw-sys-dev_0.4.14-1_s390x.deb ... 105s Unpacking librust-linux-raw-sys-dev:s390x (0.4.14-1) ... 105s Selecting previously unselected package librust-rustix-dev:s390x. 105s Preparing to unpack .../365-librust-rustix-dev_0.38.37-1_s390x.deb ... 105s Unpacking librust-rustix-dev:s390x (0.38.37-1) ... 105s Selecting previously unselected package librust-polling-dev:s390x. 105s Preparing to unpack .../366-librust-polling-dev_3.4.0-1_s390x.deb ... 105s Unpacking librust-polling-dev:s390x (3.4.0-1) ... 105s Selecting previously unselected package librust-async-io-dev:s390x. 105s Preparing to unpack .../367-librust-async-io-dev_2.3.3-4_s390x.deb ... 105s Unpacking librust-async-io-dev:s390x (2.3.3-4) ... 105s Selecting previously unselected package librust-async-trait-dev:s390x. 105s Preparing to unpack .../368-librust-async-trait-dev_0.1.83-1_s390x.deb ... 105s Unpacking librust-async-trait-dev:s390x (0.1.83-1) ... 105s Selecting previously unselected package librust-atomic-dev:s390x. 105s Preparing to unpack .../369-librust-atomic-dev_0.6.0-1_s390x.deb ... 105s Unpacking librust-atomic-dev:s390x (0.6.0-1) ... 105s Selecting previously unselected package librust-backtrace-dev:s390x. 105s Preparing to unpack .../370-librust-backtrace-dev_0.3.74-3_s390x.deb ... 105s Unpacking librust-backtrace-dev:s390x (0.3.74-3) ... 105s Selecting previously unselected package librust-bitflags-1-dev:s390x. 105s Preparing to unpack .../371-librust-bitflags-1-dev_1.3.2-7_s390x.deb ... 105s Unpacking librust-bitflags-1-dev:s390x (1.3.2-7) ... 105s Selecting previously unselected package librust-bumpalo-dev:s390x. 105s Preparing to unpack .../372-librust-bumpalo-dev_3.16.0-1_s390x.deb ... 105s Unpacking librust-bumpalo-dev:s390x (3.16.0-1) ... 105s Selecting previously unselected package librust-bytes-dev:s390x. 105s Preparing to unpack .../373-librust-bytes-dev_1.9.0-1_s390x.deb ... 105s Unpacking librust-bytes-dev:s390x (1.9.0-1) ... 105s Selecting previously unselected package librust-target-lexicon-dev:s390x. 105s Preparing to unpack .../374-librust-target-lexicon-dev_0.12.14-1_s390x.deb ... 105s Unpacking librust-target-lexicon-dev:s390x (0.12.14-1) ... 105s Selecting previously unselected package librust-cfg-expr-dev:s390x. 105s Preparing to unpack .../375-librust-cfg-expr-dev_0.15.8-1_s390x.deb ... 105s Unpacking librust-cfg-expr-dev:s390x (0.15.8-1) ... 105s Selecting previously unselected package librust-unicode-segmentation-dev:s390x. 105s Preparing to unpack .../376-librust-unicode-segmentation-dev_1.12.0-1_s390x.deb ... 105s Unpacking librust-unicode-segmentation-dev:s390x (1.12.0-1) ... 105s Selecting previously unselected package librust-heck-dev:s390x. 105s Preparing to unpack .../377-librust-heck-dev_0.4.1-1_s390x.deb ... 105s Unpacking librust-heck-dev:s390x (0.4.1-1) ... 105s Selecting previously unselected package librust-serde-spanned-dev:s390x. 105s Preparing to unpack .../378-librust-serde-spanned-dev_0.6.7-1_s390x.deb ... 105s Unpacking librust-serde-spanned-dev:s390x (0.6.7-1) ... 105s Selecting previously unselected package librust-toml-datetime-dev:s390x. 105s Preparing to unpack .../379-librust-toml-datetime-dev_0.6.8-1_s390x.deb ... 105s Unpacking librust-toml-datetime-dev:s390x (0.6.8-1) ... 106s Selecting previously unselected package librust-kstring-dev:s390x. 106s Preparing to unpack .../380-librust-kstring-dev_2.0.0-1_s390x.deb ... 106s Unpacking librust-kstring-dev:s390x (2.0.0-1) ... 106s Selecting previously unselected package librust-winnow-dev:s390x. 106s Preparing to unpack .../381-librust-winnow-dev_0.6.18-1_s390x.deb ... 106s Unpacking librust-winnow-dev:s390x (0.6.18-1) ... 106s Selecting previously unselected package librust-toml-edit-dev:s390x. 106s Preparing to unpack .../382-librust-toml-edit-dev_0.22.20-1_s390x.deb ... 106s Unpacking librust-toml-edit-dev:s390x (0.22.20-1) ... 106s Selecting previously unselected package librust-toml-dev:s390x. 106s Preparing to unpack .../383-librust-toml-dev_0.8.19-1_s390x.deb ... 106s Unpacking librust-toml-dev:s390x (0.8.19-1) ... 106s Selecting previously unselected package librust-version-compare-dev:s390x. 106s Preparing to unpack .../384-librust-version-compare-dev_0.1.1-1_s390x.deb ... 106s Unpacking librust-version-compare-dev:s390x (0.1.1-1) ... 106s Selecting previously unselected package librust-system-deps-dev:s390x. 106s Preparing to unpack .../385-librust-system-deps-dev_7.0.2-2_s390x.deb ... 106s Unpacking librust-system-deps-dev:s390x (7.0.2-2) ... 106s Selecting previously unselected package librust-glib-sys-dev:s390x. 106s Preparing to unpack .../386-librust-glib-sys-dev_0.20.7-1_s390x.deb ... 106s Unpacking librust-glib-sys-dev:s390x (0.20.7-1) ... 106s Selecting previously unselected package libxxf86vm-dev:s390x. 106s Preparing to unpack .../387-libxxf86vm-dev_1%3a1.1.4-1build4_s390x.deb ... 106s Unpacking libxxf86vm-dev:s390x (1:1.1.4-1build4) ... 106s Selecting previously unselected package libx11-xcb-dev:s390x. 106s Preparing to unpack .../388-libx11-xcb-dev_2%3a1.8.10-2_s390x.deb ... 106s Unpacking libx11-xcb-dev:s390x (2:1.8.10-2) ... 106s Selecting previously unselected package libxt6t64:s390x. 106s Preparing to unpack .../389-libxt6t64_1%3a1.2.1-1.2build1_s390x.deb ... 106s Unpacking libxt6t64:s390x (1:1.2.1-1.2build1) ... 106s Selecting previously unselected package libxt-dev:s390x. 106s Preparing to unpack .../390-libxt-dev_1%3a1.2.1-1.2build1_s390x.deb ... 106s Unpacking libxt-dev:s390x (1:1.2.1-1.2build1) ... 106s Selecting previously unselected package libxmu6:s390x. 106s Preparing to unpack .../391-libxmu6_2%3a1.1.3-3build2_s390x.deb ... 106s Unpacking libxmu6:s390x (2:1.1.3-3build2) ... 106s Selecting previously unselected package libxmu-headers. 106s Preparing to unpack .../392-libxmu-headers_2%3a1.1.3-3build2_all.deb ... 106s Unpacking libxmu-headers (2:1.1.3-3build2) ... 106s Selecting previously unselected package libxmu-dev:s390x. 106s Preparing to unpack .../393-libxmu-dev_2%3a1.1.3-3build2_s390x.deb ... 106s Unpacking libxmu-dev:s390x (2:1.1.3-3build2) ... 106s Selecting previously unselected package libxss1:s390x. 106s Preparing to unpack .../394-libxss1_1%3a1.2.3-1build3_s390x.deb ... 106s Unpacking libxss1:s390x (1:1.2.3-1build3) ... 106s Selecting previously unselected package libxss-dev:s390x. 106s Preparing to unpack .../395-libxss-dev_1%3a1.2.3-1build3_s390x.deb ... 106s Unpacking libxss-dev:s390x (1:1.2.3-1build3) ... 106s Selecting previously unselected package libxtst6:s390x. 106s Preparing to unpack .../396-libxtst6_2%3a1.2.5-1_s390x.deb ... 106s Unpacking libxtst6:s390x (2:1.2.5-1) ... 106s Selecting previously unselected package libxtst-dev:s390x. 106s Preparing to unpack .../397-libxtst-dev_2%3a1.2.5-1_s390x.deb ... 106s Unpacking libxtst-dev:s390x (2:1.2.5-1) ... 106s Selecting previously unselected package librust-x11-dev:s390x. 106s Preparing to unpack .../398-librust-x11-dev_2.19.1-1_s390x.deb ... 106s Unpacking librust-x11-dev:s390x (2.19.1-1) ... 106s Selecting previously unselected package librust-cairo-sys-rs-dev:s390x. 106s Preparing to unpack .../399-librust-cairo-sys-rs-dev_0.20.7-1_s390x.deb ... 106s Unpacking librust-cairo-sys-rs-dev:s390x (0.20.7-1) ... 106s Selecting previously unselected package librust-jobserver-dev:s390x. 106s Preparing to unpack .../400-librust-jobserver-dev_0.1.32-1_s390x.deb ... 106s Unpacking librust-jobserver-dev:s390x (0.1.32-1) ... 106s Selecting previously unselected package librust-shlex-dev:s390x. 106s Preparing to unpack .../401-librust-shlex-dev_1.3.0-1_s390x.deb ... 106s Unpacking librust-shlex-dev:s390x (1.3.0-1) ... 106s Selecting previously unselected package librust-cc-dev:s390x. 106s Preparing to unpack .../402-librust-cc-dev_1.1.14-1_s390x.deb ... 106s Unpacking librust-cc-dev:s390x (1.1.14-1) ... 106s Selecting previously unselected package librust-freetype-sys-dev:s390x. 106s Preparing to unpack .../403-librust-freetype-sys-dev_0.20.1-1_s390x.deb ... 106s Unpacking librust-freetype-sys-dev:s390x (0.20.1-1) ... 106s Selecting previously unselected package librust-freetype-rs-dev:s390x. 106s Preparing to unpack .../404-librust-freetype-rs-dev_0.36.0-2_s390x.deb ... 106s Unpacking librust-freetype-rs-dev:s390x (0.36.0-2) ... 106s Selecting previously unselected package librust-futures-sink-dev:s390x. 106s Preparing to unpack .../405-librust-futures-sink-dev_0.3.31-1_s390x.deb ... 106s Unpacking librust-futures-sink-dev:s390x (0.3.31-1) ... 106s Selecting previously unselected package librust-futures-channel-dev:s390x. 106s Preparing to unpack .../406-librust-futures-channel-dev_0.3.31-1_s390x.deb ... 106s Unpacking librust-futures-channel-dev:s390x (0.3.31-1) ... 106s Selecting previously unselected package librust-futures-task-dev:s390x. 106s Preparing to unpack .../407-librust-futures-task-dev_0.3.31-3_s390x.deb ... 106s Unpacking librust-futures-task-dev:s390x (0.3.31-3) ... 106s Selecting previously unselected package librust-futures-macro-dev:s390x. 106s Preparing to unpack .../408-librust-futures-macro-dev_0.3.31-1_s390x.deb ... 106s Unpacking librust-futures-macro-dev:s390x (0.3.31-1) ... 106s Selecting previously unselected package librust-pin-utils-dev:s390x. 106s Preparing to unpack .../409-librust-pin-utils-dev_0.1.0-1_s390x.deb ... 106s Unpacking librust-pin-utils-dev:s390x (0.1.0-1) ... 106s Selecting previously unselected package librust-futures-util-dev:s390x. 106s Preparing to unpack .../410-librust-futures-util-dev_0.3.31-1_s390x.deb ... 106s Unpacking librust-futures-util-dev:s390x (0.3.31-1) ... 106s Selecting previously unselected package librust-num-cpus-dev:s390x. 106s Preparing to unpack .../411-librust-num-cpus-dev_1.16.0-1_s390x.deb ... 106s Unpacking librust-num-cpus-dev:s390x (1.16.0-1) ... 106s Selecting previously unselected package librust-futures-executor-dev:s390x. 106s Preparing to unpack .../412-librust-futures-executor-dev_0.3.31-1_s390x.deb ... 106s Unpacking librust-futures-executor-dev:s390x (0.3.31-1) ... 106s Selecting previously unselected package librust-gobject-sys-dev:s390x. 106s Preparing to unpack .../413-librust-gobject-sys-dev_0.20.7-1_s390x.deb ... 106s Unpacking librust-gobject-sys-dev:s390x (0.20.7-1) ... 106s Selecting previously unselected package librust-gio-sys-dev:s390x. 106s Preparing to unpack .../414-librust-gio-sys-dev_0.20.8-2_s390x.deb ... 106s Unpacking librust-gio-sys-dev:s390x (0.20.8-2) ... 106s Selecting previously unselected package librust-proc-macro-crate-dev:s390x. 106s Preparing to unpack .../415-librust-proc-macro-crate-dev_3.2.0-1_s390x.deb ... 106s Unpacking librust-proc-macro-crate-dev:s390x (3.2.0-1) ... 106s Selecting previously unselected package librust-glib-macros-dev:s390x. 106s Preparing to unpack .../416-librust-glib-macros-dev_0.20.7-1_s390x.deb ... 106s Unpacking librust-glib-macros-dev:s390x (0.20.7-1) ... 106s Selecting previously unselected package librust-glib-dev:s390x. 106s Preparing to unpack .../417-librust-glib-dev_0.20.7-1_s390x.deb ... 106s Unpacking librust-glib-dev:s390x (0.20.7-1) ... 106s Selecting previously unselected package librust-cairo-rs-dev:s390x. 106s Preparing to unpack .../418-librust-cairo-rs-dev_0.20.7-1_s390x.deb ... 106s Unpacking librust-cairo-rs-dev:s390x (0.20.7-1) ... 106s Selecting previously unselected package librust-cfg-aliases-dev:s390x. 106s Preparing to unpack .../419-librust-cfg-aliases-dev_0.2.1-1_s390x.deb ... 106s Unpacking librust-cfg-aliases-dev:s390x (0.2.1-1) ... 106s Selecting previously unselected package librust-iana-time-zone-dev:s390x. 106s Preparing to unpack .../420-librust-iana-time-zone-dev_0.1.60-1_s390x.deb ... 106s Unpacking librust-iana-time-zone-dev:s390x (0.1.60-1) ... 106s Selecting previously unselected package librust-wasm-bindgen-shared-dev:s390x. 106s Preparing to unpack .../421-librust-wasm-bindgen-shared-dev_0.2.99-1_s390x.deb ... 106s Unpacking librust-wasm-bindgen-shared-dev:s390x (0.2.99-1) ... 106s Selecting previously unselected package librust-wasm-bindgen-backend-dev:s390x. 106s Preparing to unpack .../422-librust-wasm-bindgen-backend-dev_0.2.99-1_s390x.deb ... 106s Unpacking librust-wasm-bindgen-backend-dev:s390x (0.2.99-1) ... 106s Selecting previously unselected package librust-wasm-bindgen-macro-support-dev:s390x. 106s Preparing to unpack .../423-librust-wasm-bindgen-macro-support-dev_0.2.99-1_s390x.deb ... 106s Unpacking librust-wasm-bindgen-macro-support-dev:s390x (0.2.99-1) ... 106s Selecting previously unselected package librust-wasm-bindgen-macro-dev:s390x. 106s Preparing to unpack .../424-librust-wasm-bindgen-macro-dev_0.2.99-1_s390x.deb ... 106s Unpacking librust-wasm-bindgen-macro-dev:s390x (0.2.99-1) ... 106s Selecting previously unselected package librust-wasm-bindgen-dev:s390x. 106s Preparing to unpack .../425-librust-wasm-bindgen-dev_0.2.99-1_s390x.deb ... 106s Unpacking librust-wasm-bindgen-dev:s390x (0.2.99-1) ... 106s Selecting previously unselected package librust-js-sys-dev:s390x. 106s Preparing to unpack .../426-librust-js-sys-dev_0.3.64-1_s390x.deb ... 106s Unpacking librust-js-sys-dev:s390x (0.3.64-1) ... 106s Selecting previously unselected package librust-libm-dev:s390x. 106s Preparing to unpack .../427-librust-libm-dev_0.2.8-1_s390x.deb ... 106s Unpacking librust-libm-dev:s390x (0.2.8-1) ... 106s Selecting previously unselected package librust-num-traits-dev:s390x. 106s Preparing to unpack .../428-librust-num-traits-dev_0.2.19-2_s390x.deb ... 106s Unpacking librust-num-traits-dev:s390x (0.2.19-2) ... 106s Selecting previously unselected package librust-pure-rust-locales-dev:s390x. 106s Preparing to unpack .../429-librust-pure-rust-locales-dev_0.8.1-1_s390x.deb ... 106s Unpacking librust-pure-rust-locales-dev:s390x (0.8.1-1) ... 106s Selecting previously unselected package librust-chrono-dev:s390x. 106s Preparing to unpack .../430-librust-chrono-dev_0.4.39-2_s390x.deb ... 106s Unpacking librust-chrono-dev:s390x (0.4.39-2) ... 106s Selecting previously unselected package librust-cpufeatures-dev:s390x. 106s Preparing to unpack .../431-librust-cpufeatures-dev_0.2.16-1_s390x.deb ... 106s Unpacking librust-cpufeatures-dev:s390x (0.2.16-1) ... 106s Selecting previously unselected package librust-thiserror-impl-dev:s390x. 106s Preparing to unpack .../432-librust-thiserror-impl-dev_2.0.11-1_s390x.deb ... 106s Unpacking librust-thiserror-impl-dev:s390x (2.0.11-1) ... 106s Selecting previously unselected package librust-thiserror-dev:s390x. 106s Preparing to unpack .../433-librust-thiserror-dev_2.0.11-1_s390x.deb ... 106s Unpacking librust-thiserror-dev:s390x (2.0.11-1) ... 106s Selecting previously unselected package librust-defmt-parser-dev:s390x. 106s Preparing to unpack .../434-librust-defmt-parser-dev_0.4.1-1_s390x.deb ... 106s Unpacking librust-defmt-parser-dev:s390x (0.4.1-1) ... 106s Selecting previously unselected package librust-proc-macro-error-attr2-dev:s390x. 106s Preparing to unpack .../435-librust-proc-macro-error-attr2-dev_2.0.0-1_s390x.deb ... 106s Unpacking librust-proc-macro-error-attr2-dev:s390x (2.0.0-1) ... 106s Selecting previously unselected package librust-proc-macro-error2-dev:s390x. 106s Preparing to unpack .../436-librust-proc-macro-error2-dev_2.0.1-1_s390x.deb ... 106s Unpacking librust-proc-macro-error2-dev:s390x (2.0.1-1) ... 106s Selecting previously unselected package librust-defmt-macros-dev:s390x. 106s Preparing to unpack .../437-librust-defmt-macros-dev_0.4.0-1_s390x.deb ... 106s Unpacking librust-defmt-macros-dev:s390x (0.4.0-1) ... 106s Selecting previously unselected package librust-defmt-dev:s390x. 106s Preparing to unpack .../438-librust-defmt-dev_0.3.10-1_s390x.deb ... 106s Unpacking librust-defmt-dev:s390x (0.3.10-1) ... 106s Selecting previously unselected package librust-powerfmt-macros-dev:s390x. 106s Preparing to unpack .../439-librust-powerfmt-macros-dev_0.1.0-1_s390x.deb ... 106s Unpacking librust-powerfmt-macros-dev:s390x (0.1.0-1) ... 106s Selecting previously unselected package librust-powerfmt-dev:s390x. 106s Preparing to unpack .../440-librust-powerfmt-dev_0.2.0-1_s390x.deb ... 106s Unpacking librust-powerfmt-dev:s390x (0.2.0-1) ... 107s Selecting previously unselected package librust-regex-syntax-dev:s390x. 107s Preparing to unpack .../441-librust-regex-syntax-dev_0.8.5-1_s390x.deb ... 107s Unpacking librust-regex-syntax-dev:s390x (0.8.5-1) ... 107s Selecting previously unselected package librust-regex-automata-dev:s390x. 107s Preparing to unpack .../442-librust-regex-automata-dev_0.4.9-2_s390x.deb ... 107s Unpacking librust-regex-automata-dev:s390x (0.4.9-2) ... 107s Selecting previously unselected package librust-regex-dev:s390x. 107s Preparing to unpack .../443-librust-regex-dev_1.11.1-2_s390x.deb ... 107s Unpacking librust-regex-dev:s390x (1.11.1-2) ... 107s Selecting previously unselected package librust-env-filter-dev:s390x. 107s Preparing to unpack .../444-librust-env-filter-dev_0.1.3-1_s390x.deb ... 107s Unpacking librust-env-filter-dev:s390x (0.1.3-1) ... 107s Selecting previously unselected package librust-humantime-dev:s390x. 107s Preparing to unpack .../445-librust-humantime-dev_2.1.0-2_s390x.deb ... 107s Unpacking librust-humantime-dev:s390x (2.1.0-2) ... 107s Selecting previously unselected package librust-env-logger-dev:s390x. 107s Preparing to unpack .../446-librust-env-logger-dev_0.11.5-2_s390x.deb ... 107s Unpacking librust-env-logger-dev:s390x (0.11.5-2) ... 107s Selecting previously unselected package librust-quickcheck-dev:s390x. 107s Preparing to unpack .../447-librust-quickcheck-dev_1.0.3-5_s390x.deb ... 107s Unpacking librust-quickcheck-dev:s390x (1.0.3-5) ... 107s Selecting previously unselected package librust-deranged-dev:s390x. 107s Preparing to unpack .../448-librust-deranged-dev_0.3.11-1_s390x.deb ... 107s Unpacking librust-deranged-dev:s390x (0.3.11-1) ... 107s Selecting previously unselected package librust-endi-dev:s390x. 107s Preparing to unpack .../449-librust-endi-dev_1.1.0-2build1_s390x.deb ... 107s Unpacking librust-endi-dev:s390x (1.1.0-2build1) ... 107s Selecting previously unselected package librust-enumflags2-derive-dev:s390x. 107s Preparing to unpack .../450-librust-enumflags2-derive-dev_0.7.10-1_s390x.deb ... 107s Unpacking librust-enumflags2-derive-dev:s390x (0.7.10-1) ... 107s Selecting previously unselected package librust-enumflags2-dev:s390x. 107s Preparing to unpack .../451-librust-enumflags2-dev_0.7.10-1_s390x.deb ... 107s Unpacking librust-enumflags2-dev:s390x (0.7.10-1) ... 107s Selecting previously unselected package librust-percent-encoding-dev:s390x. 107s Preparing to unpack .../452-librust-percent-encoding-dev_2.3.1-1_s390x.deb ... 107s Unpacking librust-percent-encoding-dev:s390x (2.3.1-1) ... 107s Selecting previously unselected package librust-form-urlencoded-dev:s390x. 107s Preparing to unpack .../453-librust-form-urlencoded-dev_1.2.1-1_s390x.deb ... 107s Unpacking librust-form-urlencoded-dev:s390x (1.2.1-1) ... 107s Selecting previously unselected package librust-futures-dev:s390x. 107s Preparing to unpack .../454-librust-futures-dev_0.3.30-2_s390x.deb ... 107s Unpacking librust-futures-dev:s390x (0.3.30-2) ... 107s Selecting previously unselected package librust-gdk-pixbuf-sys-dev:s390x. 107s Preparing to unpack .../455-librust-gdk-pixbuf-sys-dev_0.20.7-1_s390x.deb ... 107s Unpacking librust-gdk-pixbuf-sys-dev:s390x (0.20.7-1) ... 107s Selecting previously unselected package librust-gio-dev:s390x. 107s Preparing to unpack .../456-librust-gio-dev_0.20.7-1_s390x.deb ... 107s Unpacking librust-gio-dev:s390x (0.20.7-1) ... 107s Selecting previously unselected package librust-gdk-pixbuf-dev:s390x. 107s Preparing to unpack .../457-librust-gdk-pixbuf-dev_0.20.7-1_s390x.deb ... 107s Unpacking librust-gdk-pixbuf-dev:s390x (0.20.7-1) ... 107s Selecting previously unselected package librust-pango-sys-dev:s390x. 107s Preparing to unpack .../458-librust-pango-sys-dev_0.20.7-1_s390x.deb ... 107s Unpacking librust-pango-sys-dev:s390x (0.20.7-1) ... 107s Selecting previously unselected package librust-gdk4-sys-dev:s390x. 107s Preparing to unpack .../459-librust-gdk4-sys-dev_0.9.5-1_s390x.deb ... 107s Unpacking librust-gdk4-sys-dev:s390x (0.9.5-1) ... 107s Selecting previously unselected package librust-khronos-api-dev:s390x. 107s Preparing to unpack .../460-librust-khronos-api-dev_3.1.0-1_s390x.deb ... 107s Unpacking librust-khronos-api-dev:s390x (3.1.0-1) ... 107s Selecting previously unselected package librust-xml-rs-dev:s390x. 107s Preparing to unpack .../461-librust-xml-rs-dev_0.8.19-1build1_s390x.deb ... 107s Unpacking librust-xml-rs-dev:s390x (0.8.19-1build1) ... 107s Selecting previously unselected package librust-gl-generator-dev:s390x. 107s Preparing to unpack .../462-librust-gl-generator-dev_0.14.0-1_s390x.deb ... 107s Unpacking librust-gl-generator-dev:s390x (0.14.0-1) ... 107s Selecting previously unselected package librust-gl-dev:s390x. 107s Preparing to unpack .../463-librust-gl-dev_0.14.0-2_s390x.deb ... 107s Unpacking librust-gl-dev:s390x (0.14.0-2) ... 107s Selecting previously unselected package librust-pango-dev:s390x. 107s Preparing to unpack .../464-librust-pango-dev_0.20.7-1_s390x.deb ... 107s Unpacking librust-pango-dev:s390x (0.20.7-1) ... 107s Selecting previously unselected package librust-gdk4-dev:s390x. 107s Preparing to unpack .../465-librust-gdk4-dev_0.9.5-1_s390x.deb ... 107s Unpacking librust-gdk4-dev:s390x (0.9.5-1) ... 107s Selecting previously unselected package librust-hash32-dev:s390x. 107s Preparing to unpack .../466-librust-hash32-dev_0.3.1-2_s390x.deb ... 107s Unpacking librust-hash32-dev:s390x (0.3.1-2) ... 107s Selecting previously unselected package librust-ufmt-write-dev:s390x. 107s Preparing to unpack .../467-librust-ufmt-write-dev_0.1.0-1_s390x.deb ... 107s Unpacking librust-ufmt-write-dev:s390x (0.1.0-1) ... 107s Selecting previously unselected package librust-heapless-dev:s390x. 107s Preparing to unpack .../468-librust-heapless-dev_0.8.0-2_s390x.deb ... 107s Unpacking librust-heapless-dev:s390x (0.8.0-2) ... 107s Selecting previously unselected package librust-hex-dev:s390x. 107s Preparing to unpack .../469-librust-hex-dev_0.4.3-2_s390x.deb ... 107s Unpacking librust-hex-dev:s390x (0.4.3-2) ... 107s Selecting previously unselected package librust-unicode-bidi-dev:s390x. 107s Preparing to unpack .../470-librust-unicode-bidi-dev_0.3.17-1_s390x.deb ... 107s Unpacking librust-unicode-bidi-dev:s390x (0.3.17-1) ... 107s Selecting previously unselected package librust-unicode-normalization-dev:s390x. 107s Preparing to unpack .../471-librust-unicode-normalization-dev_0.1.22-1_s390x.deb ... 107s Unpacking librust-unicode-normalization-dev:s390x (0.1.22-1) ... 107s Selecting previously unselected package librust-idna-dev:s390x. 107s Preparing to unpack .../472-librust-idna-dev_0.4.0-1_s390x.deb ... 107s Unpacking librust-idna-dev:s390x (0.4.0-1) ... 107s Selecting previously unselected package librust-owning-ref-dev:s390x. 107s Preparing to unpack .../473-librust-owning-ref-dev_0.4.1-1_s390x.deb ... 107s Unpacking librust-owning-ref-dev:s390x (0.4.1-1) ... 107s Selecting previously unselected package librust-scopeguard-dev:s390x. 107s Preparing to unpack .../474-librust-scopeguard-dev_1.2.0-1_s390x.deb ... 107s Unpacking librust-scopeguard-dev:s390x (1.2.0-1) ... 107s Selecting previously unselected package librust-lock-api-dev:s390x. 107s Preparing to unpack .../475-librust-lock-api-dev_0.4.12-1_s390x.deb ... 107s Unpacking librust-lock-api-dev:s390x (0.4.12-1) ... 107s Selecting previously unselected package librust-md5-asm-dev:s390x. 107s Preparing to unpack .../476-librust-md5-asm-dev_0.5.0-2_s390x.deb ... 107s Unpacking librust-md5-asm-dev:s390x (0.5.0-2) ... 107s Selecting previously unselected package librust-md-5-dev:s390x. 107s Preparing to unpack .../477-librust-md-5-dev_0.10.6-1_s390x.deb ... 107s Unpacking librust-md-5-dev:s390x (0.10.6-1) ... 107s Selecting previously unselected package librust-memoffset-dev:s390x. 107s Preparing to unpack .../478-librust-memoffset-dev_0.8.0-1_s390x.deb ... 107s Unpacking librust-memoffset-dev:s390x (0.8.0-1) ... 107s Selecting previously unselected package librust-mio-dev:s390x. 107s Preparing to unpack .../479-librust-mio-dev_1.0.2-3_s390x.deb ... 107s Unpacking librust-mio-dev:s390x (1.0.2-3) ... 107s Selecting previously unselected package librust-nix-dev:s390x. 107s Preparing to unpack .../480-librust-nix-dev_0.29.0-2_s390x.deb ... 107s Unpacking librust-nix-dev:s390x (0.29.0-2) ... 107s Selecting previously unselected package librust-num-conv-dev:s390x. 107s Preparing to unpack .../481-librust-num-conv-dev_0.1.0-1_s390x.deb ... 107s Unpacking librust-num-conv-dev:s390x (0.1.0-1) ... 107s Selecting previously unselected package librust-num-threads-dev:s390x. 107s Preparing to unpack .../482-librust-num-threads-dev_0.1.7-1_s390x.deb ... 107s Unpacking librust-num-threads-dev:s390x (0.1.7-1) ... 107s Selecting previously unselected package librust-ordered-stream-dev:s390x. 107s Preparing to unpack .../483-librust-ordered-stream-dev_0.2.0-2_s390x.deb ... 107s Unpacking librust-ordered-stream-dev:s390x (0.2.0-2) ... 107s Selecting previously unselected package librust-parking-lot-dev:s390x. 107s Preparing to unpack .../484-librust-parking-lot-dev_0.12.3-1_s390x.deb ... 107s Unpacking librust-parking-lot-dev:s390x (0.12.3-1) ... 107s Selecting previously unselected package librust-serde-repr-dev:s390x. 107s Preparing to unpack .../485-librust-serde-repr-dev_0.1.12-1_s390x.deb ... 107s Unpacking librust-serde-repr-dev:s390x (0.1.12-1) ... 107s Selecting previously unselected package librust-sha1-asm-dev:s390x. 107s Preparing to unpack .../486-librust-sha1-asm-dev_0.5.1-2_s390x.deb ... 107s Unpacking librust-sha1-asm-dev:s390x (0.5.1-2) ... 107s Selecting previously unselected package librust-sha1-dev:s390x. 107s Preparing to unpack .../487-librust-sha1-dev_0.10.6-1_s390x.deb ... 107s Unpacking librust-sha1-dev:s390x (0.10.6-1) ... 107s Selecting previously unselected package librust-signal-hook-registry-dev:s390x. 107s Preparing to unpack .../488-librust-signal-hook-registry-dev_1.4.0-1_s390x.deb ... 107s Unpacking librust-signal-hook-registry-dev:s390x (1.4.0-1) ... 107s Selecting previously unselected package librust-socket2-dev:s390x. 107s Preparing to unpack .../489-librust-socket2-dev_0.5.8-1_s390x.deb ... 107s Unpacking librust-socket2-dev:s390x (0.5.8-1) ... 107s Selecting previously unselected package librust-tokio-macros-dev:s390x. 107s Preparing to unpack .../490-librust-tokio-macros-dev_2.5.0-1_s390x.deb ... 107s Unpacking librust-tokio-macros-dev:s390x (2.5.0-1) ... 107s Selecting previously unselected package librust-tokio-dev:s390x. 107s Preparing to unpack .../491-librust-tokio-dev_1.43.0-1_s390x.deb ... 107s Unpacking librust-tokio-dev:s390x (1.43.0-1) ... 107s Selecting previously unselected package librust-vsock-dev:s390x. 107s Preparing to unpack .../492-librust-vsock-dev_0.4.0-5_s390x.deb ... 107s Unpacking librust-vsock-dev:s390x (0.4.0-5) ... 107s Selecting previously unselected package librust-tokio-vsock-dev:s390x. 107s Preparing to unpack .../493-librust-tokio-vsock-dev_0.5.0-3_s390x.deb ... 107s Unpacking librust-tokio-vsock-dev:s390x (0.5.0-3) ... 107s Selecting previously unselected package librust-xdg-home-dev:s390x. 107s Preparing to unpack .../494-librust-xdg-home-dev_1.3.0-1_s390x.deb ... 107s Unpacking librust-xdg-home-dev:s390x (1.3.0-1) ... 107s Selecting previously unselected package librust-zvariant-utils-dev:s390x. 107s Preparing to unpack .../495-librust-zvariant-utils-dev_2.1.0-1_s390x.deb ... 107s Unpacking librust-zvariant-utils-dev:s390x (2.1.0-1) ... 107s Selecting previously unselected package librust-zbus-macros-dev:s390x. 107s Preparing to unpack .../496-librust-zbus-macros-dev_4.4.0-1_s390x.deb ... 107s Unpacking librust-zbus-macros-dev:s390x (4.4.0-1) ... 107s Selecting previously unselected package librust-serde-bytes-dev:s390x. 107s Preparing to unpack .../497-librust-serde-bytes-dev_0.11.12-1_s390x.deb ... 107s Unpacking librust-serde-bytes-dev:s390x (0.11.12-1) ... 107s Selecting previously unselected package librust-time-core-dev:s390x. 108s Preparing to unpack .../498-librust-time-core-dev_0.1.2-1_s390x.deb ... 108s Unpacking librust-time-core-dev:s390x (0.1.2-1) ... 108s Selecting previously unselected package librust-time-macros-dev:s390x. 108s Preparing to unpack .../499-librust-time-macros-dev_0.2.19-1_s390x.deb ... 108s Unpacking librust-time-macros-dev:s390x (0.2.19-1) ... 108s Selecting previously unselected package librust-time-dev:s390x. 108s Preparing to unpack .../500-librust-time-dev_0.3.37-1_s390x.deb ... 108s Unpacking librust-time-dev:s390x (0.3.37-1) ... 108s Selecting previously unselected package librust-url-dev:s390x. 108s Preparing to unpack .../501-librust-url-dev_2.5.2-1_s390x.deb ... 108s Unpacking librust-url-dev:s390x (2.5.2-1) ... 108s Selecting previously unselected package librust-slog-dev:s390x. 108s Preparing to unpack .../502-librust-slog-dev_2.7.0-1_s390x.deb ... 108s Unpacking librust-slog-dev:s390x (2.7.0-1) ... 108s Selecting previously unselected package librust-uuid-dev:s390x. 108s Preparing to unpack .../503-librust-uuid-dev_1.10.0-1_s390x.deb ... 108s Unpacking librust-uuid-dev:s390x (1.10.0-1) ... 108s Selecting previously unselected package librust-zvariant-derive-dev:s390x. 108s Preparing to unpack .../504-librust-zvariant-derive-dev_4.2.0-1_s390x.deb ... 108s Unpacking librust-zvariant-derive-dev:s390x (4.2.0-1) ... 108s Selecting previously unselected package librust-zvariant-dev:s390x. 108s Preparing to unpack .../505-librust-zvariant-dev_4.2.0-2_s390x.deb ... 108s Unpacking librust-zvariant-dev:s390x (4.2.0-2) ... 108s Selecting previously unselected package librust-zbus-names-dev:s390x. 108s Preparing to unpack .../506-librust-zbus-names-dev_3.0.0-3_s390x.deb ... 108s Unpacking librust-zbus-names-dev:s390x (3.0.0-3) ... 108s Selecting previously unselected package librust-zbus-dev:s390x. 108s Preparing to unpack .../507-librust-zbus-dev_4.4.0-3_s390x.deb ... 108s Unpacking librust-zbus-dev:s390x (4.4.0-3) ... 108s Selecting previously unselected package librust-search-provider-dev:s390x. 108s Preparing to unpack .../508-librust-search-provider-dev_0.10.0-2_s390x.deb ... 108s Unpacking librust-search-provider-dev:s390x (0.10.0-2) ... 108s Setting up librust-crossbeam-utils-dev:s390x (0.8.19-1) ... 108s Setting up librust-parking-dev:s390x (2.2.0-1) ... 108s Setting up libgraphite2-3:s390x (1.3.14-2ubuntu1) ... 108s Setting up libxcb-dri3-0:s390x (1.17.0-2) ... 108s Setting up libpixman-1-0:s390x (0.44.0-3) ... 108s Setting up libsharpyuv0:s390x (1.5.0-0.1) ... 108s Setting up libwayland-server0:s390x (1.23.1-1) ... 108s Setting up librust-pin-utils-dev:s390x (0.1.0-1) ... 108s Setting up libx11-xcb1:s390x (2:1.8.10-2) ... 108s Setting up librust-either-dev:s390x (1.13.0-1) ... 108s Setting up libpixman-1-dev:s390x (0.44.0-3) ... 108s Setting up native-architecture (0.2.5) ... 108s Setting up libxdamage1:s390x (1:1.1.6-1build1) ... 108s Setting up libxcb-xfixes0:s390x (1.17.0-2) ... 108s Setting up libzstd-dev:s390x (1.5.6+dfsg-2) ... 108s Setting up librust-adler-dev:s390x (1.0.2-2) ... 108s Setting up dh-cargo-tools (31ubuntu4) ... 108s Setting up librust-version-check-dev:s390x (0.9.5-1) ... 108s Setting up libglvnd-core-dev:s390x (1.7.0-1build1) ... 108s Setting up hicolor-icon-theme (0.18-2) ... 108s Setting up libxi6:s390x (2:1.8.2-1) ... 108s Setting up librust-anstyle-dev:s390x (1.0.8-1) ... 108s Setting up libxrender1:s390x (1:0.9.10-1.1build1) ... 108s Setting up libdatrie1:s390x (0.2.13-3build1) ... 108s Setting up libgirepository-2.0-0:s390x (2.83.3-2) ... 108s Setting up librust-futures-task-dev:s390x (0.3.31-3) ... 108s Setting up libxcb-render0:s390x (1.17.0-2) ... 108s Setting up librust-wasm-bindgen-shared-dev:s390x (0.2.99-1) ... 108s Setting up libarchive-zip-perl (1.68-1) ... 108s Setting up librust-colorchoice-dev:s390x (1.0.0-1) ... 108s Setting up libdrm-radeon1:s390x (2.4.123-1) ... 108s Setting up libglvnd0:s390x (1.7.0-1build1) ... 108s Setting up librust-fastrand-dev:s390x (2.1.1-1) ... 108s Setting up libfribidi-dev:s390x (1.0.16-1) ... 108s Setting up libxcb-glx0:s390x (1.17.0-2) ... 108s Setting up libxkbcommon-dev:s390x (1.7.0-2) ... 108s Setting up libdebhelper-perl (13.24.1ubuntu2) ... 108s Setting up librust-endi-dev:s390x (1.1.0-2build1) ... 108s Setting up libgdk-pixbuf2.0-common (2.42.12+dfsg-2) ... 108s Setting up librust-libm-dev:s390x (0.2.8-1) ... 108s Setting up librust-typed-arena-dev:s390x (2.0.2-1) ... 108s Setting up x11-common (1:7.7+23ubuntu3) ... 108s Setting up libdeflate0:s390x (1.23-1) ... 108s Setting up libwebpdecoder3:s390x (1.5.0-0.1) ... 108s Setting up libglib2.0-bin (2.83.3-2) ... 108s Setting up libcpdb2t64:s390x (2.0~b5-1.2build1) ... 108s Setting up m4 (1.4.19-5) ... 108s Setting up librust-rustc-demangle-dev:s390x (0.1.24-1) ... 108s Setting up librust-fallible-iterator-dev:s390x (0.3.0-2) ... 108s Setting up libxcb-shm0:s390x (1.17.0-2) ... 108s Setting up librust-ryu-dev:s390x (1.0.19-1) ... 108s Setting up libcpdb-frontend2t64:s390x (2.0~b5-1.2build1) ... 108s Setting up librust-humantime-dev:s390x (2.1.0-2) ... 108s Setting up librust-anstyle-query-dev:s390x (1.0.0-1) ... 108s Setting up libgomp1:s390x (14.2.0-16ubuntu1) ... 108s Setting up librust-subtle-dev:s390x (2.6.1-1) ... 108s Setting up libffi-dev:s390x (3.4.6-1build1) ... 108s Setting up librust-atomic-waker-dev:s390x (1.1.2-1) ... 108s Setting up librust-miniz-oxide-dev:s390x (0.7.1-1) ... 108s Setting up librust-pin-project-lite-dev:s390x (0.2.13-1) ... 108s Setting up libjbig0:s390x (2.1-6.1ubuntu2) ... 108s Setting up librust-xml-rs-dev:s390x (0.8.19-1build1) ... 108s Setting up libpcre2-16-0:s390x (10.42-4ubuntu3) ... 108s Setting up libopengl0:s390x (1.7.0-1build1) ... 108s Setting up libxxf86vm1:s390x (1:1.1.4-1build4) ... 108s Setting up librust-ufmt-write-dev:s390x (0.1.0-1) ... 108s Setting up libxcb-present0:s390x (1.17.0-2) ... 108s Setting up libdconf1:s390x (0.40.0-5) ... 108s Setting up librust-unicode-segmentation-dev:s390x (1.12.0-1) ... 108s Setting up libsysprof-capture-4-dev:s390x (48~beta-2) ... 108s Setting up librust-compiler-builtins-dev:s390x (0.1.139-1) ... 108s Setting up librust-utf8parse-dev:s390x (0.2.1-1) ... 108s Setting up librust-crossbeam-epoch-dev:s390x (0.9.18-1) ... 108s Setting up xtrans-dev (1.4.0-1) ... 108s Setting up libwayland-bin (1.23.1-1) ... 108s Setting up libgraphite2-dev:s390x (1.3.14-2ubuntu1) ... 108s Setting up autotools-dev (20220109.1) ... 108s Setting up libpcre2-32-0:s390x (10.42-4ubuntu3) ... 108s Setting up python3-packaging (24.2-1) ... 108s Setting up libpkgconf3:s390x (1.8.1-4) ... 108s Setting up libgles2:s390x (1.7.0-1build1) ... 108s Setting up libexpat1-dev:s390x (2.6.4-1) ... 108s Setting up libfreetype6:s390x (2.13.3+dfsg-1) ... 108s Setting up librust-rustc-std-workspace-core-dev:s390x (1.0.0-1) ... 108s Setting up libepoxy0:s390x (1.5.10-2) ... 108s Setting up libxfixes3:s390x (1:6.0.0-2build1) ... 108s Setting up libxcb-sync1:s390x (1.17.0-2) ... 108s Setting up librust-futures-io-dev:s390x (0.3.31-1) ... 108s Setting up librust-typenum-dev:s390x (1.17.0-2) ... 108s Setting up librust-khronos-api-dev:s390x (3.1.0-1) ... 108s Setting up uuid-dev:s390x (2.40.2-14ubuntu1) ... 108s Setting up librust-stable-deref-trait-dev:s390x (1.2.0-1) ... 108s Setting up libgles1:s390x (1.7.0-1build1) ... 108s Setting up librust-critical-section-dev:s390x (1.2.0-1) ... 108s Setting up libxinerama1:s390x (2:1.1.4-3build1) ... 108s Setting up librust-scopeguard-dev:s390x (1.2.0-1) ... 108s Setting up librust-iana-time-zone-dev:s390x (0.1.60-1) ... 108s Setting up fonts-dejavu-mono (2.37-8) ... 108s Setting up libmpc3:s390x (1.3.1-1build2) ... 108s Setting up librust-rand-core-dev:s390x (0.6.4-2) ... 108s Setting up libxrandr2:s390x (2:1.5.4-1) ... 108s Setting up librust-version-compare-dev:s390x (0.1.1-1) ... 108s Setting up autopoint (0.23.1-1) ... 108s Setting up icu-devtools (76.1-1ubuntu2) ... 108s Setting up fonts-dejavu-core (2.37-8) ... 108s Setting up libsepol-dev:s390x (3.7-1) ... 108s Setting up pkgconf-bin (1.8.1-4) ... 108s Setting up libjpeg-turbo8:s390x (2.1.5-3ubuntu2) ... 108s Setting up librust-time-core-dev:s390x (0.1.2-1) ... 108s Setting up librust-crunchy-dev:s390x (0.2.2-1) ... 108s Setting up libgit2-1.9:s390x (1.9.0~ds-0ubuntu1) ... 108s Setting up libglapi-mesa:s390x (24.3.4-3ubuntu1) ... 108s Setting up libvulkan1:s390x (1.4.304.0-1) ... 108s Setting up autoconf (2.72-3) ... 108s Setting up libwebp7:s390x (1.5.0-0.1) ... 108s Setting up libstd-rust-1.84:s390x (1.84.0+dfsg0ubuntu1-0ubuntu1) ... 108s Setting up liblzma-dev:s390x (5.6.3-1) ... 108s Setting up libubsan1:s390x (14.2.0-16ubuntu1) ... 108s Setting up zlib1g-dev:s390x (1:1.3.dfsg+really1.3.1-1ubuntu1) ... 108s Setting up librust-unicode-ident-dev:s390x (1.0.13-1) ... 108s Setting up librust-equivalent-dev:s390x (1.0.1-1) ... 108s Setting up libpcre2-posix3:s390x (10.42-4ubuntu3) ... 108s Setting up dwz (0.15-1build6) ... 108s Setting up librust-bitflags-1-dev:s390x (1.3.2-7) ... 108s Setting up wayland-protocols (1.40-1) ... 108s Setting up librust-slog-dev:s390x (2.7.0-1) ... 108s Setting up gir1.2-glib-2.0-dev:s390x (2.83.3-2) ... 108s Setting up libxshmfence1:s390x (1.3-1build5) ... 108s Setting up librust-pure-rust-locales-dev:s390x (0.8.1-1) ... 108s Setting up libxcb-randr0:s390x (1.17.0-2) ... 108s Setting up libasan8:s390x (14.2.0-16ubuntu1) ... 108s Setting up libstd-rust-1.84-dev:s390x (1.84.0+dfsg0ubuntu1-0ubuntu1) ... 108s Setting up librust-cfg-if-dev:s390x (1.0.0-1) ... 108s Setting up debugedit (1:5.1-2) ... 108s Setting up libharfbuzz0b:s390x (10.2.0-1) ... 108s Setting up libthai-data (0.1.29-2build1) ... 108s Setting up xorg-sgml-doctools (1:1.11-1.1) ... 108s Setting up librust-blobby-dev:s390x (0.3.1-1) ... 108s Setting up librust-percent-encoding-dev:s390x (2.3.1-1) ... 108s Setting up librust-byteorder-dev:s390x (1.5.0-1) ... 108s Setting up libwayland-egl1:s390x (1.23.1-1) ... 108s Setting up libxss1:s390x (1:1.2.3-1build3) ... 108s Setting up librust-static-assertions-dev:s390x (1.1.0-1) ... 108s Setting up libopengl-dev:s390x (1.7.0-1build1) ... 108s Setting up librust-compiler-builtins+core-dev:s390x (0.1.139-1) ... 108s Setting up librust-autocfg-dev:s390x (1.1.0-1) ... 108s Setting up libisl23:s390x (0.27-1) ... 108s Setting up librust-futures-sink-dev:s390x (0.3.31-1) ... 108s Setting up libsharpyuv-dev:s390x (1.5.0-0.1) ... 108s Setting up librust-cfg-aliases-dev:s390x (0.2.1-1) ... 108s Setting up libwebpmux3:s390x (1.5.0-0.1) ... 108s Setting up libdeflate-dev:s390x (1.23-1) ... 108s Setting up librust-hex-dev:s390x (0.4.3-2) ... 108s Setting up libxcomposite1:s390x (1:0.4.6-1) ... 108s Setting up librust-shlex-dev:s390x (1.3.0-1) ... 108s Setting up libicu-dev:s390x (76.1-1ubuntu2) ... 108s Setting up librust-cpp-demangle-dev:s390x (0.4.0-1) ... 108s Setting up libcc1-0:s390x (14.2.0-16ubuntu1) ... 108s Setting up libbrotli-dev:s390x (1.1.0-2build3) ... 108s Setting up libgraphene-1.0-0:s390x (1.10.8-5) ... 108s Setting up libitm1:s390x (14.2.0-16ubuntu1) ... 108s Setting up librust-heck-dev:s390x (0.4.1-1) ... 108s Setting up libbz2-dev:s390x (1.0.8-6) ... 108s Setting up librust-num-conv-dev:s390x (0.1.0-1) ... 108s Setting up libwayland-client0:s390x (1.23.1-1) ... 108s Setting up libjpeg8:s390x (8c-2ubuntu11) ... 108s Setting up gir1.2-graphene-1.0:s390x (1.10.8-5) ... 108s Setting up automake (1:1.17-3) ... 108s update-alternatives: using /usr/bin/automake-1.17 to provide /usr/bin/automake (automake) in auto mode 108s Setting up x11proto-dev (2024.1-1) ... 108s Setting up libfile-stripnondeterminism-perl (1.14.1-2) ... 108s Setting up librust-crossbeam-epoch+std-dev:s390x (0.9.18-1) ... 108s Setting up libblkid-dev:s390x (2.40.2-14ubuntu1) ... 108s Setting up librust-form-urlencoded-dev:s390x (1.2.1-1) ... 108s Setting up librust-libc-dev:s390x (0.2.169-1) ... 108s Setting up libice6:s390x (2:1.1.1-1) ... 108s Setting up mesa-libgallium:s390x (24.3.4-3ubuntu1) ... 108s Setting up libjpeg-turbo8-dev:s390x (2.1.5-3ubuntu2) ... 108s Setting up libgio-2.0-dev-bin (2.83.3-2) ... 108s Setting up libvulkan-dev:s390x (1.4.304.0-1) ... 108s Setting up gettext (0.23.1-1) ... 108s Setting up libharfbuzz-icu0:s390x (10.2.0-1) ... 108s Setting up girepository-tools:s390x (2.83.3-2) ... 108s Setting up librust-crossbeam-deque-dev:s390x (0.8.5-1) ... 108s Setting up librust-xdg-home-dev:s390x (1.3.0-1) ... 108s Setting up libxau-dev:s390x (1:1.0.11-1) ... 108s Setting up librust-tiny-keccak-dev:s390x (2.0.2-1) ... 108s Setting up libpcre2-dev:s390x (10.42-4ubuntu3) ... 108s Setting up libice-dev:s390x (2:1.1.1-1) ... 108s Setting up libgbm1:s390x (24.3.4-3ubuntu1) ... 108s Setting up librust-linux-raw-sys-dev:s390x (0.4.14-1) ... 108s Setting up libselinux1-dev:s390x (3.7-3ubuntu2) ... 108s Setting up fontconfig-config (2.15.0-1.1ubuntu2) ... 108s Setting up librust-getrandom-dev:s390x (0.2.15-1) ... 108s Setting up libxtst6:s390x (2:1.2.5-1) ... 108s Setting up librust-socket2-dev:s390x (0.5.8-1) ... 108s Setting up librust-memmap2-dev:s390x (0.9.5-1) ... 108s Setting up libwebpdemux2:s390x (1.5.0-0.1) ... 108s Setting up libxcursor1:s390x (1:1.2.3-1) ... 108s Setting up libgl1-mesa-dri:s390x (24.3.4-3ubuntu1) ... 108s Setting up libpng-dev:s390x (1.6.46-4) ... 108s Setting up librust-owning-ref-dev:s390x (0.4.1-1) ... 108s Setting up librust-num-cpus-dev:s390x (1.16.0-1) ... 108s Setting up librust-memoffset-dev:s390x (0.8.0-1) ... 108s Setting up libjbig-dev:s390x (2.1-6.1ubuntu2) ... 108s Setting up librust-cpufeatures-dev:s390x (0.2.16-1) ... 108s Setting up librust-hash32-dev:s390x (0.3.1-2) ... 108s Setting up dconf-service (0.40.0-5) ... 108s Setting up libharfbuzz-gobject0:s390x (10.2.0-1) ... 108s Setting up librust-proc-macro2-dev:s390x (1.0.92-1) ... 108s Setting up librust-compiler-builtins+rustc-dep-of-std-dev:s390x (0.1.139-1) ... 108s Setting up librust-rayon-core-dev:s390x (1.12.1-1) ... 108s Setting up pkgconf:s390x (1.8.1-4) ... 108s Setting up libfreetype-dev:s390x (2.13.3+dfsg-1) ... 108s Setting up intltool-debian (0.35.0+20060710.6) ... 108s Setting up librust-rand-core+getrandom-dev:s390x (0.6.4-2) ... 108s Setting up libthai0:s390x (0.1.29-2build1) ... 108s Setting up librust-signal-hook-registry-dev:s390x (1.4.0-1) ... 108s Setting up libxdmcp-dev:s390x (1:1.1.3-0ubuntu6) ... 108s Setting up libegl-mesa0:s390x (24.3.4-3ubuntu1) ... 108s Setting up libwebp-dev:s390x (1.5.0-0.1) ... 108s Setting up librust-errno-dev:s390x (0.3.8-1) ... 108s Setting up librust-jobserver-dev:s390x (0.1.32-1) ... 108s Setting up cpp-14-s390x-linux-gnu (14.2.0-16ubuntu1) ... 108s Setting up cpp-14 (14.2.0-16ubuntu1) ... 108s Setting up dh-strip-nondeterminism (1.14.1-2) ... 108s Setting up librust-crc32fast-dev:s390x (1.4.2-1) ... 108s Setting up libdatrie-dev:s390x (0.2.13-3build1) ... 108s Setting up libtiff6:s390x (4.5.1+git230720-4ubuntu4) ... 108s Setting up libwayland-cursor0:s390x (1.23.1-1) ... 108s Setting up librust-num-traits-dev:s390x (0.2.19-2) ... 108s Setting up libegl1:s390x (1.7.0-1build1) ... 108s Setting up libharfbuzz-subset0:s390x (10.2.0-1) ... 108s Setting up libgdk-pixbuf-2.0-0:s390x (2.42.12+dfsg-2) ... 109s Setting up libfontconfig1:s390x (2.15.0-1.1ubuntu2) ... 109s Setting up libgcc-14-dev:s390x (14.2.0-16ubuntu1) ... 109s Setting up libjpeg8-dev:s390x (8c-2ubuntu11) ... 109s Setting up librust-rayon-dev:s390x (1.10.0-1) ... 109s Setting up librust-time-macros-dev:s390x (0.2.19-1) ... 109s Setting up librust-pkg-config-dev:s390x (0.3.31-1) ... 109s Setting up libtiffxx6:s390x (4.5.1+git230720-4ubuntu4) ... 109s Setting up libsm6:s390x (2:1.2.4-1) ... 109s Setting up libmount-dev:s390x (2.40.2-14ubuntu1) ... 109s Setting up libglib2.0-dev-bin (2.83.3-2) ... 109s Setting up librust-num-threads-dev:s390x (0.1.7-1) ... 109s Setting up gtk-update-icon-cache (4.17.1+ds-2ubuntu1) ... 109s Setting up fontconfig (2.15.0-1.1ubuntu2) ... 111s Regenerating fonts cache... done. 111s Setting up libxft2:s390x (2.3.6-1build1) ... 111s Setting up libgio-2.0-dev:s390x (2.83.3-2) ... 111s Setting up libglx-mesa0:s390x (24.3.4-3ubuntu1) ... 111s Setting up libxcb1-dev:s390x (1.17.0-2) ... 111s Setting up libglx0:s390x (1.7.0-1build1) ... 111s Setting up dconf-gsettings-backend:s390x (0.40.0-5) ... 111s Setting up gir1.2-gdkpixbuf-2.0:s390x (2.42.12+dfsg-2) ... 111s Setting up cpp-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 111s Setting up libfontconfig-dev:s390x (2.15.0-1.1ubuntu2) ... 111s Setting up libsm-dev:s390x (2:1.2.4-1) ... 111s Setting up po-debconf (1.0.21+nmu1) ... 111s Setting up librust-quote-dev:s390x (1.0.37-1) ... 111s Setting up libpango-1.0-0:s390x (1.56.1-1) ... 111s Setting up libjpeg-dev:s390x (8c-2ubuntu11) ... 111s Setting up libx11-dev:s390x (2:1.8.10-2) ... 111s Setting up librust-proc-macro-error-attr2-dev:s390x (2.0.0-1) ... 111s Setting up librust-libz-sys-dev:s390x (1.1.20-1) ... 111s Setting up librust-syn-dev:s390x (2.0.96-2) ... 111s Setting up librust-rand-core+std-dev:s390x (0.6.4-2) ... 111s Setting up librust-powerfmt-macros-dev:s390x (0.1.0-1) ... 111s Setting up libwayland-dev:s390x (1.23.1-1) ... 111s Setting up libcairo2:s390x (1.18.2-2) ... 111s Setting up libxfixes-dev:s390x (1:6.0.0-2build1) ... 111s Setting up libxcb-shm0-dev:s390x (1.17.0-2) ... 111s Setting up gcc-14-s390x-linux-gnu (14.2.0-16ubuntu1) ... 111s Setting up libgl1:s390x (1.7.0-1build1) ... 111s Setting up gcc-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 111s Setting up libharfbuzz-cairo0:s390x (10.2.0-1) ... 111s Setting up librust-powerfmt-dev:s390x (0.2.0-1) ... 111s Setting up libtiff-dev:s390x (4.5.1+git230720-4ubuntu4) ... 111s Setting up librust-sval-derive-dev:s390x (2.6.1-2) ... 111s Setting up librust-cc-dev:s390x (1.1.14-1) ... 111s Setting up libxt6t64:s390x (1:1.2.1-1.2build1) ... 111s Setting up librust-zeroize-derive-dev:s390x (1.4.2-1) ... 111s Setting up libxcb-render0-dev:s390x (1.17.0-2) ... 111s Setting up librust-syn-1-dev:s390x (1.0.109-3) ... 111s Setting up librust-enumflags2-derive-dev:s390x (0.7.10-1) ... 111s Setting up libxext-dev:s390x (2:1.3.4-1build2) ... 111s Setting up libthai-dev:s390x (0.1.29-2build1) ... 111s Setting up librust-async-trait-dev:s390x (0.1.83-1) ... 111s Setting up librust-proc-macro-error2-dev:s390x (2.0.1-1) ... 111s Setting up libgdk-pixbuf2.0-bin (2.42.12+dfsg-2) ... 111s Setting up librust-no-panic-dev:s390x (0.1.32-1) ... 111s Setting up cpp (4:14.2.0-1ubuntu1) ... 111s Setting up libglx-dev:s390x (1.7.0-1build1) ... 111s Setting up librust-serde-derive-dev:s390x (1.0.217-1) ... 111s Setting up libcairo-gobject2:s390x (1.18.2-2) ... 111s Setting up librust-zerocopy-derive-dev:s390x (0.7.34-1) ... 111s Setting up librust-sha1-asm-dev:s390x (0.5.1-2) ... 111s Setting up libgtk-4-common (4.17.1+ds-2ubuntu1) ... 111s Setting up librust-valuable-derive-dev:s390x (0.1.0-1) ... 111s Setting up libpangoft2-1.0-0:s390x (1.56.1-1) ... 111s Setting up libxi-dev:s390x (2:1.8.2-1) ... 111s Setting up librust-zvariant-utils-dev:s390x (2.1.0-1) ... 111s Setting up librust-serde-dev:s390x (1.0.217-1) ... 111s Setting up librust-bytemuck-derive-dev:s390x (1.5.0-2) ... 111s Setting up libxrender-dev:s390x (1:0.9.10-1.1build1) ... 111s Setting up librust-derive-arbitrary-dev:s390x (1.4.1-1) ... 111s Setting up libgl-dev:s390x (1.7.0-1build1) ... 111s Setting up libpangocairo-1.0-0:s390x (1.56.1-1) ... 111s Setting up librust-allocator-api2-dev:s390x (0.2.16-1) ... 111s Setting up libxft-dev:s390x (2.3.6-1build1) ... 111s Setting up libxtst-dev:s390x (2:1.2.5-1) ... 111s Setting up libxdamage-dev:s390x (1:1.1.6-1build1) ... 111s Setting up librust-thiserror-impl-dev:s390x (2.0.11-1) ... 111s Setting up libcairo-script-interpreter2:s390x (1.18.2-2) ... 111s Setting up librust-futures-macro-dev:s390x (0.3.31-1) ... 111s Setting up libx11-xcb-dev:s390x (2:1.8.10-2) ... 111s Setting up libxmu-headers (2:1.1.3-3build2) ... 111s Setting up libxmu6:s390x (2:1.1.3-3build2) ... 111s Setting up gir1.2-freedesktop:s390x (1.82.0-4) ... 111s Setting up librust-thiserror-dev:s390x (2.0.11-1) ... 111s Setting up libfontconfig1-dev:s390x (2.15.0-1.1ubuntu2) ... 111s Setting up librust-tracing-attributes-dev:s390x (0.1.27-1) ... 111s Setting up libpangoxft-1.0-0:s390x (1.56.1-1) ... 111s Setting up libegl-dev:s390x (1.7.0-1build1) ... 111s Setting up librust-serde-fmt-dev (1.0.3-4) ... 111s Setting up librust-serde-bytes-dev:s390x (0.11.12-1) ... 111s Setting up libxcomposite-dev:s390x (1:0.4.6-1) ... 111s Setting up libxcursor-dev:s390x (1:1.2.3-1) ... 111s Setting up libxxf86vm-dev:s390x (1:1.1.4-1build4) ... 111s Setting up libepoxy-dev:s390x (1.5.10-2) ... 111s Setting up librust-toml-datetime-dev:s390x (0.6.8-1) ... 111s Setting up librust-portable-atomic-dev:s390x (1.10.0-3) ... 111s Setting up pango1.0-tools (1.56.1-1) ... 111s Setting up librust-tokio-macros-dev:s390x (2.5.0-1) ... 111s Setting up librust-serde-repr-dev:s390x (0.1.12-1) ... 111s Setting up librust-flate2-dev:s390x (1.0.34-1) ... 111s Setting up librust-freetype-sys-dev:s390x (0.20.1-1) ... 111s Setting up librust-lock-api-dev:s390x (0.4.12-1) ... 111s Setting up libxss-dev:s390x (1:1.2.3-1build3) ... 111s Setting up gir1.2-harfbuzz-0.0:s390x (10.2.0-1) ... 111s Setting up librust-sval-dev:s390x (2.6.1-2) ... 111s Setting up librust-itoa-dev:s390x (1.0.14-1) ... 111s Setting up gcc-14 (14.2.0-16ubuntu1) ... 111s Setting up librust-bytes-dev:s390x (1.9.0-1) ... 111s Setting up librust-bumpalo-dev:s390x (3.16.0-1) ... 111s Setting up gir1.2-pango-1.0:s390x (1.56.1-1) ... 111s Setting up libxrandr-dev:s390x (2:1.5.4-1) ... 111s Setting up librust-rand-core+serde-dev:s390x (0.6.4-2) ... 111s Setting up librust-sval-ref-dev:s390x (2.6.1-1) ... 111s Setting up libxt-dev:s390x (1:1.2.1-1.2build1) ... 111s Setting up librust-zerocopy-dev:s390x (0.7.34-1) ... 111s Setting up librust-md5-asm-dev:s390x (0.5.0-2) ... 111s Setting up gir1.2-freedesktop-dev:s390x (1.82.0-4) ... 111s Setting up librust-bytemuck-dev:s390x (1.21.0-1) ... 111s Setting up librust-enumflags2-dev:s390x (0.7.10-1) ... 111s Setting up libxinerama-dev:s390x (2:1.1.4-3build1) ... 111s Setting up librust-zeroize-dev:s390x (1.8.1-1) ... 111s Setting up librust-serde-spanned-dev:s390x (0.6.7-1) ... 111s Setting up librust-slab-dev:s390x (0.4.9-1) ... 111s Setting up librust-arbitrary-dev:s390x (1.4.1-1) ... 111s Setting up librust-valuable-dev:s390x (0.1.0-4) ... 111s Setting up librust-target-lexicon-dev:s390x (0.12.14-1) ... 111s Setting up librust-serde-test-dev:s390x (1.0.171-1) ... 111s Setting up librust-concurrent-queue-dev:s390x (2.5.0-4) ... 111s Setting up librust-erased-serde-dev:s390x (0.3.31-1) ... 111s Setting up librust-kstring-dev:s390x (2.0.0-1) ... 111s Setting up libgles-dev:s390x (1.7.0-1build1) ... 111s Setting up librust-defmt-parser-dev:s390x (0.4.1-1) ... 111s Setting up librust-atomic-dev:s390x (0.6.0-1) ... 111s Setting up librust-defmt-macros-dev:s390x (0.4.0-1) ... 111s Setting up librust-generic-array-dev:s390x (0.14.7-1) ... 111s Setting up librust-ppv-lite86-dev:s390x (0.2.20-1) ... 111s Setting up librust-rand-chacha-dev:s390x (0.3.1-2) ... 111s Setting up librust-sval-dynamic-dev:s390x (2.6.1-1) ... 111s Setting up librust-async-task-dev (4.7.1-4) ... 111s Setting up librust-crypto-common-dev:s390x (0.1.6-1) ... 111s Setting up librust-futures-core-dev:s390x (0.3.31-1) ... 111s Setting up libtool (2.5.4-3build1) ... 111s Setting up librust-sval-buffer-dev:s390x (2.6.1-1) ... 111s Setting up librust-arrayvec-dev:s390x (0.7.6-1) ... 111s Setting up librust-event-listener-dev (5.4.0-3) ... 111s Setting up libglvnd-dev:s390x (1.7.0-1build1) ... 111s Setting up librust-smallvec-dev:s390x (1.13.2-1) ... 111s Setting up librust-sval-fmt-dev:s390x (2.6.1-1) ... 111s Setting up libxmu-dev:s390x (2:1.1.3-3build2) ... 111s Setting up librust-const-oid-dev:s390x (0.9.6-1) ... 111s Setting up gcc (4:14.2.0-1ubuntu1) ... 111s Setting up librust-anstyle-parse-dev:s390x (0.2.1-1) ... 111s Setting up dh-autoreconf (20) ... 111s Setting up librust-block-buffer-dev:s390x (0.10.2-2) ... 111s Setting up librust-unicode-normalization-dev:s390x (0.1.22-1) ... 111s Setting up librust-anstream-dev:s390x (0.6.15-1) ... 111s Setting up librust-bitflags-dev:s390x (2.8.0-1) ... 111s Setting up rustc-1.84 (1.84.0+dfsg0ubuntu1-0ubuntu1) ... 111s Setting up librust-regex-syntax-dev:s390x (0.8.5-1) ... 111s Setting up rustc (1.84.0ubuntu1) ... 111s Setting up librust-parking-lot-core-dev:s390x (0.9.10-1) ... 111s Setting up librust-defmt-dev:s390x (0.3.10-1) ... 111s Setting up librust-heapless-dev:s390x (0.8.0-2) ... 111s Setting up librust-cfg-expr-dev:s390x (0.15.8-1) ... 111s Setting up librust-futures-channel-dev:s390x (0.3.31-1) ... 111s Setting up librust-once-cell-dev:s390x (1.20.2-1) ... 111s Setting up librust-ordered-stream-dev:s390x (0.2.0-2) ... 111s Setting up libegl1-mesa-dev:s390x (24.3.4-3ubuntu1) ... 111s Setting up librust-digest-dev:s390x (0.10.7-2) ... 111s Setting up librust-nix-dev:s390x (0.29.0-2) ... 111s Setting up librust-md-5-dev:s390x (0.10.6-1) ... 111s Setting up librust-sval-serde-dev:s390x (2.6.1-1) ... 111s Setting up librust-unicode-bidi-dev:s390x (0.3.17-1) ... 111s Setting up librust-parking-lot-dev:s390x (0.12.3-1) ... 111s Setting up cargo-1.84 (1.84.0+dfsg0ubuntu1-0ubuntu1) ... 111s Setting up librust-event-listener-strategy-dev:s390x (0.5.3-1) ... 111s Setting up librust-x11-dev:s390x (2.19.1-1) ... 111s Setting up librust-const-random-macro-dev:s390x (0.1.16-2) ... 111s Setting up librust-const-random-dev:s390x (0.1.17-2) ... 111s Setting up librust-freetype-rs-dev:s390x (0.36.0-2) ... 111s Setting up librust-sha1-dev:s390x (0.10.6-1) ... 111s Setting up librust-vsock-dev:s390x (0.4.0-5) ... 111s Setting up debhelper (13.24.1ubuntu2) ... 111s Setting up librust-ahash-dev (0.8.11-9) ... 111s Setting up librust-async-channel-dev (2.3.1-9) ... 111s Setting up librust-tracing-core-dev:s390x (0.1.32-1) ... 111s Setting up cargo (1.84.0ubuntu1) ... 111s Setting up dh-cargo (31ubuntu4) ... 111s Setting up librust-async-lock-dev (3.4.0-5) ... 111s Setting up librust-idna-dev:s390x (0.4.0-1) ... 111s Setting up librust-async-broadcast-dev:s390x (0.7.1-1) ... 111s Setting up librust-rustix-dev:s390x (0.38.37-1) ... 111s Setting up librust-value-bag-sval2-dev:s390x (1.9.0-1) ... 111s Setting up librust-url-dev:s390x (2.5.2-1) ... 111s Setting up librust-hashbrown-dev:s390x (0.14.5-5) ... 111s Setting up librust-indexmap-dev:s390x (2.7.0-1) ... 111s Setting up librust-gimli-dev:s390x (0.31.1-2) ... 111s Setting up adwaita-icon-theme (48~beta-2) ... 111s update-alternatives: using /usr/share/icons/Adwaita/cursor.theme to provide /usr/share/icons/default/index.theme (x-cursor-theme) in auto mode 111s Setting up librust-serde-json-dev:s390x (1.0.133-1) ... 111s Setting up humanity-icon-theme (0.6.16) ... 111s Setting up librust-value-bag-serde1-dev:s390x (1.9.0-1) ... 111s Setting up ubuntu-mono (24.04-0ubuntu1) ... 111s Setting up librust-value-bag-dev:s390x (1.9.0-1) ... 111s Setting up librust-log-dev:s390x (0.4.22-1) ... 111s Setting up librust-tracing-dev:s390x (0.1.40-1) ... 111s Setting up librust-polling-dev:s390x (3.4.0-1) ... 111s Setting up librust-memchr-dev:s390x (2.7.4-1) ... 111s Setting up librust-futures-util-dev:s390x (0.3.31-1) ... 111s Setting up librust-futures-lite-dev:s390x (2.3.0-2) ... 111s Setting up librust-rand-dev:s390x (0.8.5-1) ... 111s Setting up librust-mio-dev:s390x (1.0.2-3) ... 111s Setting up librust-gl-generator-dev:s390x (0.14.0-1) ... 111s Setting up librust-wasm-bindgen-backend-dev:s390x (0.2.99-1) ... 111s Setting up librust-twox-hash-dev:s390x (1.6.3-1) ... 111s Setting up librust-wasm-bindgen-macro-support-dev:s390x (0.2.99-1) ... 111s Setting up librust-wasm-bindgen-macro-dev:s390x (0.2.99-1) ... 111s Setting up librust-async-executor-dev (1.13.1-2) ... 111s Setting up librust-uuid-dev:s390x (1.10.0-1) ... 111s Setting up librust-ruzstd-dev:s390x (0.7.3-2) ... 111s Setting up librust-winnow-dev:s390x (0.6.18-1) ... 111s Setting up librust-aho-corasick-dev:s390x (1.1.3-1) ... 111s Setting up librust-gl-dev:s390x (0.14.0-2) ... 111s Setting up librust-async-io-dev:s390x (2.3.3-4) ... 111s Setting up librust-futures-executor-dev:s390x (0.3.31-1) ... 111s Setting up librust-toml-edit-dev:s390x (0.22.20-1) ... 111s Setting up librust-wasm-bindgen-dev:s390x (0.2.99-1) ... 111s Setting up librust-blocking-dev (1.6.1-6) ... 111s Setting up librust-proc-macro-crate-dev:s390x (3.2.0-1) ... 111s Setting up librust-js-sys-dev:s390x (0.3.64-1) ... 111s Setting up librust-object-dev:s390x (0.36.5-2) ... 111s Setting up librust-glib-macros-dev:s390x (0.20.7-1) ... 111s Setting up librust-regex-automata-dev:s390x (0.4.9-2) ... 111s Setting up librust-zbus-macros-dev:s390x (4.4.0-1) ... 111s Setting up librust-toml-dev:s390x (0.8.19-1) ... 111s Setting up librust-futures-dev:s390x (0.3.30-2) ... 111s Setting up librust-zvariant-derive-dev:s390x (4.2.0-1) ... 111s Setting up librust-async-fs-dev (2.1.2-5) ... 111s Setting up librust-addr2line-dev:s390x (0.24.2-2) ... 111s Setting up librust-chrono-dev:s390x (0.4.39-2) ... 111s Setting up librust-regex-dev:s390x (1.11.1-2) ... 111s Setting up librust-system-deps-dev:s390x (7.0.2-2) ... 111s Setting up librust-glib-sys-dev:s390x (0.20.7-1) ... 111s Setting up librust-backtrace-dev:s390x (0.3.74-3) ... 111s Setting up librust-tokio-dev:s390x (1.43.0-1) ... 111s Setting up librust-env-filter-dev:s390x (0.1.3-1) ... 111s Setting up librust-tokio-vsock-dev:s390x (0.5.0-3) ... 111s Setting up librust-env-logger-dev:s390x (0.11.5-2) ... 111s Setting up librust-quickcheck-dev:s390x (1.0.3-5) ... 111s Setting up librust-deranged-dev:s390x (0.3.11-1) ... 111s Setting up librust-time-dev:s390x (0.3.37-1) ... 111s Setting up librust-zvariant-dev:s390x (4.2.0-2) ... 111s Setting up librust-zbus-names-dev:s390x (3.0.0-3) ... 111s Setting up librust-zbus-dev:s390x (4.4.0-3) ... 111s Processing triggers for libc-bin (2.40-4ubuntu1) ... 111s Processing triggers for man-db (2.13.0-1) ... 112s Processing triggers for libglib2.0-0t64:s390x (2.83.3-2) ... 112s Setting up libglib2.0-dev:s390x (2.83.3-2) ... 112s Setting up libgraphene-1.0-dev:s390x (1.10.8-5) ... 112s Setting up libgtk-4-1:s390x (4.17.1+ds-2ubuntu1) ... 112s Setting up libcairo2-dev:s390x (1.18.2-2) ... 112s Processing triggers for install-info (7.1.1-1) ... 112s Setting up gir1.2-gtk-4.0:s390x (4.17.1+ds-2ubuntu1) ... 112s Setting up libgdk-pixbuf-2.0-dev:s390x (2.42.12+dfsg-2) ... 112s Setting up libharfbuzz-dev:s390x (10.2.0-1) ... 112s Setting up librust-gobject-sys-dev:s390x (0.20.7-1) ... 112s Setting up librust-cairo-sys-rs-dev:s390x (0.20.7-1) ... 112s Setting up libpango1.0-dev:s390x (1.56.1-1) ... 112s Setting up librust-pango-sys-dev:s390x (0.20.7-1) ... 112s Setting up librust-gio-sys-dev:s390x (0.20.8-2) ... 112s Setting up libgtk-4-dev:s390x (4.17.1+ds-2ubuntu1) ... 112s Setting up librust-glib-dev:s390x (0.20.7-1) ... 112s Setting up librust-cairo-rs-dev:s390x (0.20.7-1) ... 112s Setting up librust-gdk-pixbuf-sys-dev:s390x (0.20.7-1) ... 112s Setting up librust-gio-dev:s390x (0.20.7-1) ... 112s Setting up librust-gdk-pixbuf-dev:s390x (0.20.7-1) ... 112s Setting up librust-pango-dev:s390x (0.20.7-1) ... 112s Setting up librust-gdk4-sys-dev:s390x (0.9.5-1) ... 112s Setting up librust-gdk4-dev:s390x (0.9.5-1) ... 112s Setting up librust-search-provider-dev:s390x (0.10.0-2) ... 112s Processing triggers for libc-bin (2.40-4ubuntu1) ... 113s autopkgtest: DBG: testbed command exited with code 0 113s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'librust-search-provider-dev'], kind short, sout pipe, serr pipe, env [] 113s autopkgtest: DBG: testbed command exited with code 0 113s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.9UAdYD/rust-search-provider:@-packages.all"], kind short, sout raw, serr pipe, env [] 113s autopkgtest: DBG: testbed command exited with code 0 113s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.9UAdYD/rust-search-provider%3A%40-packages.all /tmp/autopkgtest-work.fgzbr70j/out/rust-search-provider%3A%40-packages.all 113s autopkgtest: DBG: got reply from testbed: ok 113s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.9UAdYD/build.JnS/src'], kind short, sout raw, serr raw, env [] 113s autopkgtest: DBG: testbed command exited with code 0 113s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.9UAdYD/build.JnS/src already exists 113s autopkgtest [18:27:20]: test rust-search-provider:@: /usr/share/cargo/bin/cargo-auto-test search-provider 0.10.0 --all-targets --all-features 113s autopkgtest [18:27:20]: test rust-search-provider:@: [----------------------- 113s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.9UAdYD/wrapper.sh --debug --artifacts=/tmp/autopkgtest.9UAdYD/rust-search-provider:@-artifacts --chdir=/tmp/autopkgtest.9UAdYD/build.JnS/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.9UAdYD/rust-search-provider:@-stderr --stdout=/tmp/autopkgtest.9UAdYD/rust-search-provider:@-stdout --tmp=/tmp/autopkgtest.9UAdYD/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 search-provider 0.10.0 --all-targets --all-features'"], kind test, sout raw, serr raw, env [] 113s /tmp/autopkgtest.9UAdYD/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.9UAdYD/rust-search-provider:@-artifacts 113s /tmp/autopkgtest.9UAdYD/wrapper.sh: changing to directory: /tmp/autopkgtest.9UAdYD/build.JnS/src 113s /tmp/autopkgtest.9UAdYD/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 113s /tmp/autopkgtest.9UAdYD/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 113s /tmp/autopkgtest.9UAdYD/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 113s /tmp/autopkgtest.9UAdYD/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 113s /tmp/autopkgtest.9UAdYD/wrapper.sh: setting environment: LANG=C.UTF-8 113s /tmp/autopkgtest.9UAdYD/wrapper.sh: unsetting environment: LANGUAGE 113s /tmp/autopkgtest.9UAdYD/wrapper.sh: unsetting environment: LC_ADDRESS 113s /tmp/autopkgtest.9UAdYD/wrapper.sh: unsetting environment: LC_ALL 113s /tmp/autopkgtest.9UAdYD/wrapper.sh: unsetting environment: LC_COLLATE 113s /tmp/autopkgtest.9UAdYD/wrapper.sh: unsetting environment: LC_CTYPE 113s /tmp/autopkgtest.9UAdYD/wrapper.sh: unsetting environment: LC_IDENTIFICATION 113s /tmp/autopkgtest.9UAdYD/wrapper.sh: unsetting environment: LC_MEASUREMENT 113s /tmp/autopkgtest.9UAdYD/wrapper.sh: unsetting environment: LC_MESSAGES 113s /tmp/autopkgtest.9UAdYD/wrapper.sh: unsetting environment: LC_MONETARY 113s /tmp/autopkgtest.9UAdYD/wrapper.sh: unsetting environment: LC_NAME 113s /tmp/autopkgtest.9UAdYD/wrapper.sh: unsetting environment: LC_NUMERIC 113s /tmp/autopkgtest.9UAdYD/wrapper.sh: unsetting environment: LC_PAPER 113s /tmp/autopkgtest.9UAdYD/wrapper.sh: unsetting environment: LC_TELEPHONE 113s /tmp/autopkgtest.9UAdYD/wrapper.sh: unsetting environment: LC_TIME 113s /tmp/autopkgtest.9UAdYD/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 113s /tmp/autopkgtest.9UAdYD/wrapper.sh: pretending to be a login shell 113s /tmp/autopkgtest.9UAdYD/wrapper.sh: will write standard error to /tmp/autopkgtest.9UAdYD/rust-search-provider:@-stderr 113s /tmp/autopkgtest.9UAdYD/wrapper.sh: will write stdout to /tmp/autopkgtest.9UAdYD/rust-search-provider:@-stdout 113s /tmp/autopkgtest.9UAdYD/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.9UAdYD/autopkgtest_tmp 113s /tmp/autopkgtest.9UAdYD/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 113s /tmp/autopkgtest.9UAdYD/wrapper.sh: command to run: bash -ec /usr/share/cargo/bin/cargo-auto-test search-provider 0.10.0 --all-targets --all-features 113s /tmp/autopkgtest.9UAdYD/wrapper.sh: copying /tmp/tmp.nk4B3d4yIr/out to stdout and file: /tmp/autopkgtest.9UAdYD/rust-search-provider:@-stdout 113s /tmp/autopkgtest.9UAdYD/wrapper.sh: copying /tmp/tmp.nk4B3d4yIr/err to standard error and file: /tmp/autopkgtest.9UAdYD/rust-search-provider:@-stdout 113s /tmp/autopkgtest.9UAdYD/wrapper.sh: writing script pid 6446 to /tmp/autopkgtest_script_pid 114s debian cargo wrapper: options, profiles, parallel, lto: ['parallel=2'] [] ['-j2'] 0 114s debian cargo wrapper: rust_type, gnu_type: s390x-unknown-linux-gnu, s390x-linux-gnu 114s debian cargo wrapper: unsetting RUSTFLAGS and assuming it will be (or already was) added to $CARGO_HOME/config.toml 114s debian cargo wrapper: linking /usr/share/cargo/registry/* into /tmp/tmp.MZ13eKTYFc/registry/ 114s debian cargo wrapper: options, profiles, parallel, lto: ['parallel=2'] [] ['-j2'] 0 114s debian cargo wrapper: rust_type, gnu_type: s390x-unknown-linux-gnu, s390x-linux-gnu 114s debian cargo wrapper: unsetting RUSTFLAGS and assuming it will be (or already was) added to $CARGO_HOME/config.toml 114s 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'],) {} 114s Compiling serde v1.0.217 114s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.MZ13eKTYFc/registry/serde-1.0.217 CARGO_MANIFEST_PATH=/tmp/tmp.MZ13eKTYFc/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.MZ13eKTYFc/target/debug/deps rustc --crate-name build_script_build --edition=2018 /tmp/tmp.MZ13eKTYFc/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="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "default", "derive", "rc", "serde_derive", "std", "unstable"))' -C metadata=2b32d4e029565da2 -C extra-filename=-2b32d4e029565da2 --out-dir /tmp/tmp.MZ13eKTYFc/target/debug/build/serde-2b32d4e029565da2 -L dependency=/tmp/tmp.MZ13eKTYFc/target/debug/deps --cap-lints warn` 114s Compiling hashbrown v0.14.5 114s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=hashbrown CARGO_MANIFEST_DIR=/tmp/tmp.MZ13eKTYFc/registry/hashbrown-0.14.5 CARGO_MANIFEST_PATH=/tmp/tmp.MZ13eKTYFc/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.MZ13eKTYFc/target/debug/deps rustc --crate-name hashbrown --edition=2021 /tmp/tmp.MZ13eKTYFc/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.MZ13eKTYFc/target/debug/deps -L dependency=/tmp/tmp.MZ13eKTYFc/target/debug/deps --cap-lints warn` 114s warning: unexpected `cfg` condition value: `nightly` 114s --> /tmp/tmp.MZ13eKTYFc/registry/hashbrown-0.14.5/src/lib.rs:14:5 114s | 114s 14 | feature = "nightly", 114s | ^^^^^^^^^^^^^^^^^^^ 114s | 114s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 114s = help: consider adding `nightly` as a feature in `Cargo.toml` 114s = note: see for more information about checking conditional configuration 114s = note: `#[warn(unexpected_cfgs)]` on by default 114s 114s warning: unexpected `cfg` condition value: `nightly` 114s --> /tmp/tmp.MZ13eKTYFc/registry/hashbrown-0.14.5/src/lib.rs:39:13 114s | 114s 39 | #![cfg_attr(feature = "nightly", warn(fuzzy_provenance_casts))] 114s | ^^^^^^^^^^^^^^^^^^^ 114s | 114s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 114s = help: consider adding `nightly` as a feature in `Cargo.toml` 114s = note: see for more information about checking conditional configuration 114s 114s warning: unexpected `cfg` condition value: `nightly` 114s --> /tmp/tmp.MZ13eKTYFc/registry/hashbrown-0.14.5/src/lib.rs:40:13 114s | 114s 40 | #![cfg_attr(feature = "nightly", allow(internal_features))] 114s | ^^^^^^^^^^^^^^^^^^^ 114s | 114s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 114s = help: consider adding `nightly` as a feature in `Cargo.toml` 114s = note: see for more information about checking conditional configuration 114s 114s warning: unexpected `cfg` condition value: `nightly` 114s --> /tmp/tmp.MZ13eKTYFc/registry/hashbrown-0.14.5/src/lib.rs:49:7 114s | 114s 49 | #[cfg(feature = "nightly")] 114s | ^^^^^^^^^^^^^^^^^^^ 114s | 114s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 114s = help: consider adding `nightly` as a feature in `Cargo.toml` 114s = note: see for more information about checking conditional configuration 114s 114s warning: unexpected `cfg` condition value: `nightly` 114s --> /tmp/tmp.MZ13eKTYFc/registry/hashbrown-0.14.5/src/macros.rs:59:7 114s | 114s 59 | #[cfg(feature = "nightly")] 114s | ^^^^^^^^^^^^^^^^^^^ 114s | 114s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 114s = help: consider adding `nightly` as a feature in `Cargo.toml` 114s = note: see for more information about checking conditional configuration 114s 114s warning: unexpected `cfg` condition value: `nightly` 114s --> /tmp/tmp.MZ13eKTYFc/registry/hashbrown-0.14.5/src/macros.rs:65:11 114s | 114s 65 | #[cfg(not(feature = "nightly"))] 114s | ^^^^^^^^^^^^^^^^^^^ 114s | 114s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 114s = help: consider adding `nightly` as a feature in `Cargo.toml` 114s = note: see for more information about checking conditional configuration 114s 114s warning: unexpected `cfg` condition value: `nightly` 114s --> /tmp/tmp.MZ13eKTYFc/registry/hashbrown-0.14.5/src/raw/mod.rs:53:11 114s | 114s 53 | #[cfg(not(feature = "nightly"))] 114s | ^^^^^^^^^^^^^^^^^^^ 114s | 114s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 114s = help: consider adding `nightly` as a feature in `Cargo.toml` 114s = note: see for more information about checking conditional configuration 114s 114s warning: unexpected `cfg` condition value: `nightly` 114s --> /tmp/tmp.MZ13eKTYFc/registry/hashbrown-0.14.5/src/raw/mod.rs:55:11 114s | 114s 55 | #[cfg(not(feature = "nightly"))] 114s | ^^^^^^^^^^^^^^^^^^^ 114s | 114s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 114s = help: consider adding `nightly` as a feature in `Cargo.toml` 114s = note: see for more information about checking conditional configuration 114s 114s warning: unexpected `cfg` condition value: `nightly` 114s --> /tmp/tmp.MZ13eKTYFc/registry/hashbrown-0.14.5/src/raw/mod.rs:57:7 114s | 114s 57 | #[cfg(feature = "nightly")] 114s | ^^^^^^^^^^^^^^^^^^^ 114s | 114s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 114s = help: consider adding `nightly` as a feature in `Cargo.toml` 114s = note: see for more information about checking conditional configuration 114s 114s warning: unexpected `cfg` condition value: `nightly` 114s --> /tmp/tmp.MZ13eKTYFc/registry/hashbrown-0.14.5/src/raw/mod.rs:3549:7 114s | 114s 3549 | #[cfg(feature = "nightly")] 114s | ^^^^^^^^^^^^^^^^^^^ 114s | 114s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 114s = help: consider adding `nightly` as a feature in `Cargo.toml` 114s = note: see for more information about checking conditional configuration 114s 114s warning: unexpected `cfg` condition value: `nightly` 114s --> /tmp/tmp.MZ13eKTYFc/registry/hashbrown-0.14.5/src/raw/mod.rs:3661:7 114s | 114s 3661 | #[cfg(feature = "nightly")] 114s | ^^^^^^^^^^^^^^^^^^^ 114s | 114s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 114s = help: consider adding `nightly` as a feature in `Cargo.toml` 114s = note: see for more information about checking conditional configuration 114s 114s warning: unexpected `cfg` condition value: `nightly` 114s --> /tmp/tmp.MZ13eKTYFc/registry/hashbrown-0.14.5/src/raw/mod.rs:3678:11 114s | 114s 3678 | #[cfg(not(feature = "nightly"))] 114s | ^^^^^^^^^^^^^^^^^^^ 114s | 114s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 114s = help: consider adding `nightly` as a feature in `Cargo.toml` 114s = note: see for more information about checking conditional configuration 114s 114s warning: unexpected `cfg` condition value: `nightly` 114s --> /tmp/tmp.MZ13eKTYFc/registry/hashbrown-0.14.5/src/raw/mod.rs:4304:7 114s | 114s 4304 | #[cfg(feature = "nightly")] 114s | ^^^^^^^^^^^^^^^^^^^ 114s | 114s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 114s = help: consider adding `nightly` as a feature in `Cargo.toml` 114s = note: see for more information about checking conditional configuration 114s 114s warning: unexpected `cfg` condition value: `nightly` 114s --> /tmp/tmp.MZ13eKTYFc/registry/hashbrown-0.14.5/src/raw/mod.rs:4319:11 114s | 114s 4319 | #[cfg(not(feature = "nightly"))] 114s | ^^^^^^^^^^^^^^^^^^^ 114s | 114s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 114s = help: consider adding `nightly` as a feature in `Cargo.toml` 114s = note: see for more information about checking conditional configuration 114s 114s warning: unexpected `cfg` condition value: `nightly` 114s --> /tmp/tmp.MZ13eKTYFc/registry/hashbrown-0.14.5/src/raw/alloc.rs:7:7 114s | 114s 7 | #[cfg(feature = "nightly")] 114s | ^^^^^^^^^^^^^^^^^^^ 114s | 114s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 114s = help: consider adding `nightly` as a feature in `Cargo.toml` 114s = note: see for more information about checking conditional configuration 114s 114s warning: unexpected `cfg` condition value: `nightly` 114s --> /tmp/tmp.MZ13eKTYFc/registry/hashbrown-0.14.5/src/raw/alloc.rs:28:15 114s | 114s 28 | #[cfg(all(not(feature = "nightly"), feature = "allocator-api2"))] 114s | ^^^^^^^^^^^^^^^^^^^ 114s | 114s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 114s = help: consider adding `nightly` as a feature in `Cargo.toml` 114s = note: see for more information about checking conditional configuration 114s 114s warning: unexpected `cfg` condition value: `nightly` 114s --> /tmp/tmp.MZ13eKTYFc/registry/hashbrown-0.14.5/src/raw/alloc.rs:51:15 114s | 114s 51 | #[cfg(not(any(feature = "nightly", feature = "allocator-api2")))] 114s | ^^^^^^^^^^^^^^^^^^^ 114s | 114s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 114s = help: consider adding `nightly` as a feature in `Cargo.toml` 114s = note: see for more information about checking conditional configuration 114s 114s warning: unexpected `cfg` condition value: `nightly` 114s --> /tmp/tmp.MZ13eKTYFc/registry/hashbrown-0.14.5/src/raw/mod.rs:944:32 114s | 114s 944 | #[cfg(any(feature = "raw", feature = "nightly"))] 114s | ^^^^^^^^^^^^^^^^^^^ 114s | 114s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 114s = help: consider adding `nightly` as a feature in `Cargo.toml` 114s = note: see for more information about checking conditional configuration 114s 114s warning: unexpected `cfg` condition value: `rkyv` 114s --> /tmp/tmp.MZ13eKTYFc/registry/hashbrown-0.14.5/src/external_trait_impls/mod.rs:3:7 114s | 114s 3 | #[cfg(feature = "rkyv")] 114s | ^^^^^^^^^^^^^^^^ 114s | 114s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 114s = help: consider adding `rkyv` as a feature in `Cargo.toml` 114s = note: see for more information about checking conditional configuration 114s 114s warning: unexpected `cfg` condition value: `nightly` 114s --> /tmp/tmp.MZ13eKTYFc/registry/hashbrown-0.14.5/src/map.rs:242:11 114s | 114s 242 | #[cfg(not(feature = "nightly"))] 114s | ^^^^^^^^^^^^^^^^^^^ 114s | 114s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 114s = help: consider adding `nightly` as a feature in `Cargo.toml` 114s = note: see for more information about checking conditional configuration 114s 114s warning: unexpected `cfg` condition value: `nightly` 114s --> /tmp/tmp.MZ13eKTYFc/registry/hashbrown-0.14.5/src/map.rs:255:7 114s | 114s 255 | #[cfg(feature = "nightly")] 114s | ^^^^^^^^^^^^^^^^^^^ 114s | 114s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 114s = help: consider adding `nightly` as a feature in `Cargo.toml` 114s = note: see for more information about checking conditional configuration 114s 114s warning: unexpected `cfg` condition value: `nightly` 114s --> /tmp/tmp.MZ13eKTYFc/registry/hashbrown-0.14.5/src/map.rs:6517:11 114s | 114s 6517 | #[cfg(feature = "nightly")] 114s | ^^^^^^^^^^^^^^^^^^^ 114s | 114s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 114s = help: consider adding `nightly` as a feature in `Cargo.toml` 114s = note: see for more information about checking conditional configuration 114s 114s warning: unexpected `cfg` condition value: `nightly` 114s --> /tmp/tmp.MZ13eKTYFc/registry/hashbrown-0.14.5/src/map.rs:6523:11 114s | 114s 6523 | #[cfg(feature = "nightly")] 114s | ^^^^^^^^^^^^^^^^^^^ 114s | 114s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 114s = help: consider adding `nightly` as a feature in `Cargo.toml` 114s = note: see for more information about checking conditional configuration 114s 114s warning: unexpected `cfg` condition value: `nightly` 114s --> /tmp/tmp.MZ13eKTYFc/registry/hashbrown-0.14.5/src/map.rs:6591:11 114s | 114s 6591 | #[cfg(feature = "nightly")] 114s | ^^^^^^^^^^^^^^^^^^^ 114s | 114s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 114s = help: consider adding `nightly` as a feature in `Cargo.toml` 114s = note: see for more information about checking conditional configuration 114s 114s warning: unexpected `cfg` condition value: `nightly` 114s --> /tmp/tmp.MZ13eKTYFc/registry/hashbrown-0.14.5/src/map.rs:6597:11 114s | 114s 6597 | #[cfg(feature = "nightly")] 114s | ^^^^^^^^^^^^^^^^^^^ 114s | 114s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 114s = help: consider adding `nightly` as a feature in `Cargo.toml` 114s = note: see for more information about checking conditional configuration 114s 114s warning: unexpected `cfg` condition value: `nightly` 114s --> /tmp/tmp.MZ13eKTYFc/registry/hashbrown-0.14.5/src/map.rs:6651:11 114s | 114s 6651 | #[cfg(feature = "nightly")] 114s | ^^^^^^^^^^^^^^^^^^^ 114s | 114s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 114s = help: consider adding `nightly` as a feature in `Cargo.toml` 114s = note: see for more information about checking conditional configuration 114s 114s warning: unexpected `cfg` condition value: `nightly` 114s --> /tmp/tmp.MZ13eKTYFc/registry/hashbrown-0.14.5/src/map.rs:6657:11 114s | 114s 6657 | #[cfg(feature = "nightly")] 114s | ^^^^^^^^^^^^^^^^^^^ 114s | 114s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 114s = help: consider adding `nightly` as a feature in `Cargo.toml` 114s = note: see for more information about checking conditional configuration 114s 114s warning: unexpected `cfg` condition value: `nightly` 114s --> /tmp/tmp.MZ13eKTYFc/registry/hashbrown-0.14.5/src/set.rs:1359:11 114s | 114s 1359 | #[cfg(feature = "nightly")] 114s | ^^^^^^^^^^^^^^^^^^^ 114s | 114s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 114s = help: consider adding `nightly` as a feature in `Cargo.toml` 114s = note: see for more information about checking conditional configuration 114s 114s warning: unexpected `cfg` condition value: `nightly` 114s --> /tmp/tmp.MZ13eKTYFc/registry/hashbrown-0.14.5/src/set.rs:1365:11 114s | 114s 1365 | #[cfg(feature = "nightly")] 114s | ^^^^^^^^^^^^^^^^^^^ 114s | 114s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 114s = help: consider adding `nightly` as a feature in `Cargo.toml` 114s = note: see for more information about checking conditional configuration 114s 114s warning: unexpected `cfg` condition value: `nightly` 114s --> /tmp/tmp.MZ13eKTYFc/registry/hashbrown-0.14.5/src/set.rs:1383:11 114s | 114s 1383 | #[cfg(feature = "nightly")] 114s | ^^^^^^^^^^^^^^^^^^^ 114s | 114s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 114s = help: consider adding `nightly` as a feature in `Cargo.toml` 114s = note: see for more information about checking conditional configuration 114s 114s warning: unexpected `cfg` condition value: `nightly` 114s --> /tmp/tmp.MZ13eKTYFc/registry/hashbrown-0.14.5/src/set.rs:1389:11 114s | 114s 1389 | #[cfg(feature = "nightly")] 114s | ^^^^^^^^^^^^^^^^^^^ 114s | 114s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 114s = help: consider adding `nightly` as a feature in `Cargo.toml` 114s = note: see for more information about checking conditional configuration 114s 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_STD=1 CARGO_MANIFEST_DIR=/tmp/tmp.MZ13eKTYFc/registry/serde-1.0.217 CARGO_MANIFEST_PATH=/tmp/tmp.MZ13eKTYFc/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.MZ13eKTYFc/target/debug/deps:/tmp/tmp.MZ13eKTYFc/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.MZ13eKTYFc/target/debug/build/serde-c2bcebac22c6c694/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.MZ13eKTYFc/target/debug/build/serde-2b32d4e029565da2/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.MZ13eKTYFc/registry/serde-1.0.217 CARGO_MANIFEST_PATH=/tmp/tmp.MZ13eKTYFc/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.MZ13eKTYFc/target/debug/deps OUT_DIR=/tmp/tmp.MZ13eKTYFc/target/debug/build/serde-c2bcebac22c6c694/out rustc --crate-name serde --edition=2018 /tmp/tmp.MZ13eKTYFc/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="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "default", "derive", "rc", "serde_derive", "std", "unstable"))' -C metadata=64c0851ac56a0ce1 -C extra-filename=-64c0851ac56a0ce1 --out-dir /tmp/tmp.MZ13eKTYFc/target/debug/deps -L dependency=/tmp/tmp.MZ13eKTYFc/target/debug/deps --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)'` 114s warning: `hashbrown` (lib) generated 31 warnings 114s Compiling equivalent v1.0.1 114s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=equivalent CARGO_MANIFEST_DIR=/tmp/tmp.MZ13eKTYFc/registry/equivalent-1.0.1 CARGO_MANIFEST_PATH=/tmp/tmp.MZ13eKTYFc/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.MZ13eKTYFc/target/debug/deps rustc --crate-name equivalent --edition=2015 /tmp/tmp.MZ13eKTYFc/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.MZ13eKTYFc/target/debug/deps -L dependency=/tmp/tmp.MZ13eKTYFc/target/debug/deps --cap-lints warn` 114s Compiling indexmap v2.7.0 114s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=indexmap CARGO_MANIFEST_DIR=/tmp/tmp.MZ13eKTYFc/registry/indexmap-2.7.0 CARGO_MANIFEST_PATH=/tmp/tmp.MZ13eKTYFc/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.MZ13eKTYFc/target/debug/deps rustc --crate-name indexmap --edition=2021 /tmp/tmp.MZ13eKTYFc/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.MZ13eKTYFc/target/debug/deps -L dependency=/tmp/tmp.MZ13eKTYFc/target/debug/deps --extern equivalent=/tmp/tmp.MZ13eKTYFc/target/debug/deps/libequivalent-a11b0a19a3bf2c19.rmeta --extern hashbrown=/tmp/tmp.MZ13eKTYFc/target/debug/deps/libhashbrown-e14e27c8ff208110.rmeta --cap-lints warn` 114s warning: unexpected `cfg` condition value: `borsh` 114s --> /tmp/tmp.MZ13eKTYFc/registry/indexmap-2.7.0/src/lib.rs:117:7 114s | 114s 117 | #[cfg(feature = "borsh")] 114s | ^^^^^^^^^^^^^^^^^ 114s | 114s = note: expected values for `feature` are: `arbitrary`, `default`, `rayon`, `serde`, `std`, and `test_debug` 114s = help: consider adding `borsh` as a feature in `Cargo.toml` 114s = note: see for more information about checking conditional configuration 114s = note: `#[warn(unexpected_cfgs)]` on by default 114s 114s warning: unexpected `cfg` condition value: `rustc-rayon` 114s --> /tmp/tmp.MZ13eKTYFc/registry/indexmap-2.7.0/src/lib.rs:131:7 114s | 114s 131 | #[cfg(feature = "rustc-rayon")] 114s | ^^^^^^^^^^^^^^^^^^^^^^^ 114s | 114s = note: expected values for `feature` are: `arbitrary`, `default`, `rayon`, `serde`, `std`, and `test_debug` 114s = help: consider adding `rustc-rayon` as a feature in `Cargo.toml` 114s = note: see for more information about checking conditional configuration 114s 114s warning: unexpected `cfg` condition value: `quickcheck` 114s --> /tmp/tmp.MZ13eKTYFc/registry/indexmap-2.7.0/src/arbitrary.rs:38:7 114s | 114s 38 | #[cfg(feature = "quickcheck")] 114s | ^^^^^^^^^^^^^^^^^^^^^^ 114s | 114s = note: expected values for `feature` are: `arbitrary`, `default`, `rayon`, `serde`, `std`, and `test_debug` 114s = help: consider adding `quickcheck` as a feature in `Cargo.toml` 114s = note: see for more information about checking conditional configuration 114s 114s warning: unexpected `cfg` condition value: `rustc-rayon` 114s --> /tmp/tmp.MZ13eKTYFc/registry/indexmap-2.7.0/src/macros.rs:128:30 114s | 114s 128 | #[cfg(any(feature = "rayon", feature = "rustc-rayon"))] 114s | ^^^^^^^^^^^^^^^^^^^^^^^ 114s | 114s = note: expected values for `feature` are: `arbitrary`, `default`, `rayon`, `serde`, `std`, and `test_debug` 114s = help: consider adding `rustc-rayon` as a feature in `Cargo.toml` 114s = note: see for more information about checking conditional configuration 114s 114s warning: unexpected `cfg` condition value: `rustc-rayon` 114s --> /tmp/tmp.MZ13eKTYFc/registry/indexmap-2.7.0/src/macros.rs:153:30 114s | 114s 153 | #[cfg(any(feature = "rayon", feature = "rustc-rayon"))] 114s | ^^^^^^^^^^^^^^^^^^^^^^^ 114s | 114s = note: expected values for `feature` are: `arbitrary`, `default`, `rayon`, `serde`, `std`, and `test_debug` 114s = help: consider adding `rustc-rayon` as a feature in `Cargo.toml` 114s = note: see for more information about checking conditional configuration 114s 115s warning: `indexmap` (lib) generated 5 warnings 115s Compiling winnow v0.6.18 115s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=winnow CARGO_MANIFEST_DIR=/tmp/tmp.MZ13eKTYFc/registry/winnow-0.6.18 CARGO_MANIFEST_PATH=/tmp/tmp.MZ13eKTYFc/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.MZ13eKTYFc/target/debug/deps rustc --crate-name winnow --edition=2021 /tmp/tmp.MZ13eKTYFc/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.MZ13eKTYFc/target/debug/deps -L dependency=/tmp/tmp.MZ13eKTYFc/target/debug/deps --cap-lints warn` 115s warning: unexpected `cfg` condition value: `debug` 115s --> /tmp/tmp.MZ13eKTYFc/registry/winnow-0.6.18/src/combinator/debug/mod.rs:1:13 115s | 115s 1 | #![cfg_attr(feature = "debug", allow(clippy::std_instead_of_core))] 115s | ^^^^^^^^^^^^^^^^^ 115s | 115s = note: expected values for `feature` are: `alloc`, `default`, `simd`, `std`, `unstable-doc`, and `unstable-recover` 115s = help: consider adding `debug` as a feature in `Cargo.toml` 115s = note: see for more information about checking conditional configuration 115s = note: `#[warn(unexpected_cfgs)]` on by default 115s 115s warning: unexpected `cfg` condition value: `debug` 115s --> /tmp/tmp.MZ13eKTYFc/registry/winnow-0.6.18/src/combinator/debug/mod.rs:3:7 115s | 115s 3 | #[cfg(feature = "debug")] 115s | ^^^^^^^^^^^^^^^^^ 115s | 115s = note: expected values for `feature` are: `alloc`, `default`, `simd`, `std`, `unstable-doc`, and `unstable-recover` 115s = help: consider adding `debug` as a feature in `Cargo.toml` 115s = note: see for more information about checking conditional configuration 115s 115s warning: unexpected `cfg` condition value: `debug` 115s --> /tmp/tmp.MZ13eKTYFc/registry/winnow-0.6.18/src/combinator/debug/mod.rs:37:16 115s | 115s 37 | #[cfg_attr(not(feature = "debug"), allow(unused_variables))] 115s | ^^^^^^^^^^^^^^^^^ 115s | 115s = note: expected values for `feature` are: `alloc`, `default`, `simd`, `std`, `unstable-doc`, and `unstable-recover` 115s = help: consider adding `debug` as a feature in `Cargo.toml` 115s = note: see for more information about checking conditional configuration 115s 115s warning: unexpected `cfg` condition value: `debug` 115s --> /tmp/tmp.MZ13eKTYFc/registry/winnow-0.6.18/src/combinator/debug/mod.rs:38:16 115s | 115s 38 | #[cfg_attr(not(feature = "debug"), allow(unused_mut))] 115s | ^^^^^^^^^^^^^^^^^ 115s | 115s = note: expected values for `feature` are: `alloc`, `default`, `simd`, `std`, `unstable-doc`, and `unstable-recover` 115s = help: consider adding `debug` as a feature in `Cargo.toml` 115s = note: see for more information about checking conditional configuration 115s 115s warning: unexpected `cfg` condition value: `debug` 115s --> /tmp/tmp.MZ13eKTYFc/registry/winnow-0.6.18/src/combinator/debug/mod.rs:39:16 115s | 115s 39 | #[cfg_attr(not(feature = "debug"), inline(always))] 115s | ^^^^^^^^^^^^^^^^^ 115s | 115s = note: expected values for `feature` are: `alloc`, `default`, `simd`, `std`, `unstable-doc`, and `unstable-recover` 115s = help: consider adding `debug` as a feature in `Cargo.toml` 115s = note: see for more information about checking conditional configuration 115s 115s warning: unexpected `cfg` condition value: `debug` 115s --> /tmp/tmp.MZ13eKTYFc/registry/winnow-0.6.18/src/combinator/debug/mod.rs:54:16 115s | 115s 54 | #[cfg_attr(not(feature = "debug"), allow(unused_variables))] 115s | ^^^^^^^^^^^^^^^^^ 115s | 115s = note: expected values for `feature` are: `alloc`, `default`, `simd`, `std`, `unstable-doc`, and `unstable-recover` 115s = help: consider adding `debug` as a feature in `Cargo.toml` 115s = note: see for more information about checking conditional configuration 115s 115s warning: unexpected `cfg` condition value: `debug` 115s --> /tmp/tmp.MZ13eKTYFc/registry/winnow-0.6.18/src/combinator/debug/mod.rs:79:7 115s | 115s 79 | #[cfg(feature = "debug")] 115s | ^^^^^^^^^^^^^^^^^ 115s | 115s = note: expected values for `feature` are: `alloc`, `default`, `simd`, `std`, `unstable-doc`, and `unstable-recover` 115s = help: consider adding `debug` as a feature in `Cargo.toml` 115s = note: see for more information about checking conditional configuration 115s 115s warning: unexpected `cfg` condition value: `debug` 115s --> /tmp/tmp.MZ13eKTYFc/registry/winnow-0.6.18/src/combinator/debug/mod.rs:44:11 115s | 115s 44 | #[cfg(feature = "debug")] 115s | ^^^^^^^^^^^^^^^^^ 115s | 115s = note: expected values for `feature` are: `alloc`, `default`, `simd`, `std`, `unstable-doc`, and `unstable-recover` 115s = help: consider adding `debug` as a feature in `Cargo.toml` 115s = note: see for more information about checking conditional configuration 115s 115s warning: unexpected `cfg` condition value: `debug` 115s --> /tmp/tmp.MZ13eKTYFc/registry/winnow-0.6.18/src/combinator/debug/mod.rs:48:15 115s | 115s 48 | #[cfg(not(feature = "debug"))] 115s | ^^^^^^^^^^^^^^^^^ 115s | 115s = note: expected values for `feature` are: `alloc`, `default`, `simd`, `std`, `unstable-doc`, and `unstable-recover` 115s = help: consider adding `debug` as a feature in `Cargo.toml` 115s = note: see for more information about checking conditional configuration 115s 115s warning: unexpected `cfg` condition value: `debug` 115s --> /tmp/tmp.MZ13eKTYFc/registry/winnow-0.6.18/src/combinator/debug/mod.rs:59:11 115s | 115s 59 | #[cfg(feature = "debug")] 115s | ^^^^^^^^^^^^^^^^^ 115s | 115s = note: expected values for `feature` are: `alloc`, `default`, `simd`, `std`, `unstable-doc`, and `unstable-recover` 115s = help: consider adding `debug` as a feature in `Cargo.toml` 115s = note: see for more information about checking conditional configuration 115s 116s warning: `winnow` (lib) generated 10 warnings 116s Compiling proc-macro2 v1.0.92 116s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.MZ13eKTYFc/registry/proc-macro2-1.0.92 CARGO_MANIFEST_PATH=/tmp/tmp.MZ13eKTYFc/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.MZ13eKTYFc/target/debug/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.MZ13eKTYFc/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.MZ13eKTYFc/target/debug/build/proc-macro2-3832f39696f3f5db -L dependency=/tmp/tmp.MZ13eKTYFc/target/debug/deps --cap-lints warn` 116s Compiling toml_datetime v0.6.8 116s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=toml_datetime CARGO_MANIFEST_DIR=/tmp/tmp.MZ13eKTYFc/registry/toml_datetime-0.6.8 CARGO_MANIFEST_PATH=/tmp/tmp.MZ13eKTYFc/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.MZ13eKTYFc/target/debug/deps rustc --crate-name toml_datetime --edition=2021 /tmp/tmp.MZ13eKTYFc/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' --cfg 'feature="serde"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("serde"))' -C metadata=f8a60bc8f4facc64 -C extra-filename=-f8a60bc8f4facc64 --out-dir /tmp/tmp.MZ13eKTYFc/target/debug/deps -L dependency=/tmp/tmp.MZ13eKTYFc/target/debug/deps --extern serde=/tmp/tmp.MZ13eKTYFc/target/debug/deps/libserde-64c0851ac56a0ce1.rmeta --cap-lints warn` 117s Compiling serde_spanned v0.6.7 117s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=serde_spanned CARGO_MANIFEST_DIR=/tmp/tmp.MZ13eKTYFc/registry/serde_spanned-0.6.7 CARGO_MANIFEST_PATH=/tmp/tmp.MZ13eKTYFc/registry/serde_spanned-0.6.7/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='Serde-compatible spanned Value' CARGO_PKG_HOMEPAGE='https://github.com/toml-rs/toml' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=serde_spanned 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.7 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=6 CARGO_PKG_VERSION_PATCH=7 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.MZ13eKTYFc/target/debug/deps rustc --crate-name serde_spanned --edition=2021 /tmp/tmp.MZ13eKTYFc/registry/serde_spanned-0.6.7/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 '--warn=clippy::zero_sized_map_values' '--warn=clippy::wildcard_imports' '--warn=clippy::verbose_file_reads' --warn=unused_qualifications --warn=unused_macro_rules --warn=unused_lifetimes --warn=unsafe_op_in_unsafe_fn --warn=unreachable_pub '--warn=clippy::trait_duplication_in_bounds' '--warn=clippy::todo' '--warn=clippy::string_to_string' '--warn=clippy::string_lit_as_bytes' '--warn=clippy::string_add_assign' '--warn=clippy::string_add' '--warn=clippy::str_to_string' '--warn=clippy::single_match_else' '--warn=clippy::semicolon_if_nothing_returned' '--warn=clippy::self_named_module_files' '--warn=clippy::same_functions_in_if_condition' --warn=rust_2018_idioms '--warn=clippy::rest_pat_in_fully_bound_structs' '--warn=clippy::ref_option_ref' '--warn=clippy::redundant_feature_names' '--warn=clippy::rc_mutex' '--warn=clippy::ptr_as_ptr' '--warn=clippy::path_buf_push_overwrite' '--warn=clippy::negative_feature_names' '--warn=clippy::needless_for_each' '--warn=clippy::needless_continue' '--warn=clippy::mutex_integer' '--warn=clippy::mem_forget' '--warn=clippy::match_wildcard_for_single_variants' '--warn=clippy::macro_use_imports' '--warn=clippy::lossy_float_literal' '--warn=clippy::linkedlist' '--allow=clippy::let_and_return' '--warn=clippy::large_types_passed_by_value' '--warn=clippy::large_stack_arrays' '--warn=clippy::large_digit_groups' '--warn=clippy::items_after_statements' '--warn=clippy::invalid_upcast_comparisons' '--warn=clippy::infinite_loop' '--warn=clippy::inefficient_to_string' '--warn=clippy::inconsistent_struct_constructor' '--warn=clippy::imprecise_flops' '--warn=clippy::implicit_clone' '--allow=clippy::if_same_then_else' '--warn=clippy::from_iter_instead_of_collect' '--warn=clippy::fn_params_excessive_bools' '--warn=clippy::float_cmp_const' '--warn=clippy::flat_map_option' '--warn=clippy::filter_map_next' '--warn=clippy::fallible_impl_from' '--warn=clippy::explicit_into_iter_loop' '--warn=clippy::explicit_deref_methods' '--warn=clippy::expl_impl_clone_on_copy' '--warn=clippy::enum_glob_use' '--warn=clippy::empty_enum' '--warn=clippy::doc_markdown' '--warn=clippy::debug_assert_with_mut_call' '--warn=clippy::dbg_macro' '--warn=clippy::create_dir' '--allow=clippy::collapsible_else_if' '--warn=clippy::checked_conversions' '--allow=clippy::branches_sharing_code' '--allow=clippy::bool_assert_comparison' --cfg 'feature="serde"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("serde"))' -C metadata=bb6bf82fb8b7e3e2 -C extra-filename=-bb6bf82fb8b7e3e2 --out-dir /tmp/tmp.MZ13eKTYFc/target/debug/deps -L dependency=/tmp/tmp.MZ13eKTYFc/target/debug/deps --extern serde=/tmp/tmp.MZ13eKTYFc/target/debug/deps/libserde-64c0851ac56a0ce1.rmeta --cap-lints warn` 117s 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.MZ13eKTYFc/registry/proc-macro2-1.0.92 CARGO_MANIFEST_PATH=/tmp/tmp.MZ13eKTYFc/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.MZ13eKTYFc/target/debug/deps:/tmp/tmp.MZ13eKTYFc/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.MZ13eKTYFc/target/debug/build/proc-macro2-b8c68c67c59c8657/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.MZ13eKTYFc/target/debug/build/proc-macro2-3832f39696f3f5db/build-script-build` 117s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(fuzzing) 117s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(no_is_available) 117s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(no_literal_byte_character) 117s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(no_literal_c_string) 117s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(no_source_text) 117s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(proc_macro_span) 117s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(procmacro2_backtrace) 117s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(procmacro2_nightly_testing) 117s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(procmacro2_semver_exempt) 117s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(randomize_layout) 117s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(span_locations) 117s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(super_unstable) 117s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(wrap_proc_macro) 117s [proc-macro2 1.0.92] cargo:rerun-if-changed=build/probe.rs 117s [proc-macro2 1.0.92] cargo:rustc-cfg=wrap_proc_macro 117s [proc-macro2 1.0.92] cargo:rerun-if-env-changed=RUSTC_BOOTSTRAP 117s Compiling toml_edit v0.22.20 117s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=toml_edit CARGO_MANIFEST_DIR=/tmp/tmp.MZ13eKTYFc/registry/toml_edit-0.22.20 CARGO_MANIFEST_PATH=/tmp/tmp.MZ13eKTYFc/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.MZ13eKTYFc/target/debug/deps rustc --crate-name toml_edit --edition=2021 /tmp/tmp.MZ13eKTYFc/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"' --cfg 'feature="serde"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "display", "parse", "perf", "serde", "unbounded"))' -C metadata=16e4204886ae364a -C extra-filename=-16e4204886ae364a --out-dir /tmp/tmp.MZ13eKTYFc/target/debug/deps -L dependency=/tmp/tmp.MZ13eKTYFc/target/debug/deps --extern indexmap=/tmp/tmp.MZ13eKTYFc/target/debug/deps/libindexmap-1e18ac9265fbd6ac.rmeta --extern serde=/tmp/tmp.MZ13eKTYFc/target/debug/deps/libserde-64c0851ac56a0ce1.rmeta --extern serde_spanned=/tmp/tmp.MZ13eKTYFc/target/debug/deps/libserde_spanned-bb6bf82fb8b7e3e2.rmeta --extern toml_datetime=/tmp/tmp.MZ13eKTYFc/target/debug/deps/libtoml_datetime-f8a60bc8f4facc64.rmeta --extern winnow=/tmp/tmp.MZ13eKTYFc/target/debug/deps/libwinnow-0f17435733cfc3dc.rmeta --cap-lints warn` 117s Compiling unicode-ident v1.0.13 117s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=unicode_ident CARGO_MANIFEST_DIR=/tmp/tmp.MZ13eKTYFc/registry/unicode-ident-1.0.13 CARGO_MANIFEST_PATH=/tmp/tmp.MZ13eKTYFc/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.MZ13eKTYFc/target/debug/deps rustc --crate-name unicode_ident --edition=2018 /tmp/tmp.MZ13eKTYFc/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.MZ13eKTYFc/target/debug/deps -L dependency=/tmp/tmp.MZ13eKTYFc/target/debug/deps --cap-lints warn` 117s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=proc_macro2 CARGO_MANIFEST_DIR=/tmp/tmp.MZ13eKTYFc/registry/proc-macro2-1.0.92 CARGO_MANIFEST_PATH=/tmp/tmp.MZ13eKTYFc/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.MZ13eKTYFc/target/debug/deps OUT_DIR=/tmp/tmp.MZ13eKTYFc/target/debug/build/proc-macro2-b8c68c67c59c8657/out rustc --crate-name proc_macro2 --edition=2021 /tmp/tmp.MZ13eKTYFc/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.MZ13eKTYFc/target/debug/deps -L dependency=/tmp/tmp.MZ13eKTYFc/target/debug/deps --extern unicode_ident=/tmp/tmp.MZ13eKTYFc/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)'` 117s Compiling quote v1.0.37 117s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=quote CARGO_MANIFEST_DIR=/tmp/tmp.MZ13eKTYFc/registry/quote-1.0.37 CARGO_MANIFEST_PATH=/tmp/tmp.MZ13eKTYFc/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.MZ13eKTYFc/target/debug/deps rustc --crate-name quote --edition=2018 /tmp/tmp.MZ13eKTYFc/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.MZ13eKTYFc/target/debug/deps -L dependency=/tmp/tmp.MZ13eKTYFc/target/debug/deps --extern proc_macro2=/tmp/tmp.MZ13eKTYFc/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rmeta --cap-lints warn` 118s Compiling syn v2.0.96 118s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=syn CARGO_MANIFEST_DIR=/tmp/tmp.MZ13eKTYFc/registry/syn-2.0.96 CARGO_MANIFEST_PATH=/tmp/tmp.MZ13eKTYFc/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.MZ13eKTYFc/target/debug/deps rustc --crate-name syn --edition=2021 /tmp/tmp.MZ13eKTYFc/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="fold"' --cfg 'feature="full"' --cfg 'feature="parsing"' --cfg 'feature="printing"' --cfg 'feature="proc-macro"' --cfg 'feature="visit-mut"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("clone-impls", "default", "derive", "extra-traits", "fold", "full", "parsing", "printing", "proc-macro", "visit", "visit-mut"))' -C metadata=0167beed9e699402 -C extra-filename=-0167beed9e699402 --out-dir /tmp/tmp.MZ13eKTYFc/target/debug/deps -L dependency=/tmp/tmp.MZ13eKTYFc/target/debug/deps --extern proc_macro2=/tmp/tmp.MZ13eKTYFc/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rmeta --extern quote=/tmp/tmp.MZ13eKTYFc/target/debug/deps/libquote-dc92c6f25ee0f0c6.rmeta --extern unicode_ident=/tmp/tmp.MZ13eKTYFc/target/debug/deps/libunicode_ident-5d182fe9243248fe.rmeta --cap-lints warn` 120s Compiling target-lexicon v0.12.14 120s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.MZ13eKTYFc/registry/target-lexicon-0.12.14 CARGO_MANIFEST_PATH=/tmp/tmp.MZ13eKTYFc/registry/target-lexicon-0.12.14/Cargo.toml CARGO_PKG_AUTHORS='Dan Gohman ' CARGO_PKG_DESCRIPTION='Targeting utilities for compilers and related tools' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 WITH LLVM-exception' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=target-lexicon CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/bytecodealliance/target-lexicon' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.12.14 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=12 CARGO_PKG_VERSION_PATCH=14 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.MZ13eKTYFc/target/debug/deps rustc --crate-name build_script_build --edition=2018 /tmp/tmp.MZ13eKTYFc/registry/target-lexicon-0.12.14/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"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("arch_zkasm", "default", "serde", "serde_support", "std"))' -C metadata=25364d17e185c4be -C extra-filename=-25364d17e185c4be --out-dir /tmp/tmp.MZ13eKTYFc/target/debug/build/target-lexicon-25364d17e185c4be -L dependency=/tmp/tmp.MZ13eKTYFc/target/debug/deps --cap-lints warn` 120s warning: unexpected `cfg` condition value: `rust_1_40` 120s --> /tmp/tmp.MZ13eKTYFc/registry/target-lexicon-0.12.14/src/data_model.rs:43:12 120s | 120s 43 | #[cfg_attr(feature = "rust_1_40", non_exhaustive)] 120s | ^^^^^^^^^^^^^^^^^^^^^ 120s | 120s = note: expected values for `feature` are: `arch_zkasm`, `default`, `serde`, `serde_support`, and `std` 120s = help: consider adding `rust_1_40` as a feature in `Cargo.toml` 120s = note: see for more information about checking conditional configuration 120s = note: `#[warn(unexpected_cfgs)]` on by default 120s 120s warning: unexpected `cfg` condition value: `rust_1_40` 120s --> /tmp/tmp.MZ13eKTYFc/registry/target-lexicon-0.12.14/src/triple.rs:55:12 120s | 120s 55 | #[cfg_attr(feature = "rust_1_40", non_exhaustive)] 120s | ^^^^^^^^^^^^^^^^^^^^^ 120s | 120s = note: expected values for `feature` are: `arch_zkasm`, `default`, `serde`, `serde_support`, and `std` 120s = help: consider adding `rust_1_40` as a feature in `Cargo.toml` 120s = note: see for more information about checking conditional configuration 120s 120s warning: unexpected `cfg` condition value: `rust_1_40` 120s --> /tmp/tmp.MZ13eKTYFc/registry/target-lexicon-0.12.14/src/targets.rs:14:12 120s | 120s 14 | #[cfg_attr(feature = "rust_1_40", non_exhaustive)] 120s | ^^^^^^^^^^^^^^^^^^^^^ 120s | 120s = note: expected values for `feature` are: `arch_zkasm`, `default`, `serde`, `serde_support`, and `std` 120s = help: consider adding `rust_1_40` as a feature in `Cargo.toml` 120s = note: see for more information about checking conditional configuration 120s 120s warning: unexpected `cfg` condition value: `rust_1_40` 120s --> /tmp/tmp.MZ13eKTYFc/registry/target-lexicon-0.12.14/src/targets.rs:57:12 120s | 120s 57 | #[cfg_attr(feature = "rust_1_40", non_exhaustive)] 120s | ^^^^^^^^^^^^^^^^^^^^^ 120s | 120s = note: expected values for `feature` are: `arch_zkasm`, `default`, `serde`, `serde_support`, and `std` 120s = help: consider adding `rust_1_40` as a feature in `Cargo.toml` 120s = note: see for more information about checking conditional configuration 120s 120s warning: unexpected `cfg` condition value: `rust_1_40` 120s --> /tmp/tmp.MZ13eKTYFc/registry/target-lexicon-0.12.14/src/targets.rs:107:12 120s | 120s 107 | #[cfg_attr(feature = "rust_1_40", non_exhaustive)] 120s | ^^^^^^^^^^^^^^^^^^^^^ 120s | 120s = note: expected values for `feature` are: `arch_zkasm`, `default`, `serde`, `serde_support`, and `std` 120s = help: consider adding `rust_1_40` as a feature in `Cargo.toml` 120s = note: see for more information about checking conditional configuration 120s 120s warning: unexpected `cfg` condition value: `rust_1_40` 120s --> /tmp/tmp.MZ13eKTYFc/registry/target-lexicon-0.12.14/src/targets.rs:386:12 120s | 120s 386 | #[cfg_attr(feature = "rust_1_40", non_exhaustive)] 120s | ^^^^^^^^^^^^^^^^^^^^^ 120s | 120s = note: expected values for `feature` are: `arch_zkasm`, `default`, `serde`, `serde_support`, and `std` 120s = help: consider adding `rust_1_40` as a feature in `Cargo.toml` 120s = note: see for more information about checking conditional configuration 120s 120s warning: unexpected `cfg` condition value: `rust_1_40` 120s --> /tmp/tmp.MZ13eKTYFc/registry/target-lexicon-0.12.14/src/targets.rs:407:12 120s | 120s 407 | #[cfg_attr(feature = "rust_1_40", non_exhaustive)] 120s | ^^^^^^^^^^^^^^^^^^^^^ 120s | 120s = note: expected values for `feature` are: `arch_zkasm`, `default`, `serde`, `serde_support`, and `std` 120s = help: consider adding `rust_1_40` as a feature in `Cargo.toml` 120s = note: see for more information about checking conditional configuration 120s 120s warning: unexpected `cfg` condition value: `rust_1_40` 120s --> /tmp/tmp.MZ13eKTYFc/registry/target-lexicon-0.12.14/src/targets.rs:436:12 120s | 120s 436 | #[cfg_attr(feature = "rust_1_40", non_exhaustive)] 120s | ^^^^^^^^^^^^^^^^^^^^^ 120s | 120s = note: expected values for `feature` are: `arch_zkasm`, `default`, `serde`, `serde_support`, and `std` 120s = help: consider adding `rust_1_40` as a feature in `Cargo.toml` 120s = note: see for more information about checking conditional configuration 120s 120s warning: unexpected `cfg` condition value: `rust_1_40` 120s --> /tmp/tmp.MZ13eKTYFc/registry/target-lexicon-0.12.14/src/targets.rs:459:12 120s | 120s 459 | #[cfg_attr(feature = "rust_1_40", non_exhaustive)] 120s | ^^^^^^^^^^^^^^^^^^^^^ 120s | 120s = note: expected values for `feature` are: `arch_zkasm`, `default`, `serde`, `serde_support`, and `std` 120s = help: consider adding `rust_1_40` as a feature in `Cargo.toml` 120s = note: see for more information about checking conditional configuration 120s 120s warning: unexpected `cfg` condition value: `rust_1_40` 120s --> /tmp/tmp.MZ13eKTYFc/registry/target-lexicon-0.12.14/src/targets.rs:482:12 120s | 120s 482 | #[cfg_attr(feature = "rust_1_40", non_exhaustive)] 120s | ^^^^^^^^^^^^^^^^^^^^^ 120s | 120s = note: expected values for `feature` are: `arch_zkasm`, `default`, `serde`, `serde_support`, and `std` 120s = help: consider adding `rust_1_40` as a feature in `Cargo.toml` 120s = note: see for more information about checking conditional configuration 120s 120s warning: unexpected `cfg` condition value: `rust_1_40` 120s --> /tmp/tmp.MZ13eKTYFc/registry/target-lexicon-0.12.14/src/targets.rs:507:12 120s | 120s 507 | #[cfg_attr(feature = "rust_1_40", non_exhaustive)] 120s | ^^^^^^^^^^^^^^^^^^^^^ 120s | 120s = note: expected values for `feature` are: `arch_zkasm`, `default`, `serde`, `serde_support`, and `std` 120s = help: consider adding `rust_1_40` as a feature in `Cargo.toml` 120s = note: see for more information about checking conditional configuration 120s 120s warning: unexpected `cfg` condition value: `rust_1_40` 120s --> /tmp/tmp.MZ13eKTYFc/registry/target-lexicon-0.12.14/src/targets.rs:566:12 120s | 120s 566 | #[cfg_attr(feature = "rust_1_40", non_exhaustive)] 120s | ^^^^^^^^^^^^^^^^^^^^^ 120s | 120s = note: expected values for `feature` are: `arch_zkasm`, `default`, `serde`, `serde_support`, and `std` 120s = help: consider adding `rust_1_40` as a feature in `Cargo.toml` 120s = note: see for more information about checking conditional configuration 120s 120s warning: unexpected `cfg` condition value: `rust_1_40` 120s --> /tmp/tmp.MZ13eKTYFc/registry/target-lexicon-0.12.14/src/targets.rs:624:12 120s | 120s 624 | #[cfg_attr(feature = "rust_1_40", non_exhaustive)] 120s | ^^^^^^^^^^^^^^^^^^^^^ 120s | 120s = note: expected values for `feature` are: `arch_zkasm`, `default`, `serde`, `serde_support`, and `std` 120s = help: consider adding `rust_1_40` as a feature in `Cargo.toml` 120s = note: see for more information about checking conditional configuration 120s 120s warning: unexpected `cfg` condition value: `rust_1_40` 120s --> /tmp/tmp.MZ13eKTYFc/registry/target-lexicon-0.12.14/src/targets.rs:719:12 120s | 120s 719 | #[cfg_attr(feature = "rust_1_40", non_exhaustive)] 120s | ^^^^^^^^^^^^^^^^^^^^^ 120s | 120s = note: expected values for `feature` are: `arch_zkasm`, `default`, `serde`, `serde_support`, and `std` 120s = help: consider adding `rust_1_40` as a feature in `Cargo.toml` 120s = note: see for more information about checking conditional configuration 120s 120s warning: unexpected `cfg` condition value: `rust_1_40` 120s --> /tmp/tmp.MZ13eKTYFc/registry/target-lexicon-0.12.14/src/targets.rs:801:12 120s | 120s 801 | #[cfg_attr(feature = "rust_1_40", non_exhaustive)] 120s | ^^^^^^^^^^^^^^^^^^^^^ 120s | 120s = note: expected values for `feature` are: `arch_zkasm`, `default`, `serde`, `serde_support`, and `std` 120s = help: consider adding `rust_1_40` as a feature in `Cargo.toml` 120s = note: see for more information about checking conditional configuration 120s 121s warning: `target-lexicon` (build script) generated 15 warnings 121s 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_MANIFEST_DIR=/tmp/tmp.MZ13eKTYFc/registry/target-lexicon-0.12.14 CARGO_MANIFEST_PATH=/tmp/tmp.MZ13eKTYFc/registry/target-lexicon-0.12.14/Cargo.toml CARGO_PKG_AUTHORS='Dan Gohman ' CARGO_PKG_DESCRIPTION='Targeting utilities for compilers and related tools' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 WITH LLVM-exception' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=target-lexicon CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/bytecodealliance/target-lexicon' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.12.14 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=12 CARGO_PKG_VERSION_PATCH=14 CARGO_PKG_VERSION_PRE='' DEBUG=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.MZ13eKTYFc/target/debug/deps:/tmp/tmp.MZ13eKTYFc/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.MZ13eKTYFc/target/debug/build/target-lexicon-bcd17a2af3ef410c/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.MZ13eKTYFc/target/debug/build/target-lexicon-25364d17e185c4be/build-script-build` 121s [target-lexicon 0.12.14] cargo:rustc-cfg=feature="rust_1_40" 121s Compiling libc v0.2.169 121s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.MZ13eKTYFc/registry/libc-0.2.169 CARGO_MANIFEST_PATH=/tmp/tmp.MZ13eKTYFc/registry/libc-0.2.169/Cargo.toml CARGO_PKG_AUTHORS='The Rust Project Developers' CARGO_PKG_DESCRIPTION='Raw FFI bindings to platform libraries like libc. 121s ' CARGO_PKG_HOMEPAGE='https://github.com/rust-lang/libc' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=libc CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/libc' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=0.2.169 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=169 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.MZ13eKTYFc/target/debug/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.MZ13eKTYFc/registry/libc-0.2.169/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="extra_traits"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("align", "const-extern-fn", "default", "extra_traits", "rustc-dep-of-std", "rustc-std-workspace-core", "std", "use_std"))' -C metadata=dc781cb7c1ee5a21 -C extra-filename=-dc781cb7c1ee5a21 --out-dir /tmp/tmp.MZ13eKTYFc/target/debug/build/libc-dc781cb7c1ee5a21 -L dependency=/tmp/tmp.MZ13eKTYFc/target/debug/deps --cap-lints warn` 121s 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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0--remap-path-prefix/tmp/tmp.MZ13eKTYFc/registry=/usr/share/cargo/registry-Ctarget-feature=+backchain' CARGO_FEATURE_DEFAULT=1 CARGO_FEATURE_EXTRA_TRAITS=1 CARGO_FEATURE_STD=1 CARGO_MANIFEST_DIR=/tmp/tmp.MZ13eKTYFc/registry/libc-0.2.169 CARGO_MANIFEST_PATH=/tmp/tmp.MZ13eKTYFc/registry/libc-0.2.169/Cargo.toml CARGO_PKG_AUTHORS='The Rust Project Developers' CARGO_PKG_DESCRIPTION='Raw FFI bindings to platform libraries like libc. 121s ' CARGO_PKG_HOMEPAGE='https://github.com/rust-lang/libc' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=libc CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/libc' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=0.2.169 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=169 CARGO_PKG_VERSION_PRE='' DEBUG=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.MZ13eKTYFc/target/debug/deps:/tmp/tmp.MZ13eKTYFc/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/build/libc-bd02b9c7a9cce7ac/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.MZ13eKTYFc/target/debug/build/libc-dc781cb7c1ee5a21/build-script-build` 121s [libc 0.2.169] cargo:rerun-if-changed=build.rs 121s [libc 0.2.169] cargo:rerun-if-env-changed=RUST_LIBC_UNSTABLE_FREEBSD_VERSION 121s [libc 0.2.169] cargo:rustc-cfg=freebsd11 121s [libc 0.2.169] cargo:rustc-cfg=libc_const_extern_fn 121s [libc 0.2.169] cargo:rustc-check-cfg=cfg(emscripten_new_stat_abi) 121s [libc 0.2.169] cargo:rustc-check-cfg=cfg(espidf_time32) 121s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd10) 121s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd11) 121s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd12) 121s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd13) 121s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd14) 121s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd15) 121s [libc 0.2.169] cargo:rustc-check-cfg=cfg(gnu_time64_abi) 121s [libc 0.2.169] cargo:rustc-check-cfg=cfg(libc_const_extern_fn) 121s [libc 0.2.169] cargo:rustc-check-cfg=cfg(libc_deny_warnings) 121s [libc 0.2.169] cargo:rustc-check-cfg=cfg(libc_thread_local) 121s [libc 0.2.169] cargo:rustc-check-cfg=cfg(libc_ctest) 121s [libc 0.2.169] cargo:rustc-check-cfg=cfg(target_os,values("switch","aix","ohos","hurd","rtems","visionos","nuttx")) 121s [libc 0.2.169] cargo:rustc-check-cfg=cfg(target_env,values("illumos","wasi","aix","ohos")) 121s [libc 0.2.169] cargo:rustc-check-cfg=cfg(target_arch,values("loongarch64","mips32r6","mips64r6","csky")) 121s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=target_lexicon CARGO_MANIFEST_DIR=/tmp/tmp.MZ13eKTYFc/registry/target-lexicon-0.12.14 CARGO_MANIFEST_PATH=/tmp/tmp.MZ13eKTYFc/registry/target-lexicon-0.12.14/Cargo.toml CARGO_PKG_AUTHORS='Dan Gohman ' CARGO_PKG_DESCRIPTION='Targeting utilities for compilers and related tools' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 WITH LLVM-exception' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=target-lexicon CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/bytecodealliance/target-lexicon' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.12.14 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=12 CARGO_PKG_VERSION_PATCH=14 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.MZ13eKTYFc/target/debug/deps OUT_DIR=/tmp/tmp.MZ13eKTYFc/target/debug/build/target-lexicon-bcd17a2af3ef410c/out rustc --crate-name target_lexicon --edition=2018 /tmp/tmp.MZ13eKTYFc/registry/target-lexicon-0.12.14/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("arch_zkasm", "default", "serde", "serde_support", "std"))' -C metadata=3e1fae5fd9acfad5 -C extra-filename=-3e1fae5fd9acfad5 --out-dir /tmp/tmp.MZ13eKTYFc/target/debug/deps -L dependency=/tmp/tmp.MZ13eKTYFc/target/debug/deps --cap-lints warn --cfg 'feature="rust_1_40"'` 121s warning: unexpected `cfg` condition value: `cargo-clippy` 121s --> /tmp/tmp.MZ13eKTYFc/registry/target-lexicon-0.12.14/src/lib.rs:6:5 121s | 121s 6 | feature = "cargo-clippy", 121s | ^^^^^^^^^^^^^^^^^^^^^^^^ 121s | 121s = note: expected values for `feature` are: `arch_zkasm`, `default`, `serde`, `serde_support`, and `std` 121s = help: consider adding `cargo-clippy` as a feature in `Cargo.toml` 121s = note: see for more information about checking conditional configuration 121s = note: `#[warn(unexpected_cfgs)]` on by default 121s 121s warning: unexpected `cfg` condition value: `rust_1_40` 121s --> /tmp/tmp.MZ13eKTYFc/registry/target-lexicon-0.12.14/src/data_model.rs:43:12 121s | 121s 43 | #[cfg_attr(feature = "rust_1_40", non_exhaustive)] 121s | ^^^^^^^^^^^^^^^^^^^^^ 121s | 121s = note: expected values for `feature` are: `arch_zkasm`, `default`, `serde`, `serde_support`, and `std` 121s = help: consider adding `rust_1_40` as a feature in `Cargo.toml` 121s = note: see for more information about checking conditional configuration 121s 122s warning: `target-lexicon` (lib) generated 16 warnings (14 duplicates) 122s Compiling heck v0.4.1 122s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=heck CARGO_MANIFEST_DIR=/tmp/tmp.MZ13eKTYFc/registry/heck-0.4.1 CARGO_MANIFEST_PATH=/tmp/tmp.MZ13eKTYFc/registry/heck-0.4.1/Cargo.toml CARGO_PKG_AUTHORS='Without Boats ' CARGO_PKG_DESCRIPTION='heck is a case conversion library.' CARGO_PKG_HOMEPAGE='https://github.com/withoutboats/heck' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=heck CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/withoutboats/heck' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.4.1 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=4 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.MZ13eKTYFc/target/debug/deps rustc --crate-name heck --edition=2018 /tmp/tmp.MZ13eKTYFc/registry/heck-0.4.1/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "unicode", "unicode-segmentation"))' -C metadata=780ed41701172964 -C extra-filename=-780ed41701172964 --out-dir /tmp/tmp.MZ13eKTYFc/target/debug/deps -L dependency=/tmp/tmp.MZ13eKTYFc/target/debug/deps --cap-lints warn` 122s Compiling smallvec v1.13.2 122s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=smallvec CARGO_MANIFEST_DIR=/tmp/tmp.MZ13eKTYFc/registry/smallvec-1.13.2 CARGO_MANIFEST_PATH=/tmp/tmp.MZ13eKTYFc/registry/smallvec-1.13.2/Cargo.toml CARGO_PKG_AUTHORS='The Servo Project Developers' CARGO_PKG_DESCRIPTION=''\''Small vector'\'' optimization: store up to a small number of items on the stack' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=smallvec CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/servo/rust-smallvec' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=1.13.2 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=13 CARGO_PKG_VERSION_PATCH=2 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.MZ13eKTYFc/target/debug/deps rustc --crate-name smallvec --edition=2018 /tmp/tmp.MZ13eKTYFc/registry/smallvec-1.13.2/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("arbitrary", "const_generics", "const_new", "debugger_visualizer", "drain_filter", "drain_keep_rest", "may_dangle", "serde", "specialization", "union", "write"))' -C metadata=f7f5371280a70ca7 -C extra-filename=-f7f5371280a70ca7 --out-dir /tmp/tmp.MZ13eKTYFc/target/debug/deps -L dependency=/tmp/tmp.MZ13eKTYFc/target/debug/deps --cap-lints warn` 122s Compiling cfg-expr v0.15.8 122s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=cfg_expr CARGO_MANIFEST_DIR=/tmp/tmp.MZ13eKTYFc/registry/cfg-expr-0.15.8 CARGO_MANIFEST_PATH=/tmp/tmp.MZ13eKTYFc/registry/cfg-expr-0.15.8/Cargo.toml CARGO_PKG_AUTHORS='Embark :Jake Shadle ' CARGO_PKG_DESCRIPTION='A parser and evaluator for Rust `cfg()` expressions.' CARGO_PKG_HOMEPAGE='https://github.com/EmbarkStudios/cfg-expr' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=cfg-expr CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/EmbarkStudios/cfg-expr' CARGO_PKG_RUST_VERSION=1.70.0 CARGO_PKG_VERSION=0.15.8 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=15 CARGO_PKG_VERSION_PATCH=8 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.MZ13eKTYFc/target/debug/deps rustc --crate-name cfg_expr --edition=2021 /tmp/tmp.MZ13eKTYFc/registry/cfg-expr-0.15.8/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="target-lexicon"' --cfg 'feature="targets"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "target-lexicon", "targets"))' -C metadata=4c9dfc41aae878a8 -C extra-filename=-4c9dfc41aae878a8 --out-dir /tmp/tmp.MZ13eKTYFc/target/debug/deps -L dependency=/tmp/tmp.MZ13eKTYFc/target/debug/deps --extern smallvec=/tmp/tmp.MZ13eKTYFc/target/debug/deps/libsmallvec-f7f5371280a70ca7.rmeta --extern target_lexicon=/tmp/tmp.MZ13eKTYFc/target/debug/deps/libtarget_lexicon-3e1fae5fd9acfad5.rmeta --cap-lints warn` 123s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=libc CARGO_MANIFEST_DIR=/tmp/tmp.MZ13eKTYFc/registry/libc-0.2.169 CARGO_MANIFEST_PATH=/tmp/tmp.MZ13eKTYFc/registry/libc-0.2.169/Cargo.toml CARGO_PKG_AUTHORS='The Rust Project Developers' CARGO_PKG_DESCRIPTION='Raw FFI bindings to platform libraries like libc. 123s ' CARGO_PKG_HOMEPAGE='https://github.com/rust-lang/libc' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=libc CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/libc' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=0.2.169 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=169 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.MZ13eKTYFc/target/debug/deps OUT_DIR=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/build/libc-bd02b9c7a9cce7ac/out rustc --crate-name libc --edition=2021 /tmp/tmp.MZ13eKTYFc/registry/libc-0.2.169/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="extra_traits"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("align", "const-extern-fn", "default", "extra_traits", "rustc-dep-of-std", "rustc-std-workspace-core", "std", "use_std"))' -C metadata=cf2521928ac070dc -C extra-filename=-cf2521928ac070dc --out-dir /tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.MZ13eKTYFc/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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.MZ13eKTYFc/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain --cfg freebsd11 --cfg libc_const_extern_fn --check-cfg 'cfg(emscripten_new_stat_abi)' --check-cfg 'cfg(espidf_time32)' --check-cfg 'cfg(freebsd10)' --check-cfg 'cfg(freebsd11)' --check-cfg 'cfg(freebsd12)' --check-cfg 'cfg(freebsd13)' --check-cfg 'cfg(freebsd14)' --check-cfg 'cfg(freebsd15)' --check-cfg 'cfg(gnu_time64_abi)' --check-cfg 'cfg(libc_const_extern_fn)' --check-cfg 'cfg(libc_deny_warnings)' --check-cfg 'cfg(libc_thread_local)' --check-cfg 'cfg(libc_ctest)' --check-cfg 'cfg(target_os,values("switch","aix","ohos","hurd","rtems","visionos","nuttx"))' --check-cfg 'cfg(target_env,values("illumos","wasi","aix","ohos"))' --check-cfg 'cfg(target_arch,values("loongarch64","mips32r6","mips64r6","csky"))'` 123s warning: unused import: `crate::ntptimeval` 123s --> /usr/share/cargo/registry/libc-0.2.169/src/unix/linux_like/linux/gnu/b64/mod.rs:5:5 123s | 123s 5 | use crate::ntptimeval; 123s | ^^^^^^^^^^^^^^^^^ 123s | 123s = note: `#[warn(unused_imports)]` on by default 123s 124s warning: unstable feature specified for `-Ctarget-feature`: `backchain` 124s | 124s = note: this feature is not stably supported; its behavior can change in the future 124s 124s Compiling toml v0.8.19 124s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=toml CARGO_MANIFEST_DIR=/tmp/tmp.MZ13eKTYFc/registry/toml-0.8.19 CARGO_MANIFEST_PATH=/tmp/tmp.MZ13eKTYFc/registry/toml-0.8.19/Cargo.toml CARGO_PKG_AUTHORS='Alex Crichton ' CARGO_PKG_DESCRIPTION='A native Rust encoder and decoder of TOML-formatted files and streams. Provides 124s implementations of the standard Serialize/Deserialize traits for TOML data to 124s facilitate deserializing and serializing Rust structures. 124s ' 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 CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/toml-rs/toml' CARGO_PKG_RUST_VERSION=1.65 CARGO_PKG_VERSION=0.8.19 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=8 CARGO_PKG_VERSION_PATCH=19 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.MZ13eKTYFc/target/debug/deps rustc --crate-name toml --edition=2021 /tmp/tmp.MZ13eKTYFc/registry/toml-0.8.19/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --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="parse"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "display", "indexmap", "parse", "preserve_order"))' -C metadata=3dcb236086e4a66e -C extra-filename=-3dcb236086e4a66e --out-dir /tmp/tmp.MZ13eKTYFc/target/debug/deps -L dependency=/tmp/tmp.MZ13eKTYFc/target/debug/deps --extern serde=/tmp/tmp.MZ13eKTYFc/target/debug/deps/libserde-64c0851ac56a0ce1.rmeta --extern serde_spanned=/tmp/tmp.MZ13eKTYFc/target/debug/deps/libserde_spanned-bb6bf82fb8b7e3e2.rmeta --extern toml_datetime=/tmp/tmp.MZ13eKTYFc/target/debug/deps/libtoml_datetime-f8a60bc8f4facc64.rmeta --extern toml_edit=/tmp/tmp.MZ13eKTYFc/target/debug/deps/libtoml_edit-16e4204886ae364a.rmeta --cap-lints warn` 124s warning: `libc` (lib) generated 2 warnings 124s Compiling pkg-config v0.3.31 124s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=pkg_config CARGO_MANIFEST_DIR=/tmp/tmp.MZ13eKTYFc/registry/pkg-config-0.3.31 CARGO_MANIFEST_PATH=/tmp/tmp.MZ13eKTYFc/registry/pkg-config-0.3.31/Cargo.toml CARGO_PKG_AUTHORS='Alex Crichton ' CARGO_PKG_DESCRIPTION='A library to run the pkg-config system tool at build time in order to be used in 124s Cargo build scripts. 124s ' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=pkg-config CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/pkg-config-rs' CARGO_PKG_RUST_VERSION=1.31 CARGO_PKG_VERSION=0.3.31 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=31 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.MZ13eKTYFc/target/debug/deps rustc --crate-name pkg_config --edition=2018 /tmp/tmp.MZ13eKTYFc/registry/pkg-config-0.3.31/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=f20a1c89e2145860 -C extra-filename=-f20a1c89e2145860 --out-dir /tmp/tmp.MZ13eKTYFc/target/debug/deps -L dependency=/tmp/tmp.MZ13eKTYFc/target/debug/deps --cap-lints warn` 124s warning: unused import: `std::fmt` 124s --> /tmp/tmp.MZ13eKTYFc/registry/toml-0.8.19/src/table.rs:1:5 124s | 124s 1 | use std::fmt; 124s | ^^^^^^^^ 124s | 124s = note: `#[warn(unused_imports)]` on by default 124s 124s warning: unreachable expression 124s --> /tmp/tmp.MZ13eKTYFc/registry/pkg-config-0.3.31/src/lib.rs:596:9 124s | 124s 592 | return true; 124s | ----------- any code following this expression is unreachable 124s ... 124s 596 | / match self.targeted_env_var("PKG_CONFIG_ALLOW_CROSS") { 124s 597 | | // don't use pkg-config if explicitly disabled 124s 598 | | Some(ref val) if val == "0" => false, 124s 599 | | Some(_) => true, 124s ... | 124s 605 | | } 124s 606 | | } 124s | |_________^ unreachable expression 124s | 124s = note: `#[warn(unreachable_code)]` on by default 124s 124s warning: `toml` (lib) generated 1 warning 124s Compiling version-compare v0.1.1 124s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=version_compare CARGO_MANIFEST_DIR=/tmp/tmp.MZ13eKTYFc/registry/version-compare-0.1.1 CARGO_MANIFEST_PATH=/tmp/tmp.MZ13eKTYFc/registry/version-compare-0.1.1/Cargo.toml CARGO_PKG_AUTHORS='Tim Visee <3a4fb3964f@sinenomine.email>' CARGO_PKG_DESCRIPTION='Rust library to easily compare version numbers with no specific format, and test against various comparison operators.' CARGO_PKG_HOMEPAGE='https://timvisee.com/projects/version-compare/' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=version-compare CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://gitlab.com/timvisee/version-compare' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.1.1 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.MZ13eKTYFc/target/debug/deps rustc --crate-name version_compare --edition=2018 /tmp/tmp.MZ13eKTYFc/registry/version-compare-0.1.1/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=ede63bb61298945c -C extra-filename=-ede63bb61298945c --out-dir /tmp/tmp.MZ13eKTYFc/target/debug/deps -L dependency=/tmp/tmp.MZ13eKTYFc/target/debug/deps --cap-lints warn` 124s warning: unexpected `cfg` condition name: `tarpaulin` 124s --> /tmp/tmp.MZ13eKTYFc/registry/version-compare-0.1.1/src/cmp.rs:320:12 124s | 124s 320 | #[cfg_attr(tarpaulin, skip)] 124s | ^^^^^^^^^ 124s | 124s = help: expected names are: `clippy`, `debug_assertions`, `doc`, `docsrs`, `doctest`, `feature`, `fmt_debug`, `miri`, `overflow_checks`, `panic`, `proc_macro`, `relocation_model`, `rustfmt`, `sanitize`, `sanitizer_cfi_generalize_pointers`, `sanitizer_cfi_normalize_integers`, `target_abi`, `target_arch`, `target_endian`, `target_env`, `target_family`, `target_feature`, `target_has_atomic`, `target_has_atomic_equal_alignment`, `target_has_atomic_load_store`, `target_os`, `target_pointer_width`, `target_thread_local`, `target_vendor`, `test`, `ub_checks`, `unix`, and `windows` 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s = note: `#[warn(unexpected_cfgs)]` on by default 124s 124s warning: unexpected `cfg` condition name: `tarpaulin` 124s --> /tmp/tmp.MZ13eKTYFc/registry/version-compare-0.1.1/src/compare.rs:66:12 124s | 124s 66 | #[cfg_attr(tarpaulin, skip)] 124s | ^^^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `tarpaulin` 124s --> /tmp/tmp.MZ13eKTYFc/registry/version-compare-0.1.1/src/manifest.rs:58:12 124s | 124s 58 | #[cfg_attr(tarpaulin, skip)] 124s | ^^^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `tarpaulin` 124s --> /tmp/tmp.MZ13eKTYFc/registry/version-compare-0.1.1/src/part.rs:34:12 124s | 124s 34 | #[cfg_attr(tarpaulin, skip)] 124s | ^^^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `tarpaulin` 124s --> /tmp/tmp.MZ13eKTYFc/registry/version-compare-0.1.1/src/version.rs:462:12 124s | 124s 462 | #[cfg_attr(tarpaulin, skip)] 124s | ^^^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 125s warning: `pkg-config` (lib) generated 1 warning 125s Compiling system-deps v7.0.2 125s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=system_deps CARGO_MANIFEST_DIR=/tmp/tmp.MZ13eKTYFc/registry/system-deps-7.0.2 CARGO_MANIFEST_PATH=/tmp/tmp.MZ13eKTYFc/registry/system-deps-7.0.2/Cargo.toml CARGO_PKG_AUTHORS='Guillaume Desmottes :Josh Triplett ' CARGO_PKG_DESCRIPTION='Discover and configure system dependencies from declarative dependencies in Cargo.toml' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=system-deps CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/gdesmott/system-deps' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=7.0.2 CARGO_PKG_VERSION_MAJOR=7 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=2 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.MZ13eKTYFc/target/debug/deps rustc --crate-name system_deps --edition=2018 /tmp/tmp.MZ13eKTYFc/registry/system-deps-7.0.2/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=df5512f70260f2a1 -C extra-filename=-df5512f70260f2a1 --out-dir /tmp/tmp.MZ13eKTYFc/target/debug/deps -L dependency=/tmp/tmp.MZ13eKTYFc/target/debug/deps --extern cfg_expr=/tmp/tmp.MZ13eKTYFc/target/debug/deps/libcfg_expr-4c9dfc41aae878a8.rmeta --extern heck=/tmp/tmp.MZ13eKTYFc/target/debug/deps/libheck-780ed41701172964.rmeta --extern pkg_config=/tmp/tmp.MZ13eKTYFc/target/debug/deps/libpkg_config-f20a1c89e2145860.rmeta --extern toml=/tmp/tmp.MZ13eKTYFc/target/debug/deps/libtoml-3dcb236086e4a66e.rmeta --extern version_compare=/tmp/tmp.MZ13eKTYFc/target/debug/deps/libversion_compare-ede63bb61298945c.rmeta --cap-lints warn` 125s warning: `version-compare` (lib) generated 5 warnings 125s Compiling pin-project-lite v0.2.13 125s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=pin_project_lite CARGO_MANIFEST_DIR=/tmp/tmp.MZ13eKTYFc/registry/pin-project-lite-0.2.13 CARGO_MANIFEST_PATH=/tmp/tmp.MZ13eKTYFc/registry/pin-project-lite-0.2.13/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='A lightweight version of pin-project written with declarative macros. 125s ' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=pin-project-lite CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/taiki-e/pin-project-lite' CARGO_PKG_RUST_VERSION=1.37 CARGO_PKG_VERSION=0.2.13 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=13 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.MZ13eKTYFc/target/debug/deps rustc --crate-name pin_project_lite --edition=2018 /tmp/tmp.MZ13eKTYFc/registry/pin-project-lite-0.2.13/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=5dc815523e98d889 -C extra-filename=-5dc815523e98d889 --out-dir /tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.MZ13eKTYFc/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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.MZ13eKTYFc/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 125s warning: `pin-project-lite` (lib) generated 1 warning (1 duplicate) 125s Compiling autocfg v1.1.0 125s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=autocfg CARGO_MANIFEST_DIR=/tmp/tmp.MZ13eKTYFc/registry/autocfg-1.1.0 CARGO_MANIFEST_PATH=/tmp/tmp.MZ13eKTYFc/registry/autocfg-1.1.0/Cargo.toml CARGO_PKG_AUTHORS='Josh Stone ' CARGO_PKG_DESCRIPTION='Automatic cfg for Rust compiler features' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=autocfg CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/cuviper/autocfg' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=1.1.0 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.MZ13eKTYFc/target/debug/deps rustc --crate-name autocfg --edition=2015 /tmp/tmp.MZ13eKTYFc/registry/autocfg-1.1.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=9ebcd9511383083c -C extra-filename=-9ebcd9511383083c --out-dir /tmp/tmp.MZ13eKTYFc/target/debug/deps -L dependency=/tmp/tmp.MZ13eKTYFc/target/debug/deps --cap-lints warn` 125s Compiling futures-core v0.3.31 125s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=futures_core CARGO_MANIFEST_DIR=/tmp/tmp.MZ13eKTYFc/registry/futures-core-0.3.31 CARGO_MANIFEST_PATH=/tmp/tmp.MZ13eKTYFc/registry/futures-core-0.3.31/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='The core traits and types in for the `futures` library. 125s ' CARGO_PKG_HOMEPAGE='https://rust-lang.github.io/futures-rs' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=futures-core CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/futures-rs' CARGO_PKG_RUST_VERSION=1.36 CARGO_PKG_VERSION=0.3.31 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=31 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.MZ13eKTYFc/target/debug/deps rustc --crate-name futures_core --edition=2018 /tmp/tmp.MZ13eKTYFc/registry/futures-core-0.3.31/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --warn=unreachable_pub --warn=unexpected_cfgs --warn=single_use_lifetimes --warn=rust_2018_idioms --warn=missing_debug_implementations --check-cfg 'cfg(futures_sanitizer)' --cfg 'feature="alloc"' --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "cfg-target-has-atomic", "default", "portable-atomic", "std", "unstable"))' -C metadata=8d305950da6bf5c8 -C extra-filename=-8d305950da6bf5c8 --out-dir /tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.MZ13eKTYFc/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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.MZ13eKTYFc/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 125s warning: `futures-core` (lib) generated 1 warning (1 duplicate) 125s Compiling futures-io v0.3.31 125s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=futures_io CARGO_MANIFEST_DIR=/tmp/tmp.MZ13eKTYFc/registry/futures-io-0.3.31 CARGO_MANIFEST_PATH=/tmp/tmp.MZ13eKTYFc/registry/futures-io-0.3.31/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='The `AsyncRead`, `AsyncWrite`, `AsyncSeek`, and `AsyncBufRead` traits for the futures-rs library. 125s ' CARGO_PKG_HOMEPAGE='https://rust-lang.github.io/futures-rs' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=futures-io CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/futures-rs' CARGO_PKG_RUST_VERSION=1.36 CARGO_PKG_VERSION=0.3.31 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=31 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.MZ13eKTYFc/target/debug/deps rustc --crate-name futures_io --edition=2018 /tmp/tmp.MZ13eKTYFc/registry/futures-io-0.3.31/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --warn=unreachable_pub --warn=unexpected_cfgs --warn=single_use_lifetimes --warn=rust_2018_idioms --warn=missing_debug_implementations --check-cfg 'cfg(futures_sanitizer)' --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "std", "unstable"))' -C metadata=1a4387591f8b2b95 -C extra-filename=-1a4387591f8b2b95 --out-dir /tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.MZ13eKTYFc/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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.MZ13eKTYFc/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 125s warning: `futures-io` (lib) generated 1 warning (1 duplicate) 125s Compiling slab v0.4.9 125s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.MZ13eKTYFc/registry/slab-0.4.9 CARGO_MANIFEST_PATH=/tmp/tmp.MZ13eKTYFc/registry/slab-0.4.9/Cargo.toml CARGO_PKG_AUTHORS='Carl Lerche ' CARGO_PKG_DESCRIPTION='Pre-allocated storage for a uniform data type' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=slab CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/tokio-rs/slab' CARGO_PKG_RUST_VERSION=1.31 CARGO_PKG_VERSION=0.4.9 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=4 CARGO_PKG_VERSION_PATCH=9 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.MZ13eKTYFc/target/debug/deps rustc --crate-name build_script_build --edition=2018 /tmp/tmp.MZ13eKTYFc/registry/slab-0.4.9/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "serde", "std"))' -C metadata=95cba3e02497b263 -C extra-filename=-95cba3e02497b263 --out-dir /tmp/tmp.MZ13eKTYFc/target/debug/build/slab-95cba3e02497b263 -L dependency=/tmp/tmp.MZ13eKTYFc/target/debug/deps --extern autocfg=/tmp/tmp.MZ13eKTYFc/target/debug/deps/libautocfg-9ebcd9511383083c.rlib --cap-lints warn` 125s Compiling crossbeam-utils v0.8.19 125s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.MZ13eKTYFc/registry/crossbeam-utils-0.8.19 CARGO_MANIFEST_PATH=/tmp/tmp.MZ13eKTYFc/registry/crossbeam-utils-0.8.19/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='Utilities for concurrent programming' CARGO_PKG_HOMEPAGE='https://github.com/crossbeam-rs/crossbeam/tree/master/crossbeam-utils' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=crossbeam-utils CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/crossbeam-rs/crossbeam' CARGO_PKG_RUST_VERSION=1.60 CARGO_PKG_VERSION=0.8.19 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=8 CARGO_PKG_VERSION_PATCH=19 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.MZ13eKTYFc/target/debug/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.MZ13eKTYFc/registry/crossbeam-utils-0.8.19/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "nightly", "std"))' -C metadata=481d5baddd087d3b -C extra-filename=-481d5baddd087d3b --out-dir /tmp/tmp.MZ13eKTYFc/target/debug/build/crossbeam-utils-481d5baddd087d3b -L dependency=/tmp/tmp.MZ13eKTYFc/target/debug/deps --cap-lints warn` 126s 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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0--remap-path-prefix/tmp/tmp.MZ13eKTYFc/registry=/usr/share/cargo/registry-Ctarget-feature=+backchain' CARGO_MANIFEST_DIR=/tmp/tmp.MZ13eKTYFc/registry/crossbeam-utils-0.8.19 CARGO_MANIFEST_PATH=/tmp/tmp.MZ13eKTYFc/registry/crossbeam-utils-0.8.19/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='Utilities for concurrent programming' CARGO_PKG_HOMEPAGE='https://github.com/crossbeam-rs/crossbeam/tree/master/crossbeam-utils' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=crossbeam-utils CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/crossbeam-rs/crossbeam' CARGO_PKG_RUST_VERSION=1.60 CARGO_PKG_VERSION=0.8.19 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=8 CARGO_PKG_VERSION_PATCH=19 CARGO_PKG_VERSION_PRE='' DEBUG=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.MZ13eKTYFc/target/debug/deps:/tmp/tmp.MZ13eKTYFc/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/build/crossbeam-utils-41ced09745ce2d1e/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.MZ13eKTYFc/target/debug/build/crossbeam-utils-481d5baddd087d3b/build-script-build` 126s [crossbeam-utils 0.8.19] cargo:rerun-if-changed=no_atomic.rs 126s 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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0--remap-path-prefix/tmp/tmp.MZ13eKTYFc/registry=/usr/share/cargo/registry-Ctarget-feature=+backchain' CARGO_FEATURE_DEFAULT=1 CARGO_FEATURE_STD=1 CARGO_MANIFEST_DIR=/tmp/tmp.MZ13eKTYFc/registry/slab-0.4.9 CARGO_MANIFEST_PATH=/tmp/tmp.MZ13eKTYFc/registry/slab-0.4.9/Cargo.toml CARGO_PKG_AUTHORS='Carl Lerche ' CARGO_PKG_DESCRIPTION='Pre-allocated storage for a uniform data type' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=slab CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/tokio-rs/slab' CARGO_PKG_RUST_VERSION=1.31 CARGO_PKG_VERSION=0.4.9 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=4 CARGO_PKG_VERSION_PATCH=9 CARGO_PKG_VERSION_PRE='' DEBUG=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.MZ13eKTYFc/target/debug/deps:/tmp/tmp.MZ13eKTYFc/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/build/slab-2c89ee66d35953a1/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.MZ13eKTYFc/target/debug/build/slab-95cba3e02497b263/build-script-build` 126s [slab 0.4.9] warning: unstable feature specified for `-Ctarget-feature`: `backchain` 126s [slab 0.4.9] | 126s [slab 0.4.9] = note: this feature is not stably supported; its behavior can change in the future 126s [slab 0.4.9] 126s [slab 0.4.9] warning: 1 warning emitted 126s [slab 0.4.9] 126s Compiling proc-macro-crate v3.2.0 126s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=proc_macro_crate CARGO_MANIFEST_DIR=/tmp/tmp.MZ13eKTYFc/registry/proc-macro-crate-3.2.0 CARGO_MANIFEST_PATH=/tmp/tmp.MZ13eKTYFc/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 126s ' 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.MZ13eKTYFc/target/debug/deps rustc --crate-name proc_macro_crate --edition=2021 /tmp/tmp.MZ13eKTYFc/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=76b8c9685ffc2762 -C extra-filename=-76b8c9685ffc2762 --out-dir /tmp/tmp.MZ13eKTYFc/target/debug/deps -L dependency=/tmp/tmp.MZ13eKTYFc/target/debug/deps --extern toml_edit=/tmp/tmp.MZ13eKTYFc/target/debug/deps/libtoml_edit-16e4204886ae364a.rmeta --cap-lints warn` 126s Compiling glib-sys v0.20.7 126s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.MZ13eKTYFc/registry/glib-sys-0.20.7 CARGO_MANIFEST_PATH=/tmp/tmp.MZ13eKTYFc/registry/glib-sys-0.20.7/Cargo.toml CARGO_PKG_AUTHORS='The gtk-rs Project Developers' CARGO_PKG_DESCRIPTION='FFI bindings to libglib-2.0' CARGO_PKG_HOMEPAGE='https://gtk-rs.org/' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=glib-sys CARGO_PKG_README='' CARGO_PKG_REPOSITORY='https://github.com/gtk-rs/gtk-rs-core' CARGO_PKG_RUST_VERSION=1.70 CARGO_PKG_VERSION=0.20.7 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=20 CARGO_PKG_VERSION_PATCH=7 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.MZ13eKTYFc/target/debug/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.MZ13eKTYFc/registry/glib-sys-0.20.7/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="v2_58"' --cfg 'feature="v2_60"' --cfg 'feature="v2_62"' --cfg 'feature="v2_64"' --cfg 'feature="v2_66"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("v2_58", "v2_60", "v2_62", "v2_64", "v2_66", "v2_68", "v2_70", "v2_72", "v2_74", "v2_76", "v2_78", "v2_80", "v2_82", "v2_84"))' -C metadata=df9c4015ac0ba9cb -C extra-filename=-df9c4015ac0ba9cb --out-dir /tmp/tmp.MZ13eKTYFc/target/debug/build/glib-sys-df9c4015ac0ba9cb -L dependency=/tmp/tmp.MZ13eKTYFc/target/debug/deps --extern system_deps=/tmp/tmp.MZ13eKTYFc/target/debug/deps/libsystem_deps-df5512f70260f2a1.rlib --cap-lints warn` 126s 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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0--remap-path-prefix/tmp/tmp.MZ13eKTYFc/registry=/usr/share/cargo/registry-Ctarget-feature=+backchain' CARGO_FEATURE_V2_58=1 CARGO_FEATURE_V2_60=1 CARGO_FEATURE_V2_62=1 CARGO_FEATURE_V2_64=1 CARGO_FEATURE_V2_66=1 CARGO_MANIFEST_DIR=/tmp/tmp.MZ13eKTYFc/registry/glib-sys-0.20.7 CARGO_MANIFEST_PATH=/tmp/tmp.MZ13eKTYFc/registry/glib-sys-0.20.7/Cargo.toml CARGO_PKG_AUTHORS='The gtk-rs Project Developers' CARGO_PKG_DESCRIPTION='FFI bindings to libglib-2.0' CARGO_PKG_HOMEPAGE='https://gtk-rs.org/' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=glib-sys CARGO_PKG_README='' CARGO_PKG_REPOSITORY='https://github.com/gtk-rs/gtk-rs-core' CARGO_PKG_RUST_VERSION=1.70 CARGO_PKG_VERSION=0.20.7 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=20 CARGO_PKG_VERSION_PATCH=7 CARGO_PKG_VERSION_PRE='' DEBUG=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.MZ13eKTYFc/target/debug/deps:/tmp/tmp.MZ13eKTYFc/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/build/glib-sys-8c58b953bd6c2f59/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.MZ13eKTYFc/target/debug/build/glib-sys-df9c4015ac0ba9cb/build-script-build` 126s [glib-sys 0.20.7] cargo:rerun-if-changed=/tmp/tmp.MZ13eKTYFc/registry/glib-sys-0.20.7/Cargo.toml 126s [glib-sys 0.20.7] cargo:rerun-if-env-changed=GLIB_2.0_NO_PKG_CONFIG 126s [glib-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_s390x-unknown-linux-gnu 126s [glib-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_s390x_unknown_linux_gnu 126s [glib-sys 0.20.7] cargo:rerun-if-env-changed=HOST_PKG_CONFIG 126s [glib-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG 126s [glib-sys 0.20.7] cargo:rerun-if-env-changed=DEB_HOST_GNU_TYPE 126s [glib-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_PATH_s390x-unknown-linux-gnu 126s [glib-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_PATH_s390x_unknown_linux_gnu 126s [glib-sys 0.20.7] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_PATH 126s [glib-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_PATH 126s [glib-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR_s390x-unknown-linux-gnu 126s [glib-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR_s390x_unknown_linux_gnu 126s [glib-sys 0.20.7] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_LIBDIR 126s [glib-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR 126s [glib-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR_s390x-unknown-linux-gnu 126s [glib-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR_s390x_unknown_linux_gnu 126s [glib-sys 0.20.7] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_SYSROOT_DIR 126s [glib-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR 126s [glib-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR 126s [glib-sys 0.20.7] cargo:rerun-if-env-changed=SYSROOT 126s [glib-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_s390x-unknown-linux-gnu 126s [glib-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_s390x_unknown_linux_gnu 126s [glib-sys 0.20.7] cargo:rerun-if-env-changed=HOST_PKG_CONFIG 126s [glib-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG 126s [glib-sys 0.20.7] cargo:rerun-if-env-changed=DEB_HOST_GNU_TYPE 126s [glib-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_PATH_s390x-unknown-linux-gnu 126s [glib-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_PATH_s390x_unknown_linux_gnu 126s [glib-sys 0.20.7] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_PATH 126s [glib-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_PATH 126s [glib-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR_s390x-unknown-linux-gnu 126s [glib-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR_s390x_unknown_linux_gnu 126s [glib-sys 0.20.7] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_LIBDIR 126s [glib-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR 126s [glib-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR_s390x-unknown-linux-gnu 126s [glib-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR_s390x_unknown_linux_gnu 126s [glib-sys 0.20.7] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_SYSROOT_DIR 126s [glib-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR 126s [glib-sys 0.20.7] cargo:rerun-if-env-changed=GOBJECT_2.0_NO_PKG_CONFIG 126s [glib-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_s390x-unknown-linux-gnu 126s [glib-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_s390x_unknown_linux_gnu 126s [glib-sys 0.20.7] cargo:rerun-if-env-changed=HOST_PKG_CONFIG 126s [glib-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG 126s [glib-sys 0.20.7] cargo:rerun-if-env-changed=DEB_HOST_GNU_TYPE 126s [glib-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_PATH_s390x-unknown-linux-gnu 126s [glib-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_PATH_s390x_unknown_linux_gnu 126s [glib-sys 0.20.7] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_PATH 126s [glib-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_PATH 126s [glib-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR_s390x-unknown-linux-gnu 126s [glib-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR_s390x_unknown_linux_gnu 126s [glib-sys 0.20.7] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_LIBDIR 126s [glib-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR 126s [glib-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR_s390x-unknown-linux-gnu 126s [glib-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR_s390x_unknown_linux_gnu 126s [glib-sys 0.20.7] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_SYSROOT_DIR 126s [glib-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR 126s [glib-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR 126s [glib-sys 0.20.7] cargo:rerun-if-env-changed=SYSROOT 126s [glib-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_s390x-unknown-linux-gnu 126s [glib-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_s390x_unknown_linux_gnu 126s [glib-sys 0.20.7] cargo:rerun-if-env-changed=HOST_PKG_CONFIG 126s [glib-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG 126s [glib-sys 0.20.7] cargo:rerun-if-env-changed=DEB_HOST_GNU_TYPE 126s [glib-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_PATH_s390x-unknown-linux-gnu 126s [glib-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_PATH_s390x_unknown_linux_gnu 126s [glib-sys 0.20.7] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_PATH 126s [glib-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_PATH 126s [glib-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR_s390x-unknown-linux-gnu 126s [glib-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR_s390x_unknown_linux_gnu 126s [glib-sys 0.20.7] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_LIBDIR 126s [glib-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR 126s [glib-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR_s390x-unknown-linux-gnu 126s [glib-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR_s390x_unknown_linux_gnu 126s [glib-sys 0.20.7] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_SYSROOT_DIR 126s [glib-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR 126s [glib-sys 0.20.7] cargo:rustc-link-lib=glib-2.0 126s [glib-sys 0.20.7] cargo:rustc-link-lib=gobject-2.0 126s [glib-sys 0.20.7] cargo:rustc-link-lib=glib-2.0 126s [glib-sys 0.20.7] cargo:include=/usr/include/glib-2.0:/usr/lib/s390x-linux-gnu/glib-2.0/include:/usr/include/sysprof-6:/usr/include:/usr/include:/usr/include/glib-2.0:/usr/lib/s390x-linux-gnu/glib-2.0/include:/usr/include/sysprof-6 126s [glib-sys 0.20.7] cargo:rerun-if-env-changed=SYSTEM_DEPS_BUILD_INTERNAL 126s [glib-sys 0.20.7] cargo:rerun-if-env-changed=SYSTEM_DEPS_LINK 126s [glib-sys 0.20.7] cargo:rerun-if-env-changed=SYSTEM_DEPS_GOBJECT_2_0_LIB 126s [glib-sys 0.20.7] cargo:rerun-if-env-changed=SYSTEM_DEPS_GOBJECT_2_0_LIB_FRAMEWORK 126s [glib-sys 0.20.7] cargo:rerun-if-env-changed=SYSTEM_DEPS_GOBJECT_2_0_SEARCH_NATIVE 126s [glib-sys 0.20.7] cargo:rerun-if-env-changed=SYSTEM_DEPS_GOBJECT_2_0_SEARCH_FRAMEWORK 126s [glib-sys 0.20.7] cargo:rerun-if-env-changed=SYSTEM_DEPS_GOBJECT_2_0_INCLUDE 126s [glib-sys 0.20.7] cargo:rerun-if-env-changed=SYSTEM_DEPS_GOBJECT_2_0_LDFLAGS 126s [glib-sys 0.20.7] cargo:rerun-if-env-changed=SYSTEM_DEPS_GOBJECT_2_0_NO_PKG_CONFIG 126s [glib-sys 0.20.7] cargo:rerun-if-env-changed=SYSTEM_DEPS_GOBJECT_2_0_BUILD_INTERNAL 126s [glib-sys 0.20.7] cargo:rerun-if-env-changed=SYSTEM_DEPS_GOBJECT_2_0_LINK 126s [glib-sys 0.20.7] cargo:rerun-if-env-changed=SYSTEM_DEPS_GLIB_2_0_LIB 126s [glib-sys 0.20.7] cargo:rerun-if-env-changed=SYSTEM_DEPS_GLIB_2_0_LIB_FRAMEWORK 126s [glib-sys 0.20.7] cargo:rerun-if-env-changed=SYSTEM_DEPS_GLIB_2_0_SEARCH_NATIVE 126s [glib-sys 0.20.7] cargo:rerun-if-env-changed=SYSTEM_DEPS_GLIB_2_0_SEARCH_FRAMEWORK 126s [glib-sys 0.20.7] cargo:rerun-if-env-changed=SYSTEM_DEPS_GLIB_2_0_INCLUDE 126s [glib-sys 0.20.7] cargo:rerun-if-env-changed=SYSTEM_DEPS_GLIB_2_0_LDFLAGS 126s [glib-sys 0.20.7] cargo:rerun-if-env-changed=SYSTEM_DEPS_GLIB_2_0_NO_PKG_CONFIG 126s [glib-sys 0.20.7] cargo:rerun-if-env-changed=SYSTEM_DEPS_GLIB_2_0_BUILD_INTERNAL 126s [glib-sys 0.20.7] cargo:rerun-if-env-changed=SYSTEM_DEPS_GLIB_2_0_LINK 126s [glib-sys 0.20.7] 126s [glib-sys 0.20.7] cargo:rustc-cfg=system_deps_have_glib_2_0 126s [glib-sys 0.20.7] cargo:rustc-cfg=system_deps_have_gobject_2_0 126s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=glib_sys CARGO_MANIFEST_DIR=/tmp/tmp.MZ13eKTYFc/registry/glib-sys-0.20.7 CARGO_MANIFEST_PATH=/tmp/tmp.MZ13eKTYFc/registry/glib-sys-0.20.7/Cargo.toml CARGO_PKG_AUTHORS='The gtk-rs Project Developers' CARGO_PKG_DESCRIPTION='FFI bindings to libglib-2.0' CARGO_PKG_HOMEPAGE='https://gtk-rs.org/' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=glib-sys CARGO_PKG_README='' CARGO_PKG_REPOSITORY='https://github.com/gtk-rs/gtk-rs-core' CARGO_PKG_RUST_VERSION=1.70 CARGO_PKG_VERSION=0.20.7 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=20 CARGO_PKG_VERSION_PATCH=7 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.MZ13eKTYFc/target/debug/deps OUT_DIR=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/build/glib-sys-8c58b953bd6c2f59/out rustc --crate-name glib_sys --edition=2021 /tmp/tmp.MZ13eKTYFc/registry/glib-sys-0.20.7/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="v2_58"' --cfg 'feature="v2_60"' --cfg 'feature="v2_62"' --cfg 'feature="v2_64"' --cfg 'feature="v2_66"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("v2_58", "v2_60", "v2_62", "v2_64", "v2_66", "v2_68", "v2_70", "v2_72", "v2_74", "v2_76", "v2_78", "v2_80", "v2_82", "v2_84"))' -C metadata=8d7612a6c3ae820a -C extra-filename=-8d7612a6c3ae820a --out-dir /tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.MZ13eKTYFc/target/debug/deps --extern libc=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/liblibc-cf2521928ac070dc.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.MZ13eKTYFc/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain -l glib-2.0 -l gobject-2.0 -l glib-2.0 --cfg system_deps_have_glib_2_0 --cfg system_deps_have_gobject_2_0` 126s Compiling gobject-sys v0.20.7 126s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.MZ13eKTYFc/registry/gobject-sys-0.20.7 CARGO_MANIFEST_PATH=/tmp/tmp.MZ13eKTYFc/registry/gobject-sys-0.20.7/Cargo.toml CARGO_PKG_AUTHORS='The gtk-rs Project Developers' CARGO_PKG_DESCRIPTION='FFI bindings to libgobject-2.0' CARGO_PKG_HOMEPAGE='https://gtk-rs.org/' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=gobject-sys CARGO_PKG_README='' CARGO_PKG_REPOSITORY='https://github.com/gtk-rs/gtk-rs-core' CARGO_PKG_RUST_VERSION=1.70 CARGO_PKG_VERSION=0.20.7 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=20 CARGO_PKG_VERSION_PATCH=7 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.MZ13eKTYFc/target/debug/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.MZ13eKTYFc/registry/gobject-sys-0.20.7/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="v2_58"' --cfg 'feature="v2_62"' --cfg 'feature="v2_66"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("v2_58", "v2_62", "v2_66", "v2_68", "v2_70", "v2_72", "v2_74", "v2_76", "v2_78", "v2_80", "v2_82"))' -C metadata=5e250a0f9872c007 -C extra-filename=-5e250a0f9872c007 --out-dir /tmp/tmp.MZ13eKTYFc/target/debug/build/gobject-sys-5e250a0f9872c007 -L dependency=/tmp/tmp.MZ13eKTYFc/target/debug/deps --extern system_deps=/tmp/tmp.MZ13eKTYFc/target/debug/deps/libsystem_deps-df5512f70260f2a1.rlib --cap-lints warn` 126s warning: `glib-sys` (lib) generated 1 warning (1 duplicate) 126s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=slab CARGO_MANIFEST_DIR=/tmp/tmp.MZ13eKTYFc/registry/slab-0.4.9 CARGO_MANIFEST_PATH=/tmp/tmp.MZ13eKTYFc/registry/slab-0.4.9/Cargo.toml CARGO_PKG_AUTHORS='Carl Lerche ' CARGO_PKG_DESCRIPTION='Pre-allocated storage for a uniform data type' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=slab CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/tokio-rs/slab' CARGO_PKG_RUST_VERSION=1.31 CARGO_PKG_VERSION=0.4.9 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=4 CARGO_PKG_VERSION_PATCH=9 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.MZ13eKTYFc/target/debug/deps OUT_DIR=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/build/slab-2c89ee66d35953a1/out rustc --crate-name slab --edition=2018 /tmp/tmp.MZ13eKTYFc/registry/slab-0.4.9/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "serde", "std"))' -C metadata=36320af34be0827b -C extra-filename=-36320af34be0827b --out-dir /tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.MZ13eKTYFc/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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.MZ13eKTYFc/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 127s warning: unexpected `cfg` condition name: `slab_no_const_vec_new` 127s --> /usr/share/cargo/registry/slab-0.4.9/src/lib.rs:250:15 127s | 127s 250 | #[cfg(not(slab_no_const_vec_new))] 127s | ^^^^^^^^^^^^^^^^^^^^^ 127s | 127s = help: expected names are: `clippy`, `debug_assertions`, `doc`, `docsrs`, `doctest`, `feature`, `fmt_debug`, `miri`, `overflow_checks`, `panic`, `proc_macro`, `relocation_model`, `rustfmt`, `sanitize`, `sanitizer_cfi_generalize_pointers`, `sanitizer_cfi_normalize_integers`, `target_abi`, `target_arch`, `target_endian`, `target_env`, `target_family`, `target_feature`, `target_has_atomic`, `target_has_atomic_equal_alignment`, `target_has_atomic_load_store`, `target_os`, `target_pointer_width`, `target_thread_local`, `target_vendor`, `test`, `ub_checks`, `unix`, and `windows` 127s = help: consider using a Cargo feature instead 127s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 127s [lints.rust] 127s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(slab_no_const_vec_new)'] } 127s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(slab_no_const_vec_new)");` to the top of the `build.rs` 127s = note: see for more information about checking conditional configuration 127s = note: `#[warn(unexpected_cfgs)]` on by default 127s 127s warning: unexpected `cfg` condition name: `slab_no_const_vec_new` 127s --> /usr/share/cargo/registry/slab-0.4.9/src/lib.rs:264:11 127s | 127s 264 | #[cfg(slab_no_const_vec_new)] 127s | ^^^^^^^^^^^^^^^^^^^^^ 127s | 127s = help: consider using a Cargo feature instead 127s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 127s [lints.rust] 127s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(slab_no_const_vec_new)'] } 127s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(slab_no_const_vec_new)");` to the top of the `build.rs` 127s = note: see for more information about checking conditional configuration 127s 127s warning: unexpected `cfg` condition name: `slab_no_track_caller` 127s --> /usr/share/cargo/registry/slab-0.4.9/src/lib.rs:929:20 127s | 127s 929 | #[cfg_attr(not(slab_no_track_caller), track_caller)] 127s | ^^^^^^^^^^^^^^^^^^^^ 127s | 127s = help: consider using a Cargo feature instead 127s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 127s [lints.rust] 127s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(slab_no_track_caller)'] } 127s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(slab_no_track_caller)");` to the top of the `build.rs` 127s = note: see for more information about checking conditional configuration 127s 127s warning: unexpected `cfg` condition name: `slab_no_track_caller` 127s --> /usr/share/cargo/registry/slab-0.4.9/src/lib.rs:1098:20 127s | 127s 1098 | #[cfg_attr(not(slab_no_track_caller), track_caller)] 127s | ^^^^^^^^^^^^^^^^^^^^ 127s | 127s = help: consider using a Cargo feature instead 127s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 127s [lints.rust] 127s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(slab_no_track_caller)'] } 127s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(slab_no_track_caller)");` to the top of the `build.rs` 127s = note: see for more information about checking conditional configuration 127s 127s warning: unexpected `cfg` condition name: `slab_no_track_caller` 127s --> /usr/share/cargo/registry/slab-0.4.9/src/lib.rs:1206:20 127s | 127s 1206 | #[cfg_attr(not(slab_no_track_caller), track_caller)] 127s | ^^^^^^^^^^^^^^^^^^^^ 127s | 127s = help: consider using a Cargo feature instead 127s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 127s [lints.rust] 127s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(slab_no_track_caller)'] } 127s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(slab_no_track_caller)");` to the top of the `build.rs` 127s = note: see for more information about checking conditional configuration 127s 127s warning: unexpected `cfg` condition name: `slab_no_track_caller` 127s --> /usr/share/cargo/registry/slab-0.4.9/src/lib.rs:1216:20 127s | 127s 1216 | #[cfg_attr(not(slab_no_track_caller), track_caller)] 127s | ^^^^^^^^^^^^^^^^^^^^ 127s | 127s = help: consider using a Cargo feature instead 127s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 127s [lints.rust] 127s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(slab_no_track_caller)'] } 127s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(slab_no_track_caller)");` to the top of the `build.rs` 127s = note: see for more information about checking conditional configuration 127s 127s warning: `slab` (lib) generated 7 warnings (1 duplicate) 127s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=crossbeam_utils CARGO_MANIFEST_DIR=/tmp/tmp.MZ13eKTYFc/registry/crossbeam-utils-0.8.19 CARGO_MANIFEST_PATH=/tmp/tmp.MZ13eKTYFc/registry/crossbeam-utils-0.8.19/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='Utilities for concurrent programming' CARGO_PKG_HOMEPAGE='https://github.com/crossbeam-rs/crossbeam/tree/master/crossbeam-utils' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=crossbeam-utils CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/crossbeam-rs/crossbeam' CARGO_PKG_RUST_VERSION=1.60 CARGO_PKG_VERSION=0.8.19 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=8 CARGO_PKG_VERSION_PATCH=19 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.MZ13eKTYFc/target/debug/deps OUT_DIR=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/build/crossbeam-utils-41ced09745ce2d1e/out rustc --crate-name crossbeam_utils --edition=2021 /tmp/tmp.MZ13eKTYFc/registry/crossbeam-utils-0.8.19/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "nightly", "std"))' -C metadata=bcaf20eecaf4c1fc -C extra-filename=-bcaf20eecaf4c1fc --out-dir /tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.MZ13eKTYFc/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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.MZ13eKTYFc/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 127s warning: unexpected `cfg` condition name: `crossbeam_loom` 127s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/lib.rs:42:7 127s | 127s 42 | #[cfg(crossbeam_loom)] 127s | ^^^^^^^^^^^^^^ 127s | 127s = help: expected names are: `clippy`, `debug_assertions`, `doc`, `docsrs`, `doctest`, `feature`, `fmt_debug`, `miri`, `overflow_checks`, `panic`, `proc_macro`, `relocation_model`, `rustfmt`, `sanitize`, `sanitizer_cfi_generalize_pointers`, `sanitizer_cfi_normalize_integers`, `target_abi`, `target_arch`, `target_endian`, `target_env`, `target_family`, `target_feature`, `target_has_atomic`, `target_has_atomic_equal_alignment`, `target_has_atomic_load_store`, `target_os`, `target_pointer_width`, `target_thread_local`, `target_vendor`, `test`, `ub_checks`, `unix`, and `windows` 127s = help: consider using a Cargo feature instead 127s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 127s [lints.rust] 127s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 127s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 127s = note: see for more information about checking conditional configuration 127s = note: `#[warn(unexpected_cfgs)]` on by default 127s 127s warning: unexpected `cfg` condition name: `crossbeam_loom` 127s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/lib.rs:65:11 127s | 127s 65 | #[cfg(not(crossbeam_loom))] 127s | ^^^^^^^^^^^^^^ 127s | 127s = help: consider using a Cargo feature instead 127s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 127s [lints.rust] 127s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 127s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 127s = note: see for more information about checking conditional configuration 127s 127s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 127s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/lib.rs:74:23 127s | 127s 74 | #[cfg(not(crossbeam_no_atomic))] 127s | ^^^^^^^^^^^^^^^^^^^ 127s | 127s = help: consider using a Cargo feature instead 127s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 127s [lints.rust] 127s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 127s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 127s = note: see for more information about checking conditional configuration 127s 127s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 127s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/lib.rs:78:23 127s | 127s 78 | #[cfg(not(crossbeam_no_atomic))] 127s | ^^^^^^^^^^^^^^^^^^^ 127s | 127s = help: consider using a Cargo feature instead 127s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 127s [lints.rust] 127s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 127s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 127s = note: see for more information about checking conditional configuration 127s 127s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 127s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/lib.rs:81:23 127s | 127s 81 | #[cfg(not(crossbeam_no_atomic))] 127s | ^^^^^^^^^^^^^^^^^^^ 127s | 127s = help: consider using a Cargo feature instead 127s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 127s [lints.rust] 127s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 127s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 127s = note: see for more information about checking conditional configuration 127s 127s warning: unexpected `cfg` condition name: `crossbeam_loom` 127s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/mod.rs:7:11 127s | 127s 7 | #[cfg(not(crossbeam_loom))] 127s | ^^^^^^^^^^^^^^ 127s | 127s = help: consider using a Cargo feature instead 127s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 127s [lints.rust] 127s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 127s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 127s = note: see for more information about checking conditional configuration 127s 127s warning: unexpected `cfg` condition name: `crossbeam_loom` 127s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/mod.rs:25:11 127s | 127s 25 | #[cfg(not(crossbeam_loom))] 127s | ^^^^^^^^^^^^^^ 127s | 127s = help: consider using a Cargo feature instead 127s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 127s [lints.rust] 127s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 127s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 127s = note: see for more information about checking conditional configuration 127s 127s warning: unexpected `cfg` condition name: `crossbeam_loom` 127s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/mod.rs:28:11 127s | 127s 28 | #[cfg(not(crossbeam_loom))] 127s | ^^^^^^^^^^^^^^ 127s | 127s = help: consider using a Cargo feature instead 127s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 127s [lints.rust] 127s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 127s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 127s = note: see for more information about checking conditional configuration 127s 127s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 127s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:1:11 127s | 127s 1 | #[cfg(not(crossbeam_no_atomic))] 127s | ^^^^^^^^^^^^^^^^^^^ 127s | 127s = help: consider using a Cargo feature instead 127s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 127s [lints.rust] 127s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 127s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 127s = note: see for more information about checking conditional configuration 127s 127s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 127s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:27:11 127s | 127s 27 | #[cfg(not(crossbeam_no_atomic))] 127s | ^^^^^^^^^^^^^^^^^^^ 127s | 127s = help: consider using a Cargo feature instead 127s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 127s [lints.rust] 127s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 127s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 127s = note: see for more information about checking conditional configuration 127s 127s warning: unexpected `cfg` condition name: `crossbeam_loom` 127s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:36:19 127s | 127s 36 | not(any(miri, crossbeam_loom, crossbeam_sanitize_thread)), 127s | ^^^^^^^^^^^^^^ 127s | 127s = help: consider using a Cargo feature instead 127s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 127s [lints.rust] 127s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 127s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 127s = note: see for more information about checking conditional configuration 127s 127s warning: unexpected `cfg` condition name: `crossbeam_sanitize_thread` 127s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:36:35 127s | 127s 36 | not(any(miri, crossbeam_loom, crossbeam_sanitize_thread)), 127s | ^^^^^^^^^^^^^^^^^^^^^^^^^ 127s | 127s = help: consider using a Cargo feature instead 127s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 127s [lints.rust] 127s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_sanitize_thread)'] } 127s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_sanitize_thread)");` to the top of the `build.rs` 127s = note: see for more information about checking conditional configuration 127s 127s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 127s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:50:11 127s | 127s 50 | #[cfg(not(crossbeam_no_atomic))] 127s | ^^^^^^^^^^^^^^^^^^^ 127s | 127s = help: consider using a Cargo feature instead 127s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 127s [lints.rust] 127s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 127s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 127s = note: see for more information about checking conditional configuration 127s 127s warning: unexpected `cfg` condition name: `crossbeam_loom` 127s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:53:19 127s | 127s 53 | not(any(miri, crossbeam_loom, crossbeam_sanitize_thread)), 127s | ^^^^^^^^^^^^^^ 127s | 127s = help: consider using a Cargo feature instead 127s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 127s [lints.rust] 127s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 127s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 127s = note: see for more information about checking conditional configuration 127s 127s warning: unexpected `cfg` condition name: `crossbeam_sanitize_thread` 127s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:53:35 127s | 127s 53 | not(any(miri, crossbeam_loom, crossbeam_sanitize_thread)), 127s | ^^^^^^^^^^^^^^^^^^^^^^^^^ 127s | 127s = help: consider using a Cargo feature instead 127s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 127s [lints.rust] 127s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_sanitize_thread)'] } 127s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_sanitize_thread)");` to the top of the `build.rs` 127s = note: see for more information about checking conditional configuration 127s 127s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 127s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:101:11 127s | 127s 101 | #[cfg(not(crossbeam_no_atomic))] 127s | ^^^^^^^^^^^^^^^^^^^ 127s | 127s = help: consider using a Cargo feature instead 127s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 127s [lints.rust] 127s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 127s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 127s = note: see for more information about checking conditional configuration 127s 127s warning: unexpected `cfg` condition name: `crossbeam_loom` 127s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:107:7 127s | 127s 107 | #[cfg(crossbeam_loom)] 127s | ^^^^^^^^^^^^^^ 127s | 127s = help: consider using a Cargo feature instead 127s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 127s [lints.rust] 127s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 127s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 127s = note: see for more information about checking conditional configuration 127s 127s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 127s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:66:19 127s | 127s 66 | #[cfg(not(crossbeam_no_atomic))] 127s | ^^^^^^^^^^^^^^^^^^^ 127s ... 127s 79 | impl_atomic!(AtomicBool, bool); 127s | ------------------------------ in this macro invocation 127s | 127s = help: consider using a Cargo feature instead 127s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 127s [lints.rust] 127s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 127s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 127s = note: see for more information about checking conditional configuration 127s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 127s 127s warning: unexpected `cfg` condition name: `crossbeam_loom` 127s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:71:15 127s | 127s 71 | #[cfg(crossbeam_loom)] 127s | ^^^^^^^^^^^^^^ 127s ... 127s 79 | impl_atomic!(AtomicBool, bool); 127s | ------------------------------ in this macro invocation 127s | 127s = help: consider using a Cargo feature instead 127s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 127s [lints.rust] 127s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 127s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 127s = note: see for more information about checking conditional configuration 127s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 127s 127s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 127s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:66:19 127s | 127s 66 | #[cfg(not(crossbeam_no_atomic))] 127s | ^^^^^^^^^^^^^^^^^^^ 127s ... 127s 80 | impl_atomic!(AtomicUsize, usize); 127s | -------------------------------- in this macro invocation 127s | 127s = help: consider using a Cargo feature instead 127s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 127s [lints.rust] 127s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 127s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 127s = note: see for more information about checking conditional configuration 127s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 127s 127s warning: unexpected `cfg` condition name: `crossbeam_loom` 127s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:71:15 127s | 127s 71 | #[cfg(crossbeam_loom)] 127s | ^^^^^^^^^^^^^^ 127s ... 127s 80 | impl_atomic!(AtomicUsize, usize); 127s | -------------------------------- in this macro invocation 127s | 127s = help: consider using a Cargo feature instead 127s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 127s [lints.rust] 127s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 127s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 127s = note: see for more information about checking conditional configuration 127s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 127s 127s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 127s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:66:19 127s | 127s 66 | #[cfg(not(crossbeam_no_atomic))] 127s | ^^^^^^^^^^^^^^^^^^^ 127s ... 127s 81 | impl_atomic!(AtomicIsize, isize); 127s | -------------------------------- in this macro invocation 127s | 127s = help: consider using a Cargo feature instead 127s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 127s [lints.rust] 127s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 127s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 127s = note: see for more information about checking conditional configuration 127s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 127s 127s warning: unexpected `cfg` condition name: `crossbeam_loom` 127s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:71:15 127s | 127s 71 | #[cfg(crossbeam_loom)] 127s | ^^^^^^^^^^^^^^ 127s ... 127s 81 | impl_atomic!(AtomicIsize, isize); 127s | -------------------------------- in this macro invocation 127s | 127s = help: consider using a Cargo feature instead 127s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 127s [lints.rust] 127s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 127s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 127s = note: see for more information about checking conditional configuration 127s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 127s 127s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 127s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:66:19 127s | 127s 66 | #[cfg(not(crossbeam_no_atomic))] 127s | ^^^^^^^^^^^^^^^^^^^ 127s ... 127s 82 | impl_atomic!(AtomicU8, u8); 127s | -------------------------- in this macro invocation 127s | 127s = help: consider using a Cargo feature instead 127s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 127s [lints.rust] 127s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 127s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 127s = note: see for more information about checking conditional configuration 127s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 127s 127s warning: unexpected `cfg` condition name: `crossbeam_loom` 127s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:71:15 127s | 127s 71 | #[cfg(crossbeam_loom)] 127s | ^^^^^^^^^^^^^^ 127s ... 127s 82 | impl_atomic!(AtomicU8, u8); 127s | -------------------------- in this macro invocation 127s | 127s = help: consider using a Cargo feature instead 127s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 127s [lints.rust] 127s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 127s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 127s = note: see for more information about checking conditional configuration 127s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 127s 127s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 127s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:66:19 127s | 127s 66 | #[cfg(not(crossbeam_no_atomic))] 127s | ^^^^^^^^^^^^^^^^^^^ 127s ... 127s 83 | impl_atomic!(AtomicI8, i8); 127s | -------------------------- in this macro invocation 127s | 127s = help: consider using a Cargo feature instead 127s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 127s [lints.rust] 127s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 127s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 127s = note: see for more information about checking conditional configuration 127s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 127s 127s warning: unexpected `cfg` condition name: `crossbeam_loom` 127s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:71:15 127s | 127s 71 | #[cfg(crossbeam_loom)] 127s | ^^^^^^^^^^^^^^ 127s ... 127s 83 | impl_atomic!(AtomicI8, i8); 127s | -------------------------- in this macro invocation 127s | 127s = help: consider using a Cargo feature instead 127s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 127s [lints.rust] 127s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 127s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 127s = note: see for more information about checking conditional configuration 127s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 127s 127s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 127s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:66:19 127s | 127s 66 | #[cfg(not(crossbeam_no_atomic))] 127s | ^^^^^^^^^^^^^^^^^^^ 127s ... 127s 84 | impl_atomic!(AtomicU16, u16); 127s | ---------------------------- in this macro invocation 127s | 127s = help: consider using a Cargo feature instead 127s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 127s [lints.rust] 127s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 127s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 127s = note: see for more information about checking conditional configuration 127s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 127s 127s warning: unexpected `cfg` condition name: `crossbeam_loom` 127s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:71:15 127s | 127s 71 | #[cfg(crossbeam_loom)] 127s | ^^^^^^^^^^^^^^ 127s ... 127s 84 | impl_atomic!(AtomicU16, u16); 127s | ---------------------------- in this macro invocation 127s | 127s = help: consider using a Cargo feature instead 127s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 127s [lints.rust] 127s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 127s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 127s = note: see for more information about checking conditional configuration 127s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 127s 127s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 127s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:66:19 127s | 127s 66 | #[cfg(not(crossbeam_no_atomic))] 127s | ^^^^^^^^^^^^^^^^^^^ 127s ... 127s 85 | impl_atomic!(AtomicI16, i16); 127s | ---------------------------- in this macro invocation 127s | 127s = help: consider using a Cargo feature instead 127s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 127s [lints.rust] 127s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 127s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 127s = note: see for more information about checking conditional configuration 127s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 127s 127s warning: unexpected `cfg` condition name: `crossbeam_loom` 127s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:71:15 127s | 127s 71 | #[cfg(crossbeam_loom)] 127s | ^^^^^^^^^^^^^^ 127s ... 127s 85 | impl_atomic!(AtomicI16, i16); 127s | ---------------------------- in this macro invocation 127s | 127s = help: consider using a Cargo feature instead 127s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 127s [lints.rust] 127s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 127s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 127s = note: see for more information about checking conditional configuration 127s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 127s 127s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 127s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:66:19 127s | 127s 66 | #[cfg(not(crossbeam_no_atomic))] 127s | ^^^^^^^^^^^^^^^^^^^ 127s ... 127s 87 | impl_atomic!(AtomicU32, u32); 127s | ---------------------------- in this macro invocation 127s | 127s = help: consider using a Cargo feature instead 127s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 127s [lints.rust] 127s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 127s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 127s = note: see for more information about checking conditional configuration 127s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 127s 127s warning: unexpected `cfg` condition name: `crossbeam_loom` 127s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:71:15 127s | 127s 71 | #[cfg(crossbeam_loom)] 127s | ^^^^^^^^^^^^^^ 127s ... 127s 87 | impl_atomic!(AtomicU32, u32); 127s | ---------------------------- in this macro invocation 127s | 127s = help: consider using a Cargo feature instead 127s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 127s [lints.rust] 127s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 127s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 127s = note: see for more information about checking conditional configuration 127s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 127s 127s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 127s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:66:19 127s | 127s 66 | #[cfg(not(crossbeam_no_atomic))] 127s | ^^^^^^^^^^^^^^^^^^^ 127s ... 127s 89 | impl_atomic!(AtomicI32, i32); 127s | ---------------------------- in this macro invocation 127s | 127s = help: consider using a Cargo feature instead 127s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 127s [lints.rust] 127s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 127s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 127s = note: see for more information about checking conditional configuration 127s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 127s 127s warning: unexpected `cfg` condition name: `crossbeam_loom` 127s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:71:15 127s | 127s 71 | #[cfg(crossbeam_loom)] 127s | ^^^^^^^^^^^^^^ 127s ... 127s 89 | impl_atomic!(AtomicI32, i32); 127s | ---------------------------- in this macro invocation 127s | 127s = help: consider using a Cargo feature instead 127s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 127s [lints.rust] 127s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 127s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 127s = note: see for more information about checking conditional configuration 127s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 127s 127s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 127s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:66:19 127s | 127s 66 | #[cfg(not(crossbeam_no_atomic))] 127s | ^^^^^^^^^^^^^^^^^^^ 127s ... 127s 94 | impl_atomic!(AtomicU64, u64); 127s | ---------------------------- in this macro invocation 127s | 127s = help: consider using a Cargo feature instead 127s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 127s [lints.rust] 127s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 127s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 127s = note: see for more information about checking conditional configuration 127s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 127s 127s warning: unexpected `cfg` condition name: `crossbeam_loom` 127s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:71:15 127s | 127s 71 | #[cfg(crossbeam_loom)] 127s | ^^^^^^^^^^^^^^ 127s ... 127s 94 | impl_atomic!(AtomicU64, u64); 127s | ---------------------------- in this macro invocation 127s | 127s = help: consider using a Cargo feature instead 127s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 127s [lints.rust] 127s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 127s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 127s = note: see for more information about checking conditional configuration 127s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 127s 127s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 127s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:66:19 127s | 127s 66 | #[cfg(not(crossbeam_no_atomic))] 127s | ^^^^^^^^^^^^^^^^^^^ 127s ... 127s 99 | impl_atomic!(AtomicI64, i64); 127s | ---------------------------- in this macro invocation 127s | 127s = help: consider using a Cargo feature instead 127s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 127s [lints.rust] 127s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 127s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 127s = note: see for more information about checking conditional configuration 127s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 127s 127s warning: unexpected `cfg` condition name: `crossbeam_loom` 127s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:71:15 127s | 127s 71 | #[cfg(crossbeam_loom)] 127s | ^^^^^^^^^^^^^^ 127s ... 127s 99 | impl_atomic!(AtomicI64, i64); 127s | ---------------------------- in this macro invocation 127s | 127s = help: consider using a Cargo feature instead 127s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 127s [lints.rust] 127s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 127s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 127s = note: see for more information about checking conditional configuration 127s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 127s 127s 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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0--remap-path-prefix/tmp/tmp.MZ13eKTYFc/registry=/usr/share/cargo/registry-Ctarget-feature=+backchain' CARGO_FEATURE_V2_58=1 CARGO_FEATURE_V2_62=1 CARGO_FEATURE_V2_66=1 CARGO_MANIFEST_DIR=/tmp/tmp.MZ13eKTYFc/registry/gobject-sys-0.20.7 CARGO_MANIFEST_PATH=/tmp/tmp.MZ13eKTYFc/registry/gobject-sys-0.20.7/Cargo.toml CARGO_PKG_AUTHORS='The gtk-rs Project Developers' CARGO_PKG_DESCRIPTION='FFI bindings to libgobject-2.0' CARGO_PKG_HOMEPAGE='https://gtk-rs.org/' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=gobject-sys CARGO_PKG_README='' CARGO_PKG_REPOSITORY='https://github.com/gtk-rs/gtk-rs-core' CARGO_PKG_RUST_VERSION=1.70 CARGO_PKG_VERSION=0.20.7 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=20 CARGO_PKG_VERSION_PATCH=7 CARGO_PKG_VERSION_PRE='' DEBUG=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.MZ13eKTYFc/target/debug/deps:/tmp/tmp.MZ13eKTYFc/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/build/gobject-sys-613b865e2134d7fa/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.MZ13eKTYFc/target/debug/build/gobject-sys-5e250a0f9872c007/build-script-build` 127s [gobject-sys 0.20.7] cargo:rerun-if-changed=/tmp/tmp.MZ13eKTYFc/registry/gobject-sys-0.20.7/Cargo.toml 127s [gobject-sys 0.20.7] cargo:rerun-if-env-changed=GOBJECT_2.0_NO_PKG_CONFIG 127s [gobject-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_s390x-unknown-linux-gnu 127s [gobject-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_s390x_unknown_linux_gnu 127s [gobject-sys 0.20.7] cargo:rerun-if-env-changed=HOST_PKG_CONFIG 127s [gobject-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG 127s [gobject-sys 0.20.7] cargo:rerun-if-env-changed=DEB_HOST_GNU_TYPE 127s [gobject-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_PATH_s390x-unknown-linux-gnu 127s [gobject-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_PATH_s390x_unknown_linux_gnu 127s [gobject-sys 0.20.7] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_PATH 127s [gobject-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_PATH 127s [gobject-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR_s390x-unknown-linux-gnu 127s [gobject-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR_s390x_unknown_linux_gnu 127s [gobject-sys 0.20.7] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_LIBDIR 127s [gobject-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR 127s [gobject-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR_s390x-unknown-linux-gnu 127s [gobject-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR_s390x_unknown_linux_gnu 127s [gobject-sys 0.20.7] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_SYSROOT_DIR 127s [gobject-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR 127s [gobject-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR 127s [gobject-sys 0.20.7] cargo:rerun-if-env-changed=SYSROOT 127s [gobject-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_s390x-unknown-linux-gnu 127s [gobject-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_s390x_unknown_linux_gnu 127s [gobject-sys 0.20.7] cargo:rerun-if-env-changed=HOST_PKG_CONFIG 127s [gobject-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG 127s [gobject-sys 0.20.7] cargo:rerun-if-env-changed=DEB_HOST_GNU_TYPE 127s [gobject-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_PATH_s390x-unknown-linux-gnu 127s [gobject-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_PATH_s390x_unknown_linux_gnu 127s [gobject-sys 0.20.7] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_PATH 127s [gobject-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_PATH 127s [gobject-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR_s390x-unknown-linux-gnu 127s [gobject-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR_s390x_unknown_linux_gnu 127s [gobject-sys 0.20.7] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_LIBDIR 127s [gobject-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR 127s [gobject-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR_s390x-unknown-linux-gnu 127s [gobject-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR_s390x_unknown_linux_gnu 127s [gobject-sys 0.20.7] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_SYSROOT_DIR 127s [gobject-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR 127s [gobject-sys 0.20.7] cargo:rustc-link-lib=gobject-2.0 127s [gobject-sys 0.20.7] cargo:rustc-link-lib=glib-2.0 127s [gobject-sys 0.20.7] cargo:include=/usr/include:/usr/include/glib-2.0:/usr/lib/s390x-linux-gnu/glib-2.0/include:/usr/include/sysprof-6 127s [gobject-sys 0.20.7] cargo:rerun-if-env-changed=SYSTEM_DEPS_BUILD_INTERNAL 127s [gobject-sys 0.20.7] cargo:rerun-if-env-changed=SYSTEM_DEPS_LINK 127s [gobject-sys 0.20.7] cargo:rerun-if-env-changed=SYSTEM_DEPS_GOBJECT_2_0_LIB 127s [gobject-sys 0.20.7] cargo:rerun-if-env-changed=SYSTEM_DEPS_GOBJECT_2_0_LIB_FRAMEWORK 127s [gobject-sys 0.20.7] cargo:rerun-if-env-changed=SYSTEM_DEPS_GOBJECT_2_0_SEARCH_NATIVE 127s [gobject-sys 0.20.7] cargo:rerun-if-env-changed=SYSTEM_DEPS_GOBJECT_2_0_SEARCH_FRAMEWORK 127s [gobject-sys 0.20.7] cargo:rerun-if-env-changed=SYSTEM_DEPS_GOBJECT_2_0_INCLUDE 127s [gobject-sys 0.20.7] cargo:rerun-if-env-changed=SYSTEM_DEPS_GOBJECT_2_0_LDFLAGS 127s [gobject-sys 0.20.7] cargo:rerun-if-env-changed=SYSTEM_DEPS_GOBJECT_2_0_NO_PKG_CONFIG 127s [gobject-sys 0.20.7] cargo:rerun-if-env-changed=SYSTEM_DEPS_GOBJECT_2_0_BUILD_INTERNAL 127s [gobject-sys 0.20.7] cargo:rerun-if-env-changed=SYSTEM_DEPS_GOBJECT_2_0_LINK 127s [gobject-sys 0.20.7] 127s [gobject-sys 0.20.7] cargo:rustc-cfg=system_deps_have_gobject_2_0 127s Compiling parking v2.2.0 127s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=parking CARGO_MANIFEST_DIR=/tmp/tmp.MZ13eKTYFc/registry/parking-2.2.0 CARGO_MANIFEST_PATH=/tmp/tmp.MZ13eKTYFc/registry/parking-2.2.0/Cargo.toml CARGO_PKG_AUTHORS='Stjepan Glavina :The Rust Project Developers' CARGO_PKG_DESCRIPTION='Thread parking and unparking' CARGO_PKG_HOMEPAGE='https://github.com/smol-rs/parking' CARGO_PKG_LICENSE='Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=parking CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/smol-rs/parking' CARGO_PKG_RUST_VERSION=1.51 CARGO_PKG_VERSION=2.2.0 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.MZ13eKTYFc/target/debug/deps rustc --crate-name parking --edition=2018 /tmp/tmp.MZ13eKTYFc/registry/parking-2.2.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=0a38dc17b1bc33e2 -C extra-filename=-0a38dc17b1bc33e2 --out-dir /tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.MZ13eKTYFc/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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.MZ13eKTYFc/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 127s warning: unexpected `cfg` condition name: `loom` 127s --> /usr/share/cargo/registry/parking-2.2.0/src/lib.rs:41:15 127s | 127s 41 | #[cfg(not(all(loom, feature = "loom")))] 127s | ^^^^ 127s | 127s = help: expected names are: `clippy`, `debug_assertions`, `doc`, `docsrs`, `doctest`, `feature`, `fmt_debug`, `miri`, `overflow_checks`, `panic`, `proc_macro`, `relocation_model`, `rustfmt`, `sanitize`, `sanitizer_cfi_generalize_pointers`, `sanitizer_cfi_normalize_integers`, `target_abi`, `target_arch`, `target_endian`, `target_env`, `target_family`, `target_feature`, `target_has_atomic`, `target_has_atomic_equal_alignment`, `target_has_atomic_load_store`, `target_os`, `target_pointer_width`, `target_thread_local`, `target_vendor`, `test`, `ub_checks`, `unix`, and `windows` 127s = help: consider using a Cargo feature instead 127s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 127s [lints.rust] 127s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(loom)'] } 127s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(loom)");` to the top of the `build.rs` 127s = note: see for more information about checking conditional configuration 127s = note: `#[warn(unexpected_cfgs)]` on by default 127s 127s warning: unexpected `cfg` condition value: `loom` 127s --> /usr/share/cargo/registry/parking-2.2.0/src/lib.rs:41:21 127s | 127s 41 | #[cfg(not(all(loom, feature = "loom")))] 127s | ^^^^^^^^^^^^^^^^ help: remove the condition 127s | 127s = note: no expected values for `feature` 127s = help: consider adding `loom` as a feature in `Cargo.toml` 127s = note: see for more information about checking conditional configuration 127s 127s warning: unexpected `cfg` condition name: `loom` 127s --> /usr/share/cargo/registry/parking-2.2.0/src/lib.rs:44:11 127s | 127s 44 | #[cfg(all(loom, feature = "loom"))] 127s | ^^^^ 127s | 127s = help: consider using a Cargo feature instead 127s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 127s [lints.rust] 127s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(loom)'] } 127s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(loom)");` to the top of the `build.rs` 127s = note: see for more information about checking conditional configuration 127s 127s warning: unexpected `cfg` condition value: `loom` 127s --> /usr/share/cargo/registry/parking-2.2.0/src/lib.rs:44:17 127s | 127s 44 | #[cfg(all(loom, feature = "loom"))] 127s | ^^^^^^^^^^^^^^^^ help: remove the condition 127s | 127s = note: no expected values for `feature` 127s = help: consider adding `loom` as a feature in `Cargo.toml` 127s = note: see for more information about checking conditional configuration 127s 127s warning: unexpected `cfg` condition name: `loom` 127s --> /usr/share/cargo/registry/parking-2.2.0/src/lib.rs:54:15 127s | 127s 54 | #[cfg(not(all(loom, feature = "loom")))] 127s | ^^^^ 127s | 127s = help: consider using a Cargo feature instead 127s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 127s [lints.rust] 127s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(loom)'] } 127s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(loom)");` to the top of the `build.rs` 127s = note: see for more information about checking conditional configuration 127s 127s warning: unexpected `cfg` condition value: `loom` 127s --> /usr/share/cargo/registry/parking-2.2.0/src/lib.rs:54:21 127s | 127s 54 | #[cfg(not(all(loom, feature = "loom")))] 127s | ^^^^^^^^^^^^^^^^ help: remove the condition 127s | 127s = note: no expected values for `feature` 127s = help: consider adding `loom` as a feature in `Cargo.toml` 127s = note: see for more information about checking conditional configuration 127s 127s warning: unexpected `cfg` condition name: `loom` 127s --> /usr/share/cargo/registry/parking-2.2.0/src/lib.rs:140:15 127s | 127s 140 | #[cfg(not(loom))] 127s | ^^^^ 127s | 127s = help: consider using a Cargo feature instead 127s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 127s [lints.rust] 127s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(loom)'] } 127s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(loom)");` to the top of the `build.rs` 127s = note: see for more information about checking conditional configuration 127s 127s warning: unexpected `cfg` condition name: `loom` 127s --> /usr/share/cargo/registry/parking-2.2.0/src/lib.rs:160:15 127s | 127s 160 | #[cfg(not(loom))] 127s | ^^^^ 127s | 127s = help: consider using a Cargo feature instead 127s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 127s [lints.rust] 127s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(loom)'] } 127s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(loom)");` to the top of the `build.rs` 127s = note: see for more information about checking conditional configuration 127s 127s warning: unexpected `cfg` condition name: `loom` 127s --> /usr/share/cargo/registry/parking-2.2.0/src/lib.rs:379:27 127s | 127s 379 | #[cfg(not(loom))] 127s | ^^^^ 127s | 127s = help: consider using a Cargo feature instead 127s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 127s [lints.rust] 127s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(loom)'] } 127s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(loom)");` to the top of the `build.rs` 127s = note: see for more information about checking conditional configuration 127s 127s warning: unexpected `cfg` condition name: `loom` 127s --> /usr/share/cargo/registry/parking-2.2.0/src/lib.rs:393:23 127s | 127s 393 | #[cfg(loom)] 127s | ^^^^ 127s | 127s = help: consider using a Cargo feature instead 127s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 127s [lints.rust] 127s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(loom)'] } 127s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(loom)");` to the top of the `build.rs` 127s = note: see for more information about checking conditional configuration 127s 127s warning: `crossbeam-utils` (lib) generated 40 warnings (1 duplicate) 127s Compiling bitflags v2.8.0 127s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=bitflags CARGO_MANIFEST_DIR=/tmp/tmp.MZ13eKTYFc/registry/bitflags-2.8.0 CARGO_MANIFEST_PATH=/tmp/tmp.MZ13eKTYFc/registry/bitflags-2.8.0/Cargo.toml CARGO_PKG_AUTHORS='The Rust Project Developers' CARGO_PKG_DESCRIPTION='A macro to generate structures which behave like bitflags. 127s ' CARGO_PKG_HOMEPAGE='https://github.com/bitflags/bitflags' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=bitflags CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/bitflags/bitflags' CARGO_PKG_RUST_VERSION=1.56.0 CARGO_PKG_VERSION=2.8.0 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=8 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.MZ13eKTYFc/target/debug/deps rustc --crate-name bitflags --edition=2021 /tmp/tmp.MZ13eKTYFc/registry/bitflags-2.8.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("arbitrary", "bytemuck", "compiler_builtins", "core", "example_generated", "rustc-dep-of-std", "serde", "std"))' -C metadata=65f3f529c7b65778 -C extra-filename=-65f3f529c7b65778 --out-dir /tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.MZ13eKTYFc/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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.MZ13eKTYFc/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 127s warning: `parking` (lib) generated 11 warnings (1 duplicate) 127s Compiling concurrent-queue v2.5.0 127s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=concurrent_queue CARGO_MANIFEST_DIR=/tmp/tmp.MZ13eKTYFc/registry/concurrent-queue-2.5.0 CARGO_MANIFEST_PATH=/tmp/tmp.MZ13eKTYFc/registry/concurrent-queue-2.5.0/Cargo.toml CARGO_PKG_AUTHORS='Stjepan Glavina :Taiki Endo :John Nunley ' CARGO_PKG_DESCRIPTION='Concurrent multi-producer multi-consumer queue' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=concurrent-queue CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/smol-rs/concurrent-queue' CARGO_PKG_RUST_VERSION=1.60 CARGO_PKG_VERSION=2.5.0 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=5 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.MZ13eKTYFc/target/debug/deps rustc --crate-name concurrent_queue --edition=2021 /tmp/tmp.MZ13eKTYFc/registry/concurrent-queue-2.5.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "portable-atomic", "std"))' -C metadata=7e82393ecc7068db -C extra-filename=-7e82393ecc7068db --out-dir /tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.MZ13eKTYFc/target/debug/deps --extern crossbeam_utils=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/libcrossbeam_utils-bcaf20eecaf4c1fc.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.MZ13eKTYFc/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 127s warning: unexpected `cfg` condition name: `loom` 127s --> /usr/share/cargo/registry/concurrent-queue-2.5.0/src/bounded.rs:209:23 127s | 127s 209 | #[cfg(loom)] 127s | ^^^^ 127s | 127s = help: expected names are: `clippy`, `debug_assertions`, `doc`, `docsrs`, `doctest`, `feature`, `fmt_debug`, `miri`, `overflow_checks`, `panic`, `proc_macro`, `relocation_model`, `rustfmt`, `sanitize`, `sanitizer_cfi_generalize_pointers`, `sanitizer_cfi_normalize_integers`, `target_abi`, `target_arch`, `target_endian`, `target_env`, `target_family`, `target_feature`, `target_has_atomic`, `target_has_atomic_equal_alignment`, `target_has_atomic_load_store`, `target_os`, `target_pointer_width`, `target_thread_local`, `target_vendor`, `test`, `ub_checks`, `unix`, and `windows` 127s = help: consider using a Cargo feature instead 127s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 127s [lints.rust] 127s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(loom)'] } 127s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(loom)");` to the top of the `build.rs` 127s = note: see for more information about checking conditional configuration 127s = note: `#[warn(unexpected_cfgs)]` on by default 127s 127s warning: unexpected `cfg` condition name: `loom` 127s --> /usr/share/cargo/registry/concurrent-queue-2.5.0/src/bounded.rs:281:23 127s | 127s 281 | #[cfg(loom)] 127s | ^^^^ 127s | 127s = help: consider using a Cargo feature instead 127s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 127s [lints.rust] 127s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(loom)'] } 127s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(loom)");` to the top of the `build.rs` 127s = note: see for more information about checking conditional configuration 127s 127s warning: unexpected `cfg` condition name: `loom` 127s --> /usr/share/cargo/registry/concurrent-queue-2.5.0/src/unbounded.rs:43:15 127s | 127s 43 | #[cfg(not(loom))] 127s | ^^^^ 127s | 127s = help: consider using a Cargo feature instead 127s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 127s [lints.rust] 127s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(loom)'] } 127s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(loom)");` to the top of the `build.rs` 127s = note: see for more information about checking conditional configuration 127s 127s warning: unexpected `cfg` condition name: `loom` 127s --> /usr/share/cargo/registry/concurrent-queue-2.5.0/src/unbounded.rs:49:15 127s | 127s 49 | #[cfg(not(loom))] 127s | ^^^^ 127s | 127s = help: consider using a Cargo feature instead 127s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 127s [lints.rust] 127s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(loom)'] } 127s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(loom)");` to the top of the `build.rs` 127s = note: see for more information about checking conditional configuration 127s 127s warning: unexpected `cfg` condition name: `loom` 127s --> /usr/share/cargo/registry/concurrent-queue-2.5.0/src/unbounded.rs:54:11 127s | 127s 54 | #[cfg(loom)] 127s | ^^^^ 127s | 127s = help: consider using a Cargo feature instead 127s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 127s [lints.rust] 127s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(loom)'] } 127s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(loom)");` to the top of the `build.rs` 127s = note: see for more information about checking conditional configuration 127s 127s warning: unexpected `cfg` condition name: `loom` 127s --> /usr/share/cargo/registry/concurrent-queue-2.5.0/src/unbounded.rs:153:29 127s | 127s 153 | const_if: #[cfg(not(loom))]; 127s | ^^^^ 127s | 127s = help: consider using a Cargo feature instead 127s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 127s [lints.rust] 127s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(loom)'] } 127s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(loom)");` to the top of the `build.rs` 127s = note: see for more information about checking conditional configuration 127s 127s warning: unexpected `cfg` condition name: `loom` 127s --> /usr/share/cargo/registry/concurrent-queue-2.5.0/src/sync.rs:3:44 127s | 127s 3 | #[cfg(all(feature = "portable-atomic", not(loom)))] 127s | ^^^^ 127s | 127s = help: consider using a Cargo feature instead 127s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 127s [lints.rust] 127s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(loom)'] } 127s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(loom)");` to the top of the `build.rs` 127s = note: see for more information about checking conditional configuration 127s 127s warning: unexpected `cfg` condition name: `loom` 127s --> /usr/share/cargo/registry/concurrent-queue-2.5.0/src/sync.rs:15:49 127s | 127s 15 | #[cfg(all(not(feature = "portable-atomic"), not(loom)))] 127s | ^^^^ 127s | 127s = help: consider using a Cargo feature instead 127s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 127s [lints.rust] 127s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(loom)'] } 127s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(loom)");` to the top of the `build.rs` 127s = note: see for more information about checking conditional configuration 127s 127s warning: unexpected `cfg` condition name: `loom` 127s --> /usr/share/cargo/registry/concurrent-queue-2.5.0/src/sync.rs:31:7 127s | 127s 31 | #[cfg(loom)] 127s | ^^^^ 127s | 127s = help: consider using a Cargo feature instead 127s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 127s [lints.rust] 127s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(loom)'] } 127s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(loom)");` to the top of the `build.rs` 127s = note: see for more information about checking conditional configuration 127s 127s warning: unexpected `cfg` condition name: `loom` 127s --> /usr/share/cargo/registry/concurrent-queue-2.5.0/src/sync.rs:57:7 127s | 127s 57 | #[cfg(loom)] 127s | ^^^^ 127s | 127s = help: consider using a Cargo feature instead 127s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 127s [lints.rust] 127s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(loom)'] } 127s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(loom)");` to the top of the `build.rs` 127s = note: see for more information about checking conditional configuration 127s 127s warning: unexpected `cfg` condition name: `loom` 127s --> /usr/share/cargo/registry/concurrent-queue-2.5.0/src/sync.rs:60:11 127s | 127s 60 | #[cfg(not(loom))] 127s | ^^^^ 127s | 127s = help: consider using a Cargo feature instead 127s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 127s [lints.rust] 127s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(loom)'] } 127s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(loom)");` to the top of the `build.rs` 127s = note: see for more information about checking conditional configuration 127s 127s warning: unexpected `cfg` condition name: `loom` 127s --> /usr/share/cargo/registry/concurrent-queue-2.5.0/src/lib.rs:153:29 127s | 127s 153 | const_if: #[cfg(not(loom))]; 127s | ^^^^ 127s | 127s = help: consider using a Cargo feature instead 127s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 127s [lints.rust] 127s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(loom)'] } 127s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(loom)");` to the top of the `build.rs` 127s = note: see for more information about checking conditional configuration 127s 127s warning: unexpected `cfg` condition name: `loom` 127s --> /usr/share/cargo/registry/concurrent-queue-2.5.0/src/lib.rs:633:80 127s | 127s 633 | #[cfg(all(any(target_arch = "x86", target_arch = "x86_64"), not(miri), not(loom)))] 127s | ^^^^ 127s | 127s = help: consider using a Cargo feature instead 127s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 127s [lints.rust] 127s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(loom)'] } 127s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(loom)");` to the top of the `build.rs` 127s = note: see for more information about checking conditional configuration 127s 127s warning: `concurrent-queue` (lib) generated 14 warnings (1 duplicate) 127s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=gobject_sys CARGO_MANIFEST_DIR=/tmp/tmp.MZ13eKTYFc/registry/gobject-sys-0.20.7 CARGO_MANIFEST_PATH=/tmp/tmp.MZ13eKTYFc/registry/gobject-sys-0.20.7/Cargo.toml CARGO_PKG_AUTHORS='The gtk-rs Project Developers' CARGO_PKG_DESCRIPTION='FFI bindings to libgobject-2.0' CARGO_PKG_HOMEPAGE='https://gtk-rs.org/' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=gobject-sys CARGO_PKG_README='' CARGO_PKG_REPOSITORY='https://github.com/gtk-rs/gtk-rs-core' CARGO_PKG_RUST_VERSION=1.70 CARGO_PKG_VERSION=0.20.7 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=20 CARGO_PKG_VERSION_PATCH=7 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.MZ13eKTYFc/target/debug/deps OUT_DIR=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/build/gobject-sys-613b865e2134d7fa/out rustc --crate-name gobject_sys --edition=2021 /tmp/tmp.MZ13eKTYFc/registry/gobject-sys-0.20.7/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="v2_58"' --cfg 'feature="v2_62"' --cfg 'feature="v2_66"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("v2_58", "v2_62", "v2_66", "v2_68", "v2_70", "v2_72", "v2_74", "v2_76", "v2_78", "v2_80", "v2_82"))' -C metadata=c41d1b14aec65cc2 -C extra-filename=-c41d1b14aec65cc2 --out-dir /tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.MZ13eKTYFc/target/debug/deps --extern glib_sys=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/libglib_sys-8d7612a6c3ae820a.rmeta --extern libc=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/liblibc-cf2521928ac070dc.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.MZ13eKTYFc/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain -l gobject-2.0 -l glib-2.0 --cfg system_deps_have_gobject_2_0` 127s warning: `bitflags` (lib) generated 1 warning (1 duplicate) 127s Compiling gio-sys v0.20.8 127s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.MZ13eKTYFc/registry/gio-sys-0.20.8 CARGO_MANIFEST_PATH=/tmp/tmp.MZ13eKTYFc/registry/gio-sys-0.20.8/Cargo.toml CARGO_PKG_AUTHORS='The gtk-rs Project Developers' CARGO_PKG_DESCRIPTION='FFI bindings to libgio-2.0' CARGO_PKG_HOMEPAGE='https://gtk-rs.org/' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=gio-sys CARGO_PKG_README='' CARGO_PKG_REPOSITORY='https://github.com/gtk-rs/gtk-rs-core' CARGO_PKG_RUST_VERSION=1.70 CARGO_PKG_VERSION=0.20.8 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=20 CARGO_PKG_VERSION_PATCH=8 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.MZ13eKTYFc/target/debug/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.MZ13eKTYFc/registry/gio-sys-0.20.8/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="v2_58"' --cfg 'feature="v2_60"' --cfg 'feature="v2_62"' --cfg 'feature="v2_64"' --cfg 'feature="v2_66"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("v2_58", "v2_60", "v2_62", "v2_64", "v2_66", "v2_68", "v2_70", "v2_72", "v2_74", "v2_76", "v2_78", "v2_80", "v2_82", "v2_84"))' -C metadata=db651cf237aeebb6 -C extra-filename=-db651cf237aeebb6 --out-dir /tmp/tmp.MZ13eKTYFc/target/debug/build/gio-sys-db651cf237aeebb6 -L dependency=/tmp/tmp.MZ13eKTYFc/target/debug/deps --extern system_deps=/tmp/tmp.MZ13eKTYFc/target/debug/deps/libsystem_deps-df5512f70260f2a1.rlib --cap-lints warn` 127s warning: `gobject-sys` (lib) generated 1 warning (1 duplicate) 127s Compiling futures-macro v0.3.31 127s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=futures_macro CARGO_MANIFEST_DIR=/tmp/tmp.MZ13eKTYFc/registry/futures-macro-0.3.31 CARGO_MANIFEST_PATH=/tmp/tmp.MZ13eKTYFc/registry/futures-macro-0.3.31/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='The futures-rs procedural macro implementations. 127s ' CARGO_PKG_HOMEPAGE='https://rust-lang.github.io/futures-rs' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=futures-macro CARGO_PKG_README='' CARGO_PKG_REPOSITORY='https://github.com/rust-lang/futures-rs' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=0.3.31 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=31 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.MZ13eKTYFc/target/debug/deps rustc --crate-name futures_macro --edition=2018 /tmp/tmp.MZ13eKTYFc/registry/futures-macro-0.3.31/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type proc-macro --emit=dep-info,link -C prefer-dynamic -C embed-bitcode=no -C debuginfo=2 --warn=unreachable_pub --warn=unexpected_cfgs --warn=single_use_lifetimes --warn=rust_2018_idioms --warn=missing_debug_implementations --check-cfg 'cfg(futures_sanitizer)' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=4cace2739cb7abd5 -C extra-filename=-4cace2739cb7abd5 --out-dir /tmp/tmp.MZ13eKTYFc/target/debug/deps -L dependency=/tmp/tmp.MZ13eKTYFc/target/debug/deps --extern proc_macro2=/tmp/tmp.MZ13eKTYFc/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rlib --extern quote=/tmp/tmp.MZ13eKTYFc/target/debug/deps/libquote-dc92c6f25ee0f0c6.rlib --extern syn=/tmp/tmp.MZ13eKTYFc/target/debug/deps/libsyn-0167beed9e699402.rlib --extern proc_macro --cap-lints warn` 127s 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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0--remap-path-prefix/tmp/tmp.MZ13eKTYFc/registry=/usr/share/cargo/registry-Ctarget-feature=+backchain' CARGO_FEATURE_V2_58=1 CARGO_FEATURE_V2_60=1 CARGO_FEATURE_V2_62=1 CARGO_FEATURE_V2_64=1 CARGO_FEATURE_V2_66=1 CARGO_MANIFEST_DIR=/tmp/tmp.MZ13eKTYFc/registry/gio-sys-0.20.8 CARGO_MANIFEST_PATH=/tmp/tmp.MZ13eKTYFc/registry/gio-sys-0.20.8/Cargo.toml CARGO_PKG_AUTHORS='The gtk-rs Project Developers' CARGO_PKG_DESCRIPTION='FFI bindings to libgio-2.0' CARGO_PKG_HOMEPAGE='https://gtk-rs.org/' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=gio-sys CARGO_PKG_README='' CARGO_PKG_REPOSITORY='https://github.com/gtk-rs/gtk-rs-core' CARGO_PKG_RUST_VERSION=1.70 CARGO_PKG_VERSION=0.20.8 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=20 CARGO_PKG_VERSION_PATCH=8 CARGO_PKG_VERSION_PRE='' DEBUG=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.MZ13eKTYFc/target/debug/deps:/tmp/tmp.MZ13eKTYFc/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/build/gio-sys-1747225389f06909/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.MZ13eKTYFc/target/debug/build/gio-sys-db651cf237aeebb6/build-script-build` 127s [gio-sys 0.20.8] cargo:rerun-if-changed=/tmp/tmp.MZ13eKTYFc/registry/gio-sys-0.20.8/Cargo.toml 127s [gio-sys 0.20.8] cargo:rerun-if-env-changed=GIO_2.0_NO_PKG_CONFIG 127s [gio-sys 0.20.8] cargo:rerun-if-env-changed=PKG_CONFIG_s390x-unknown-linux-gnu 127s [gio-sys 0.20.8] cargo:rerun-if-env-changed=PKG_CONFIG_s390x_unknown_linux_gnu 127s [gio-sys 0.20.8] cargo:rerun-if-env-changed=HOST_PKG_CONFIG 127s [gio-sys 0.20.8] cargo:rerun-if-env-changed=PKG_CONFIG 127s [gio-sys 0.20.8] cargo:rerun-if-env-changed=DEB_HOST_GNU_TYPE 127s [gio-sys 0.20.8] cargo:rerun-if-env-changed=PKG_CONFIG_PATH_s390x-unknown-linux-gnu 127s [gio-sys 0.20.8] cargo:rerun-if-env-changed=PKG_CONFIG_PATH_s390x_unknown_linux_gnu 127s [gio-sys 0.20.8] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_PATH 127s [gio-sys 0.20.8] cargo:rerun-if-env-changed=PKG_CONFIG_PATH 127s [gio-sys 0.20.8] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR_s390x-unknown-linux-gnu 127s [gio-sys 0.20.8] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR_s390x_unknown_linux_gnu 127s [gio-sys 0.20.8] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_LIBDIR 127s [gio-sys 0.20.8] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR 127s [gio-sys 0.20.8] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR_s390x-unknown-linux-gnu 127s [gio-sys 0.20.8] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR_s390x_unknown_linux_gnu 127s [gio-sys 0.20.8] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_SYSROOT_DIR 127s [gio-sys 0.20.8] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR 127s [gio-sys 0.20.8] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR 127s [gio-sys 0.20.8] cargo:rerun-if-env-changed=SYSROOT 127s [gio-sys 0.20.8] cargo:rerun-if-env-changed=PKG_CONFIG_s390x-unknown-linux-gnu 127s [gio-sys 0.20.8] cargo:rerun-if-env-changed=PKG_CONFIG_s390x_unknown_linux_gnu 127s [gio-sys 0.20.8] cargo:rerun-if-env-changed=HOST_PKG_CONFIG 127s [gio-sys 0.20.8] cargo:rerun-if-env-changed=PKG_CONFIG 127s [gio-sys 0.20.8] cargo:rerun-if-env-changed=DEB_HOST_GNU_TYPE 127s [gio-sys 0.20.8] cargo:rerun-if-env-changed=PKG_CONFIG_PATH_s390x-unknown-linux-gnu 127s [gio-sys 0.20.8] cargo:rerun-if-env-changed=PKG_CONFIG_PATH_s390x_unknown_linux_gnu 127s [gio-sys 0.20.8] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_PATH 127s [gio-sys 0.20.8] cargo:rerun-if-env-changed=PKG_CONFIG_PATH 127s [gio-sys 0.20.8] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR_s390x-unknown-linux-gnu 127s [gio-sys 0.20.8] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR_s390x_unknown_linux_gnu 127s [gio-sys 0.20.8] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_LIBDIR 127s [gio-sys 0.20.8] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR 127s [gio-sys 0.20.8] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR_s390x-unknown-linux-gnu 127s [gio-sys 0.20.8] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR_s390x_unknown_linux_gnu 127s [gio-sys 0.20.8] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_SYSROOT_DIR 127s [gio-sys 0.20.8] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR 127s [gio-sys 0.20.8] cargo:rustc-link-lib=gio-2.0 127s [gio-sys 0.20.8] cargo:rustc-link-lib=gobject-2.0 127s [gio-sys 0.20.8] cargo:rustc-link-lib=glib-2.0 127s [gio-sys 0.20.8] cargo:include=/usr/include:/usr/include/glib-2.0:/usr/lib/s390x-linux-gnu/glib-2.0/include:/usr/include/sysprof-6:/usr/include/libmount:/usr/include/blkid 127s [gio-sys 0.20.8] cargo:rerun-if-env-changed=SYSTEM_DEPS_BUILD_INTERNAL 127s [gio-sys 0.20.8] cargo:rerun-if-env-changed=SYSTEM_DEPS_LINK 127s [gio-sys 0.20.8] cargo:rerun-if-env-changed=SYSTEM_DEPS_GIO_2_0_LIB 127s [gio-sys 0.20.8] cargo:rerun-if-env-changed=SYSTEM_DEPS_GIO_2_0_LIB_FRAMEWORK 127s [gio-sys 0.20.8] cargo:rerun-if-env-changed=SYSTEM_DEPS_GIO_2_0_SEARCH_NATIVE 127s [gio-sys 0.20.8] cargo:rerun-if-env-changed=SYSTEM_DEPS_GIO_2_0_SEARCH_FRAMEWORK 127s [gio-sys 0.20.8] cargo:rerun-if-env-changed=SYSTEM_DEPS_GIO_2_0_INCLUDE 127s [gio-sys 0.20.8] cargo:rerun-if-env-changed=SYSTEM_DEPS_GIO_2_0_LDFLAGS 127s [gio-sys 0.20.8] cargo:rerun-if-env-changed=SYSTEM_DEPS_GIO_2_0_NO_PKG_CONFIG 127s [gio-sys 0.20.8] cargo:rerun-if-env-changed=SYSTEM_DEPS_GIO_2_0_BUILD_INTERNAL 127s [gio-sys 0.20.8] cargo:rerun-if-env-changed=SYSTEM_DEPS_GIO_2_0_LINK 127s [gio-sys 0.20.8] 127s [gio-sys 0.20.8] cargo:rustc-cfg=system_deps_have_gio_2_0 127s Compiling futures-sink v0.3.31 127s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=futures_sink CARGO_MANIFEST_DIR=/tmp/tmp.MZ13eKTYFc/registry/futures-sink-0.3.31 CARGO_MANIFEST_PATH=/tmp/tmp.MZ13eKTYFc/registry/futures-sink-0.3.31/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='The asynchronous `Sink` trait for the futures-rs library. 127s ' CARGO_PKG_HOMEPAGE='https://rust-lang.github.io/futures-rs' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=futures-sink CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/futures-rs' CARGO_PKG_RUST_VERSION=1.36 CARGO_PKG_VERSION=0.3.31 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=31 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.MZ13eKTYFc/target/debug/deps rustc --crate-name futures_sink --edition=2018 /tmp/tmp.MZ13eKTYFc/registry/futures-sink-0.3.31/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --warn=unreachable_pub --warn=unexpected_cfgs --warn=single_use_lifetimes --warn=rust_2018_idioms --warn=missing_debug_implementations --check-cfg 'cfg(futures_sanitizer)' --cfg 'feature="alloc"' --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "default", "std"))' -C metadata=2335bc9d806f8753 -C extra-filename=-2335bc9d806f8753 --out-dir /tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.MZ13eKTYFc/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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.MZ13eKTYFc/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 127s warning: `futures-sink` (lib) generated 1 warning (1 duplicate) 127s Compiling futures-task v0.3.31 127s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=futures_task CARGO_MANIFEST_DIR=/tmp/tmp.MZ13eKTYFc/registry/futures-task-0.3.31 CARGO_MANIFEST_PATH=/tmp/tmp.MZ13eKTYFc/registry/futures-task-0.3.31/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='Tools for working with tasks. 127s ' CARGO_PKG_HOMEPAGE='https://rust-lang.github.io/futures-rs' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=futures-task CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/futures-rs' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=0.3.31 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=31 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.MZ13eKTYFc/target/debug/deps rustc --crate-name futures_task --edition=2018 /tmp/tmp.MZ13eKTYFc/registry/futures-task-0.3.31/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --warn=unreachable_pub --warn=unexpected_cfgs --warn=single_use_lifetimes --warn=rust_2018_idioms --warn=missing_debug_implementations --check-cfg 'cfg(futures_sanitizer)' --cfg 'feature="alloc"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "cfg-target-has-atomic", "default", "std", "unstable"))' -C metadata=47c3a7d17767e18f -C extra-filename=-47c3a7d17767e18f --out-dir /tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.MZ13eKTYFc/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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.MZ13eKTYFc/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 128s warning: `futures-task` (lib) generated 1 warning (1 duplicate) 128s Compiling memchr v2.7.4 128s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=memchr CARGO_MANIFEST_DIR=/tmp/tmp.MZ13eKTYFc/registry/memchr-2.7.4 CARGO_MANIFEST_PATH=/tmp/tmp.MZ13eKTYFc/registry/memchr-2.7.4/Cargo.toml CARGO_PKG_AUTHORS='Andrew Gallant :bluss' CARGO_PKG_DESCRIPTION='Provides extremely fast (uses SIMD on x86_64, aarch64 and wasm32) routines for 128s 1, 2 or 3 byte search and single substring search. 128s ' CARGO_PKG_HOMEPAGE='https://github.com/BurntSushi/memchr' CARGO_PKG_LICENSE='Unlicense OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=memchr CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/BurntSushi/memchr' CARGO_PKG_RUST_VERSION=1.61 CARGO_PKG_VERSION=2.7.4 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=7 CARGO_PKG_VERSION_PATCH=4 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.MZ13eKTYFc/target/debug/deps rustc --crate-name memchr --edition=2021 /tmp/tmp.MZ13eKTYFc/registry/memchr-2.7.4/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="alloc"' --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "compiler_builtins", "core", "default", "libc", "logging", "rustc-dep-of-std", "std", "use_std"))' -C metadata=944ab1891fd21906 -C extra-filename=-944ab1891fd21906 --out-dir /tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.MZ13eKTYFc/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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.MZ13eKTYFc/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 128s warning: `memchr` (lib) generated 1 warning (1 duplicate) 128s Compiling pin-utils v0.1.0 128s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=pin_utils CARGO_MANIFEST_DIR=/tmp/tmp.MZ13eKTYFc/registry/pin-utils-0.1.0 CARGO_MANIFEST_PATH=/tmp/tmp.MZ13eKTYFc/registry/pin-utils-0.1.0/Cargo.toml CARGO_PKG_AUTHORS='Josef Brandl ' CARGO_PKG_DESCRIPTION='Utilities for pinning 128s ' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=pin-utils CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang-nursery/pin-utils' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.1.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.MZ13eKTYFc/target/debug/deps rustc --crate-name pin_utils --edition=2018 /tmp/tmp.MZ13eKTYFc/registry/pin-utils-0.1.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=9646380a39f6bb39 -C extra-filename=-9646380a39f6bb39 --out-dir /tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.MZ13eKTYFc/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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.MZ13eKTYFc/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 128s warning: `pin-utils` (lib) generated 1 warning (1 duplicate) 128s Compiling cfg-if v1.0.0 128s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=cfg_if CARGO_MANIFEST_DIR=/tmp/tmp.MZ13eKTYFc/registry/cfg-if-1.0.0 CARGO_MANIFEST_PATH=/tmp/tmp.MZ13eKTYFc/registry/cfg-if-1.0.0/Cargo.toml CARGO_PKG_AUTHORS='Alex Crichton ' CARGO_PKG_DESCRIPTION='A macro to ergonomically define an item depending on a large number of #[cfg] 128s parameters. Structured like an if-else chain, the first matching branch is the 128s item that gets emitted. 128s ' CARGO_PKG_HOMEPAGE='https://github.com/alexcrichton/cfg-if' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=cfg-if CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/alexcrichton/cfg-if' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=1.0.0 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.MZ13eKTYFc/target/debug/deps rustc --crate-name cfg_if --edition=2018 /tmp/tmp.MZ13eKTYFc/registry/cfg-if-1.0.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("core"))' -C metadata=ff3ff84a061de73f -C extra-filename=-ff3ff84a061de73f --out-dir /tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.MZ13eKTYFc/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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.MZ13eKTYFc/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 128s warning: `cfg-if` (lib) generated 1 warning (1 duplicate) 128s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=gio_sys CARGO_MANIFEST_DIR=/tmp/tmp.MZ13eKTYFc/registry/gio-sys-0.20.8 CARGO_MANIFEST_PATH=/tmp/tmp.MZ13eKTYFc/registry/gio-sys-0.20.8/Cargo.toml CARGO_PKG_AUTHORS='The gtk-rs Project Developers' CARGO_PKG_DESCRIPTION='FFI bindings to libgio-2.0' CARGO_PKG_HOMEPAGE='https://gtk-rs.org/' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=gio-sys CARGO_PKG_README='' CARGO_PKG_REPOSITORY='https://github.com/gtk-rs/gtk-rs-core' CARGO_PKG_RUST_VERSION=1.70 CARGO_PKG_VERSION=0.20.8 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=20 CARGO_PKG_VERSION_PATCH=8 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.MZ13eKTYFc/target/debug/deps OUT_DIR=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/build/gio-sys-1747225389f06909/out rustc --crate-name gio_sys --edition=2021 /tmp/tmp.MZ13eKTYFc/registry/gio-sys-0.20.8/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="v2_58"' --cfg 'feature="v2_60"' --cfg 'feature="v2_62"' --cfg 'feature="v2_64"' --cfg 'feature="v2_66"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("v2_58", "v2_60", "v2_62", "v2_64", "v2_66", "v2_68", "v2_70", "v2_72", "v2_74", "v2_76", "v2_78", "v2_80", "v2_82", "v2_84"))' -C metadata=09c58e200e125269 -C extra-filename=-09c58e200e125269 --out-dir /tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.MZ13eKTYFc/target/debug/deps --extern glib_sys=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/libglib_sys-8d7612a6c3ae820a.rmeta --extern gobject_sys=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/libgobject_sys-c41d1b14aec65cc2.rmeta --extern libc=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/liblibc-cf2521928ac070dc.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.MZ13eKTYFc/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain -l gio-2.0 -l gobject-2.0 -l glib-2.0 --cfg system_deps_have_gio_2_0` 128s Compiling futures-util v0.3.31 128s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=futures_util CARGO_MANIFEST_DIR=/tmp/tmp.MZ13eKTYFc/registry/futures-util-0.3.31 CARGO_MANIFEST_PATH=/tmp/tmp.MZ13eKTYFc/registry/futures-util-0.3.31/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='Common utilities and extension traits for the futures-rs library. 128s ' CARGO_PKG_HOMEPAGE='https://rust-lang.github.io/futures-rs' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=futures-util CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/futures-rs' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=0.3.31 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=31 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.MZ13eKTYFc/target/debug/deps rustc --crate-name futures_util --edition=2018 /tmp/tmp.MZ13eKTYFc/registry/futures-util-0.3.31/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --warn=unreachable_pub --warn=unexpected_cfgs --warn=single_use_lifetimes --warn=rust_2018_idioms --warn=missing_debug_implementations --check-cfg 'cfg(futures_sanitizer)' --cfg 'feature="alloc"' --cfg 'feature="async-await"' --cfg 'feature="async-await-macro"' --cfg 'feature="default"' --cfg 'feature="futures-io"' --cfg 'feature="futures-macro"' --cfg 'feature="futures-sink"' --cfg 'feature="io"' --cfg 'feature="memchr"' --cfg 'feature="sink"' --cfg 'feature="slab"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "async-await", "async-await-macro", "bilock", "channel", "default", "futures-channel", "futures-io", "futures-macro", "futures-sink", "io", "memchr", "sink", "slab", "std", "unstable", "write-all-vectored"))' -C metadata=724575be975598c0 -C extra-filename=-724575be975598c0 --out-dir /tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.MZ13eKTYFc/target/debug/deps --extern futures_core=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/libfutures_core-8d305950da6bf5c8.rmeta --extern futures_io=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/libfutures_io-1a4387591f8b2b95.rmeta --extern futures_macro=/tmp/tmp.MZ13eKTYFc/target/debug/deps/libfutures_macro-4cace2739cb7abd5.so --extern futures_sink=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/libfutures_sink-2335bc9d806f8753.rmeta --extern futures_task=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/libfutures_task-47c3a7d17767e18f.rmeta --extern memchr=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/libmemchr-944ab1891fd21906.rmeta --extern pin_project_lite=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/libpin_project_lite-5dc815523e98d889.rmeta --extern pin_utils=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/libpin_utils-9646380a39f6bb39.rmeta --extern slab=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/libslab-36320af34be0827b.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.MZ13eKTYFc/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 129s warning: unexpected `cfg` condition value: `compat` 129s --> /usr/share/cargo/registry/futures-util-0.3.31/src/lib.rs:308:7 129s | 129s 308 | #[cfg(feature = "compat")] 129s | ^^^^^^^^^^^^^^^^^^ 129s | 129s = note: expected values for `feature` are: `alloc`, `async-await`, `async-await-macro`, `bilock`, `channel`, `default`, `futures-channel`, `futures-io`, `futures-macro`, `futures-sink`, `io`, `memchr`, `sink`, `slab`, `std`, `unstable`, and `write-all-vectored` 129s = help: consider adding `compat` as a feature in `Cargo.toml` 129s = note: see for more information about checking conditional configuration 129s = note: requested on the command line with `-W unexpected-cfgs` 129s 129s warning: unexpected `cfg` condition value: `compat` 129s --> /usr/share/cargo/registry/futures-util-0.3.31/src/future/try_future/mod.rs:6:7 129s | 129s 6 | #[cfg(feature = "compat")] 129s | ^^^^^^^^^^^^^^^^^^ 129s | 129s = note: expected values for `feature` are: `alloc`, `async-await`, `async-await-macro`, `bilock`, `channel`, `default`, `futures-channel`, `futures-io`, `futures-macro`, `futures-sink`, `io`, `memchr`, `sink`, `slab`, `std`, `unstable`, and `write-all-vectored` 129s = help: consider adding `compat` as a feature in `Cargo.toml` 129s = note: see for more information about checking conditional configuration 129s 129s warning: unexpected `cfg` condition value: `compat` 129s --> /usr/share/cargo/registry/futures-util-0.3.31/src/future/try_future/mod.rs:580:11 129s | 129s 580 | #[cfg(feature = "compat")] 129s | ^^^^^^^^^^^^^^^^^^ 129s | 129s = note: expected values for `feature` are: `alloc`, `async-await`, `async-await-macro`, `bilock`, `channel`, `default`, `futures-channel`, `futures-io`, `futures-macro`, `futures-sink`, `io`, `memchr`, `sink`, `slab`, `std`, `unstable`, and `write-all-vectored` 129s = help: consider adding `compat` as a feature in `Cargo.toml` 129s = note: see for more information about checking conditional configuration 129s 129s warning: unexpected `cfg` condition value: `compat` 129s --> /usr/share/cargo/registry/futures-util-0.3.31/src/stream/try_stream/mod.rs:6:7 129s | 129s 6 | #[cfg(feature = "compat")] 129s | ^^^^^^^^^^^^^^^^^^ 129s | 129s = note: expected values for `feature` are: `alloc`, `async-await`, `async-await-macro`, `bilock`, `channel`, `default`, `futures-channel`, `futures-io`, `futures-macro`, `futures-sink`, `io`, `memchr`, `sink`, `slab`, `std`, `unstable`, and `write-all-vectored` 129s = help: consider adding `compat` as a feature in `Cargo.toml` 129s = note: see for more information about checking conditional configuration 129s 129s warning: unexpected `cfg` condition value: `compat` 129s --> /usr/share/cargo/registry/futures-util-0.3.31/src/stream/try_stream/mod.rs:1154:11 129s | 129s 1154 | #[cfg(feature = "compat")] 129s | ^^^^^^^^^^^^^^^^^^ 129s | 129s = note: expected values for `feature` are: `alloc`, `async-await`, `async-await-macro`, `bilock`, `channel`, `default`, `futures-channel`, `futures-io`, `futures-macro`, `futures-sink`, `io`, `memchr`, `sink`, `slab`, `std`, `unstable`, and `write-all-vectored` 129s = help: consider adding `compat` as a feature in `Cargo.toml` 129s = note: see for more information about checking conditional configuration 129s 129s warning: unexpected `cfg` condition value: `compat` 129s --> /usr/share/cargo/registry/futures-util-0.3.31/src/sink/mod.rs:15:7 129s | 129s 15 | #[cfg(feature = "compat")] 129s | ^^^^^^^^^^^^^^^^^^ 129s | 129s = note: expected values for `feature` are: `alloc`, `async-await`, `async-await-macro`, `bilock`, `channel`, `default`, `futures-channel`, `futures-io`, `futures-macro`, `futures-sink`, `io`, `memchr`, `sink`, `slab`, `std`, `unstable`, and `write-all-vectored` 129s = help: consider adding `compat` as a feature in `Cargo.toml` 129s = note: see for more information about checking conditional configuration 129s 129s warning: unexpected `cfg` condition value: `compat` 129s --> /usr/share/cargo/registry/futures-util-0.3.31/src/sink/mod.rs:291:11 129s | 129s 291 | #[cfg(feature = "compat")] 129s | ^^^^^^^^^^^^^^^^^^ 129s | 129s = note: expected values for `feature` are: `alloc`, `async-await`, `async-await-macro`, `bilock`, `channel`, `default`, `futures-channel`, `futures-io`, `futures-macro`, `futures-sink`, `io`, `memchr`, `sink`, `slab`, `std`, `unstable`, and `write-all-vectored` 129s = help: consider adding `compat` as a feature in `Cargo.toml` 129s = note: see for more information about checking conditional configuration 129s 129s warning: unexpected `cfg` condition value: `compat` 129s --> /usr/share/cargo/registry/futures-util-0.3.31/src/task/spawn.rs:3:7 129s | 129s 3 | #[cfg(feature = "compat")] 129s | ^^^^^^^^^^^^^^^^^^ 129s | 129s = note: expected values for `feature` are: `alloc`, `async-await`, `async-await-macro`, `bilock`, `channel`, `default`, `futures-channel`, `futures-io`, `futures-macro`, `futures-sink`, `io`, `memchr`, `sink`, `slab`, `std`, `unstable`, and `write-all-vectored` 129s = help: consider adding `compat` as a feature in `Cargo.toml` 129s = note: see for more information about checking conditional configuration 129s 129s warning: unexpected `cfg` condition value: `compat` 129s --> /usr/share/cargo/registry/futures-util-0.3.31/src/task/spawn.rs:92:11 129s | 129s 92 | #[cfg(feature = "compat")] 129s | ^^^^^^^^^^^^^^^^^^ 129s | 129s = note: expected values for `feature` are: `alloc`, `async-await`, `async-await-macro`, `bilock`, `channel`, `default`, `futures-channel`, `futures-io`, `futures-macro`, `futures-sink`, `io`, `memchr`, `sink`, `slab`, `std`, `unstable`, and `write-all-vectored` 129s = help: consider adding `compat` as a feature in `Cargo.toml` 129s = note: see for more information about checking conditional configuration 129s 129s warning: unexpected `cfg` condition value: `io-compat` 129s --> /usr/share/cargo/registry/futures-util-0.3.31/src/io/mod.rs:19:7 129s | 129s 19 | #[cfg(feature = "io-compat")] 129s | ^^^^^^^^^^^^^^^^^^^^^ 129s | 129s = note: expected values for `feature` are: `alloc`, `async-await`, `async-await-macro`, `bilock`, `channel`, `default`, `futures-channel`, `futures-io`, `futures-macro`, `futures-sink`, `io`, `memchr`, `sink`, `slab`, `std`, `unstable`, and `write-all-vectored` 129s = help: consider adding `io-compat` as a feature in `Cargo.toml` 129s = note: see for more information about checking conditional configuration 129s 129s warning: unexpected `cfg` condition value: `io-compat` 129s --> /usr/share/cargo/registry/futures-util-0.3.31/src/io/mod.rs:388:11 129s | 129s 388 | #[cfg(feature = "io-compat")] 129s | ^^^^^^^^^^^^^^^^^^^^^ 129s | 129s = note: expected values for `feature` are: `alloc`, `async-await`, `async-await-macro`, `bilock`, `channel`, `default`, `futures-channel`, `futures-io`, `futures-macro`, `futures-sink`, `io`, `memchr`, `sink`, `slab`, `std`, `unstable`, and `write-all-vectored` 129s = help: consider adding `io-compat` as a feature in `Cargo.toml` 129s = note: see for more information about checking conditional configuration 129s 129s warning: unexpected `cfg` condition value: `io-compat` 129s --> /usr/share/cargo/registry/futures-util-0.3.31/src/io/mod.rs:547:11 129s | 129s 547 | #[cfg(feature = "io-compat")] 129s | ^^^^^^^^^^^^^^^^^^^^^ 129s | 129s = note: expected values for `feature` are: `alloc`, `async-await`, `async-await-macro`, `bilock`, `channel`, `default`, `futures-channel`, `futures-io`, `futures-macro`, `futures-sink`, `io`, `memchr`, `sink`, `slab`, `std`, `unstable`, and `write-all-vectored` 129s = help: consider adding `io-compat` as a feature in `Cargo.toml` 129s = note: see for more information about checking conditional configuration 129s 129s warning: `gio-sys` (lib) generated 1 warning (1 duplicate) 129s Compiling event-listener v5.4.0 129s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=event_listener CARGO_MANIFEST_DIR=/tmp/tmp.MZ13eKTYFc/registry/event-listener-5.4.0 CARGO_MANIFEST_PATH=/tmp/tmp.MZ13eKTYFc/registry/event-listener-5.4.0/Cargo.toml CARGO_PKG_AUTHORS='Stjepan Glavina :John Nunley ' CARGO_PKG_DESCRIPTION='Notify async tasks or threads' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=event-listener CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/smol-rs/event-listener' CARGO_PKG_RUST_VERSION=1.60 CARGO_PKG_VERSION=5.4.0 CARGO_PKG_VERSION_MAJOR=5 CARGO_PKG_VERSION_MINOR=4 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.MZ13eKTYFc/target/debug/deps rustc --crate-name event_listener --edition=2021 /tmp/tmp.MZ13eKTYFc/registry/event-listener-5.4.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --warn=unexpected_cfgs --check-cfg 'cfg(loom)' --cfg 'feature="default"' --cfg 'feature="parking"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("critical-section", "default", "parking", "std"))' -C metadata=4260d59234261e59 -C extra-filename=-4260d59234261e59 --out-dir /tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.MZ13eKTYFc/target/debug/deps --extern concurrent_queue=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/libconcurrent_queue-7e82393ecc7068db.rmeta --extern parking=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/libparking-0a38dc17b1bc33e2.rmeta --extern pin_project_lite=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/libpin_project_lite-5dc815523e98d889.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.MZ13eKTYFc/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 129s warning: unexpected `cfg` condition value: `portable-atomic` 129s --> /usr/share/cargo/registry/event-listener-5.4.0/src/lib.rs:1362:15 129s | 129s 1362 | #[cfg(not(feature = "portable-atomic"))] 129s | ^^^^^^^^^^^^^^^^^^^^^^^^^^^ 129s | 129s = note: expected values for `feature` are: `critical-section`, `default`, `parking`, and `std` 129s = help: consider adding `portable-atomic` as a feature in `Cargo.toml` 129s = note: see for more information about checking conditional configuration 129s = note: requested on the command line with `-W unexpected-cfgs` 129s 129s warning: unexpected `cfg` condition value: `portable-atomic` 129s --> /usr/share/cargo/registry/event-listener-5.4.0/src/lib.rs:1364:15 129s | 129s 1364 | #[cfg(not(feature = "portable-atomic"))] 129s | ^^^^^^^^^^^^^^^^^^^^^^^^^^^ 129s | 129s = note: expected values for `feature` are: `critical-section`, `default`, `parking`, and `std` 129s = help: consider adding `portable-atomic` as a feature in `Cargo.toml` 129s = note: see for more information about checking conditional configuration 129s 129s warning: unexpected `cfg` condition value: `portable-atomic` 129s --> /usr/share/cargo/registry/event-listener-5.4.0/src/lib.rs:1367:11 129s | 129s 1367 | #[cfg(feature = "portable-atomic")] 129s | ^^^^^^^^^^^^^^^^^^^^^^^^^^^ 129s | 129s = note: expected values for `feature` are: `critical-section`, `default`, `parking`, and `std` 129s = help: consider adding `portable-atomic` as a feature in `Cargo.toml` 129s = note: see for more information about checking conditional configuration 129s 129s warning: unexpected `cfg` condition value: `portable-atomic` 129s --> /usr/share/cargo/registry/event-listener-5.4.0/src/lib.rs:1369:11 129s | 129s 1369 | #[cfg(feature = "portable-atomic")] 129s | ^^^^^^^^^^^^^^^^^^^^^^^^^^^ 129s | 129s = note: expected values for `feature` are: `critical-section`, `default`, `parking`, and `std` 129s = help: consider adding `portable-atomic` as a feature in `Cargo.toml` 129s = note: see for more information about checking conditional configuration 129s 130s warning: `event-listener` (lib) generated 5 warnings (1 duplicate) 130s Compiling version_check v0.9.5 130s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=version_check CARGO_MANIFEST_DIR=/tmp/tmp.MZ13eKTYFc/registry/version_check-0.9.5 CARGO_MANIFEST_PATH=/tmp/tmp.MZ13eKTYFc/registry/version_check-0.9.5/Cargo.toml CARGO_PKG_AUTHORS='Sergio Benitez ' CARGO_PKG_DESCRIPTION='Tiny crate to check the version of the installed/running rustc.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=version_check CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/SergioBenitez/version_check' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.9.5 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=9 CARGO_PKG_VERSION_PATCH=5 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.MZ13eKTYFc/target/debug/deps rustc --crate-name version_check --edition=2015 /tmp/tmp.MZ13eKTYFc/registry/version_check-0.9.5/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=20e83cdf64ec3211 -C extra-filename=-20e83cdf64ec3211 --out-dir /tmp/tmp.MZ13eKTYFc/target/debug/deps -L dependency=/tmp/tmp.MZ13eKTYFc/target/debug/deps --cap-lints warn` 130s Compiling typenum v1.17.0 130s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_main CARGO_MANIFEST_DIR=/tmp/tmp.MZ13eKTYFc/registry/typenum-1.17.0 CARGO_MANIFEST_PATH=/tmp/tmp.MZ13eKTYFc/registry/typenum-1.17.0/Cargo.toml CARGO_PKG_AUTHORS='Paho Lurie-Gregg :Andre Bogus ' CARGO_PKG_DESCRIPTION='Typenum is a Rust library for type-level numbers evaluated at 130s compile time. It currently supports bits, unsigned integers, and signed 130s integers. It also provides a type-level array of type-level numbers, but its 130s implementation is incomplete.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=typenum CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/paholg/typenum' CARGO_PKG_RUST_VERSION=1.37.0 CARGO_PKG_VERSION=1.17.0 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=17 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.MZ13eKTYFc/target/debug/deps rustc --crate-name build_script_main --edition=2018 /tmp/tmp.MZ13eKTYFc/registry/typenum-1.17.0/build/main.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("const-generics", "force_unix_path_separator", "i128", "no_std", "strict"))' -C metadata=ef2812a6bded5202 -C extra-filename=-ef2812a6bded5202 --out-dir /tmp/tmp.MZ13eKTYFc/target/debug/build/typenum-ef2812a6bded5202 -L dependency=/tmp/tmp.MZ13eKTYFc/target/debug/deps --cap-lints warn` 131s warning: `futures-util` (lib) generated 13 warnings (1 duplicate) 131s Compiling generic-array v0.14.7 131s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.MZ13eKTYFc/registry/generic-array-0.14.7 CARGO_MANIFEST_PATH=/tmp/tmp.MZ13eKTYFc/registry/generic-array-0.14.7/Cargo.toml CARGO_PKG_AUTHORS='Bartłomiej Kamiński :Aaron Trent ' CARGO_PKG_DESCRIPTION='Generic types implementing functionality of arrays' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=generic-array CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/fizyk20/generic-array.git' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.14.7 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=14 CARGO_PKG_VERSION_PATCH=7 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.MZ13eKTYFc/target/debug/deps rustc --crate-name build_script_build --edition=2015 /tmp/tmp.MZ13eKTYFc/registry/generic-array-0.14.7/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="more_lengths"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("more_lengths", "serde", "zeroize"))' -C metadata=160edb9b35222b14 -C extra-filename=-160edb9b35222b14 --out-dir /tmp/tmp.MZ13eKTYFc/target/debug/build/generic-array-160edb9b35222b14 -L dependency=/tmp/tmp.MZ13eKTYFc/target/debug/deps --extern version_check=/tmp/tmp.MZ13eKTYFc/target/debug/deps/libversion_check-20e83cdf64ec3211.rlib --cap-lints warn` 131s 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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0--remap-path-prefix/tmp/tmp.MZ13eKTYFc/registry=/usr/share/cargo/registry-Ctarget-feature=+backchain' CARGO_MANIFEST_DIR=/tmp/tmp.MZ13eKTYFc/registry/typenum-1.17.0 CARGO_MANIFEST_PATH=/tmp/tmp.MZ13eKTYFc/registry/typenum-1.17.0/Cargo.toml CARGO_PKG_AUTHORS='Paho Lurie-Gregg :Andre Bogus ' CARGO_PKG_DESCRIPTION='Typenum is a Rust library for type-level numbers evaluated at 131s compile time. It currently supports bits, unsigned integers, and signed 131s integers. It also provides a type-level array of type-level numbers, but its 131s implementation is incomplete.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=typenum CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/paholg/typenum' CARGO_PKG_RUST_VERSION=1.37.0 CARGO_PKG_VERSION=1.17.0 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=17 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' DEBUG=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.MZ13eKTYFc/target/debug/deps:/tmp/tmp.MZ13eKTYFc/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/build/typenum-b1daa52c37018028/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.MZ13eKTYFc/target/debug/build/typenum-ef2812a6bded5202/build-script-main` 131s [typenum 1.17.0] cargo:rerun-if-changed=build/main.rs 131s Compiling event-listener-strategy v0.5.3 131s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=event_listener_strategy CARGO_MANIFEST_DIR=/tmp/tmp.MZ13eKTYFc/registry/event-listener-strategy-0.5.3 CARGO_MANIFEST_PATH=/tmp/tmp.MZ13eKTYFc/registry/event-listener-strategy-0.5.3/Cargo.toml CARGO_PKG_AUTHORS='John Nunley ' CARGO_PKG_DESCRIPTION='Block or poll on event_listener easily' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=event-listener-strategy CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/smol-rs/event-listener-strategy' CARGO_PKG_RUST_VERSION=1.60 CARGO_PKG_VERSION=0.5.3 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=5 CARGO_PKG_VERSION_PATCH=3 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.MZ13eKTYFc/target/debug/deps rustc --crate-name event_listener_strategy --edition=2021 /tmp/tmp.MZ13eKTYFc/registry/event-listener-strategy-0.5.3/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --warn=unexpected_cfgs --check-cfg 'cfg(wasm_bindgen_unstable_test_coverage)' --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "std"))' -C metadata=53ebcc1cb10a7931 -C extra-filename=-53ebcc1cb10a7931 --out-dir /tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.MZ13eKTYFc/target/debug/deps --extern event_listener=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/libevent_listener-4260d59234261e59.rmeta --extern pin_project_lite=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/libpin_project_lite-5dc815523e98d889.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.MZ13eKTYFc/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 131s warning: `event-listener-strategy` (lib) generated 1 warning (1 duplicate) 131s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=typenum CARGO_MANIFEST_DIR=/tmp/tmp.MZ13eKTYFc/registry/typenum-1.17.0 CARGO_MANIFEST_PATH=/tmp/tmp.MZ13eKTYFc/registry/typenum-1.17.0/Cargo.toml CARGO_PKG_AUTHORS='Paho Lurie-Gregg :Andre Bogus ' CARGO_PKG_DESCRIPTION='Typenum is a Rust library for type-level numbers evaluated at 131s compile time. It currently supports bits, unsigned integers, and signed 131s integers. It also provides a type-level array of type-level numbers, but its 131s implementation is incomplete.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=typenum CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/paholg/typenum' CARGO_PKG_RUST_VERSION=1.37.0 CARGO_PKG_VERSION=1.17.0 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=17 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.MZ13eKTYFc/target/debug/deps OUT_DIR=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/build/typenum-b1daa52c37018028/out rustc --crate-name typenum --edition=2018 /tmp/tmp.MZ13eKTYFc/registry/typenum-1.17.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("const-generics", "force_unix_path_separator", "i128", "no_std", "strict"))' -C metadata=c66037e8139405ff -C extra-filename=-c66037e8139405ff --out-dir /tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.MZ13eKTYFc/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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.MZ13eKTYFc/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 131s 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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0--remap-path-prefix/tmp/tmp.MZ13eKTYFc/registry=/usr/share/cargo/registry-Ctarget-feature=+backchain' CARGO_FEATURE_MORE_LENGTHS=1 CARGO_MANIFEST_DIR=/tmp/tmp.MZ13eKTYFc/registry/generic-array-0.14.7 CARGO_MANIFEST_PATH=/tmp/tmp.MZ13eKTYFc/registry/generic-array-0.14.7/Cargo.toml CARGO_PKG_AUTHORS='Bartłomiej Kamiński :Aaron Trent ' CARGO_PKG_DESCRIPTION='Generic types implementing functionality of arrays' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=generic-array CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/fizyk20/generic-array.git' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.14.7 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=14 CARGO_PKG_VERSION_PATCH=7 CARGO_PKG_VERSION_PRE='' DEBUG=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.MZ13eKTYFc/target/debug/deps:/tmp/tmp.MZ13eKTYFc/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/build/generic-array-da8fba9a25807be8/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.MZ13eKTYFc/target/debug/build/generic-array-160edb9b35222b14/build-script-build` 131s [generic-array 0.14.7] cargo:rustc-cfg=relaxed_coherence 131s Compiling futures-executor v0.3.31 131s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=futures_executor CARGO_MANIFEST_DIR=/tmp/tmp.MZ13eKTYFc/registry/futures-executor-0.3.31 CARGO_MANIFEST_PATH=/tmp/tmp.MZ13eKTYFc/registry/futures-executor-0.3.31/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='Executors for asynchronous tasks based on the futures-rs library. 131s ' CARGO_PKG_HOMEPAGE='https://rust-lang.github.io/futures-rs' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=futures-executor CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/futures-rs' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=0.3.31 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=31 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.MZ13eKTYFc/target/debug/deps rustc --crate-name futures_executor --edition=2018 /tmp/tmp.MZ13eKTYFc/registry/futures-executor-0.3.31/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --warn=unreachable_pub --warn=unexpected_cfgs --warn=single_use_lifetimes --warn=rust_2018_idioms --warn=missing_debug_implementations --check-cfg 'cfg(futures_sanitizer)' --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "num_cpus", "std", "thread-pool"))' -C metadata=fb324b5dd28ac892 -C extra-filename=-fb324b5dd28ac892 --out-dir /tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.MZ13eKTYFc/target/debug/deps --extern futures_core=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/libfutures_core-8d305950da6bf5c8.rmeta --extern futures_task=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/libfutures_task-47c3a7d17767e18f.rmeta --extern futures_util=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/libfutures_util-724575be975598c0.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.MZ13eKTYFc/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 131s warning: unexpected `cfg` condition value: `cargo-clippy` 131s --> /usr/share/cargo/registry/typenum-1.17.0/src/lib.rs:50:5 131s | 131s 50 | feature = "cargo-clippy", 131s | ^^^^^^^^^^^^^^^^^^^^^^^^ 131s | 131s = note: expected values for `feature` are: `const-generics`, `force_unix_path_separator`, `i128`, `no_std`, and `strict` 131s = help: consider adding `cargo-clippy` 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: `cargo-clippy` 131s --> /usr/share/cargo/registry/typenum-1.17.0/src/lib.rs:60:13 131s | 131s 60 | #![cfg_attr(feature = "cargo-clippy", deny(clippy::missing_inline_in_public_items))] 131s | ^^^^^^^^^^^^^^^^^^^^^^^^ 131s | 131s = note: expected values for `feature` are: `const-generics`, `force_unix_path_separator`, `i128`, `no_std`, and `strict` 131s = help: consider adding `cargo-clippy` as a feature in `Cargo.toml` 131s = note: see for more information about checking conditional configuration 131s 131s warning: unexpected `cfg` condition value: `scale_info` 131s --> /usr/share/cargo/registry/typenum-1.17.0/src/lib.rs:119:12 131s | 131s 119 | #[cfg_attr(feature = "scale_info", derive(scale_info::TypeInfo))] 131s | ^^^^^^^^^^^^^^^^^^^^^^ 131s | 131s = note: expected values for `feature` are: `const-generics`, `force_unix_path_separator`, `i128`, `no_std`, and `strict` 131s = help: consider adding `scale_info` as a feature in `Cargo.toml` 131s = note: see for more information about checking conditional configuration 131s 131s warning: unexpected `cfg` condition value: `scale_info` 131s --> /usr/share/cargo/registry/typenum-1.17.0/src/lib.rs:125:12 131s | 131s 125 | #[cfg_attr(feature = "scale_info", derive(scale_info::TypeInfo))] 131s | ^^^^^^^^^^^^^^^^^^^^^^ 131s | 131s = note: expected values for `feature` are: `const-generics`, `force_unix_path_separator`, `i128`, `no_std`, and `strict` 131s = help: consider adding `scale_info` as a feature in `Cargo.toml` 131s = note: see for more information about checking conditional configuration 131s 131s warning: unexpected `cfg` condition value: `scale_info` 131s --> /usr/share/cargo/registry/typenum-1.17.0/src/lib.rs:131:12 131s | 131s 131 | #[cfg_attr(feature = "scale_info", derive(scale_info::TypeInfo))] 131s | ^^^^^^^^^^^^^^^^^^^^^^ 131s | 131s = note: expected values for `feature` are: `const-generics`, `force_unix_path_separator`, `i128`, `no_std`, and `strict` 131s = help: consider adding `scale_info` as a feature in `Cargo.toml` 131s = note: see for more information about checking conditional configuration 131s 131s warning: unexpected `cfg` condition value: `scale_info` 131s --> /usr/share/cargo/registry/typenum-1.17.0/src/bit.rs:19:12 131s | 131s 19 | #[cfg_attr(feature = "scale_info", derive(scale_info::TypeInfo))] 131s | ^^^^^^^^^^^^^^^^^^^^^^ 131s | 131s = note: expected values for `feature` are: `const-generics`, `force_unix_path_separator`, `i128`, `no_std`, and `strict` 131s = help: consider adding `scale_info` as a feature in `Cargo.toml` 131s = note: see for more information about checking conditional configuration 131s 131s warning: unexpected `cfg` condition value: `scale_info` 131s --> /usr/share/cargo/registry/typenum-1.17.0/src/bit.rs:32:12 131s | 131s 32 | #[cfg_attr(feature = "scale_info", derive(scale_info::TypeInfo))] 131s | ^^^^^^^^^^^^^^^^^^^^^^ 131s | 131s = note: expected values for `feature` are: `const-generics`, `force_unix_path_separator`, `i128`, `no_std`, and `strict` 131s = help: consider adding `scale_info` as a feature in `Cargo.toml` 131s = note: see for more information about checking conditional configuration 131s 131s warning: unexpected `cfg` condition name: `tests` 131s --> /usr/share/cargo/registry/typenum-1.17.0/src/bit.rs:187:7 131s | 131s 187 | #[cfg(tests)] 131s | ^^^^^ help: there is a config with a similar name: `test` 131s | 131s = help: consider using a Cargo feature instead 131s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 131s [lints.rust] 131s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tests)'] } 131s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tests)");` to the top of the `build.rs` 131s = note: see for more information about checking conditional configuration 131s 131s warning: unexpected `cfg` condition value: `scale_info` 131s --> /usr/share/cargo/registry/typenum-1.17.0/src/int.rs:41:12 131s | 131s 41 | #[cfg_attr(feature = "scale_info", derive(scale_info::TypeInfo))] 131s | ^^^^^^^^^^^^^^^^^^^^^^ 131s | 131s = note: expected values for `feature` are: `const-generics`, `force_unix_path_separator`, `i128`, `no_std`, and `strict` 131s = help: consider adding `scale_info` as a feature in `Cargo.toml` 131s = note: see for more information about checking conditional configuration 131s 131s warning: unexpected `cfg` condition value: `scale_info` 131s --> /usr/share/cargo/registry/typenum-1.17.0/src/int.rs:48:12 131s | 131s 48 | #[cfg_attr(feature = "scale_info", derive(scale_info::TypeInfo))] 131s | ^^^^^^^^^^^^^^^^^^^^^^ 131s | 131s = note: expected values for `feature` are: `const-generics`, `force_unix_path_separator`, `i128`, `no_std`, and `strict` 131s = help: consider adding `scale_info` as a feature in `Cargo.toml` 131s = note: see for more information about checking conditional configuration 131s 131s warning: unexpected `cfg` condition value: `scale_info` 131s --> /usr/share/cargo/registry/typenum-1.17.0/src/int.rs:71:12 131s | 131s 71 | #[cfg_attr(feature = "scale_info", derive(scale_info::TypeInfo))] 131s | ^^^^^^^^^^^^^^^^^^^^^^ 131s | 131s = note: expected values for `feature` are: `const-generics`, `force_unix_path_separator`, `i128`, `no_std`, and `strict` 131s = help: consider adding `scale_info` as a feature in `Cargo.toml` 131s = note: see for more information about checking conditional configuration 131s 131s warning: unexpected `cfg` condition value: `scale_info` 131s --> /usr/share/cargo/registry/typenum-1.17.0/src/uint.rs:49:12 131s | 131s 49 | #[cfg_attr(feature = "scale_info", derive(scale_info::TypeInfo))] 131s | ^^^^^^^^^^^^^^^^^^^^^^ 131s | 131s = note: expected values for `feature` are: `const-generics`, `force_unix_path_separator`, `i128`, `no_std`, and `strict` 131s = help: consider adding `scale_info` as a feature in `Cargo.toml` 131s = note: see for more information about checking conditional configuration 131s 131s warning: unexpected `cfg` condition value: `scale_info` 131s --> /usr/share/cargo/registry/typenum-1.17.0/src/uint.rs:147:12 131s | 131s 147 | #[cfg_attr(feature = "scale_info", derive(scale_info::TypeInfo))] 131s | ^^^^^^^^^^^^^^^^^^^^^^ 131s | 131s = note: expected values for `feature` are: `const-generics`, `force_unix_path_separator`, `i128`, `no_std`, and `strict` 131s = help: consider adding `scale_info` as a feature in `Cargo.toml` 131s = note: see for more information about checking conditional configuration 131s 131s warning: unexpected `cfg` condition name: `tests` 131s --> /usr/share/cargo/registry/typenum-1.17.0/src/uint.rs:1656:7 131s | 131s 1656 | #[cfg(tests)] 131s | ^^^^^ help: there is a config with a similar name: `test` 131s | 131s = help: consider using a Cargo feature instead 131s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 131s [lints.rust] 131s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tests)'] } 131s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tests)");` to the top of the `build.rs` 131s = note: see for more information about checking conditional configuration 131s 131s warning: unexpected `cfg` condition value: `cargo-clippy` 131s --> /usr/share/cargo/registry/typenum-1.17.0/src/uint.rs:1709:16 131s | 131s 1709 | #[cfg_attr(feature = "cargo-clippy", allow(clippy::suspicious_arithmetic_impl))] 131s | ^^^^^^^^^^^^^^^^^^^^^^^^ 131s | 131s = note: expected values for `feature` are: `const-generics`, `force_unix_path_separator`, `i128`, `no_std`, and `strict` 131s = help: consider adding `cargo-clippy` as a feature in `Cargo.toml` 131s = note: see for more information about checking conditional configuration 131s 131s warning: unexpected `cfg` condition value: `scale_info` 131s --> /usr/share/cargo/registry/typenum-1.17.0/src/array.rs:11:12 131s | 131s 11 | #[cfg_attr(feature = "scale_info", derive(scale_info::TypeInfo))] 131s | ^^^^^^^^^^^^^^^^^^^^^^ 131s | 131s = note: expected values for `feature` are: `const-generics`, `force_unix_path_separator`, `i128`, `no_std`, and `strict` 131s = help: consider adding `scale_info` as a feature in `Cargo.toml` 131s = note: see for more information about checking conditional configuration 131s 131s warning: unexpected `cfg` condition value: `scale_info` 131s --> /usr/share/cargo/registry/typenum-1.17.0/src/array.rs:23:12 131s | 131s 23 | #[cfg_attr(feature = "scale_info", derive(scale_info::TypeInfo))] 131s | ^^^^^^^^^^^^^^^^^^^^^^ 131s | 131s = note: expected values for `feature` are: `const-generics`, `force_unix_path_separator`, `i128`, `no_std`, and `strict` 131s = help: consider adding `scale_info` as a feature in `Cargo.toml` 131s = note: see for more information about checking conditional configuration 131s 131s warning: unused import: `*` 131s --> /usr/share/cargo/registry/typenum-1.17.0/src/lib.rs:106:25 131s | 131s 106 | N1, N2, Z0, P1, P2, *, 131s | ^ 131s | 131s = note: `#[warn(unused_imports)]` on by default 131s 131s warning: `futures-executor` (lib) generated 1 warning (1 duplicate) 131s Compiling glib-macros v0.20.7 131s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=glib_macros CARGO_MANIFEST_DIR=/tmp/tmp.MZ13eKTYFc/registry/glib-macros-0.20.7 CARGO_MANIFEST_PATH=/tmp/tmp.MZ13eKTYFc/registry/glib-macros-0.20.7/Cargo.toml CARGO_PKG_AUTHORS='The gtk-rs Project Developers' CARGO_PKG_DESCRIPTION='Rust bindings for the GLib library, proc macros crate' CARGO_PKG_HOMEPAGE='https://gtk-rs.org/' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=glib-macros CARGO_PKG_README='' CARGO_PKG_REPOSITORY='https://github.com/gtk-rs/gtk-rs-core' CARGO_PKG_RUST_VERSION=1.70 CARGO_PKG_VERSION=0.20.7 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=20 CARGO_PKG_VERSION_PATCH=7 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.MZ13eKTYFc/target/debug/deps rustc --crate-name glib_macros --edition=2021 /tmp/tmp.MZ13eKTYFc/registry/glib-macros-0.20.7/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=e197971b64e0210b -C extra-filename=-e197971b64e0210b --out-dir /tmp/tmp.MZ13eKTYFc/target/debug/deps -L dependency=/tmp/tmp.MZ13eKTYFc/target/debug/deps --extern heck=/tmp/tmp.MZ13eKTYFc/target/debug/deps/libheck-780ed41701172964.rlib --extern proc_macro_crate=/tmp/tmp.MZ13eKTYFc/target/debug/deps/libproc_macro_crate-76b8c9685ffc2762.rlib --extern proc_macro2=/tmp/tmp.MZ13eKTYFc/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rlib --extern quote=/tmp/tmp.MZ13eKTYFc/target/debug/deps/libquote-dc92c6f25ee0f0c6.rlib --extern syn=/tmp/tmp.MZ13eKTYFc/target/debug/deps/libsyn-0167beed9e699402.rlib --extern proc_macro --cap-lints warn` 131s warning: `typenum` (lib) generated 19 warnings (1 duplicate) 131s Compiling futures-channel v0.3.31 131s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=futures_channel CARGO_MANIFEST_DIR=/tmp/tmp.MZ13eKTYFc/registry/futures-channel-0.3.31 CARGO_MANIFEST_PATH=/tmp/tmp.MZ13eKTYFc/registry/futures-channel-0.3.31/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='Channels for asynchronous communication using futures-rs. 131s ' CARGO_PKG_HOMEPAGE='https://rust-lang.github.io/futures-rs' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=futures-channel CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/futures-rs' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=0.3.31 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=31 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.MZ13eKTYFc/target/debug/deps rustc --crate-name futures_channel --edition=2018 /tmp/tmp.MZ13eKTYFc/registry/futures-channel-0.3.31/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --warn=unreachable_pub --warn=unexpected_cfgs --warn=single_use_lifetimes --warn=rust_2018_idioms --warn=missing_debug_implementations --check-cfg 'cfg(futures_sanitizer)' --cfg 'feature="alloc"' --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "cfg-target-has-atomic", "default", "futures-sink", "sink", "std", "unstable"))' -C metadata=8ed485ea134c933c -C extra-filename=-8ed485ea134c933c --out-dir /tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.MZ13eKTYFc/target/debug/deps --extern futures_core=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/libfutures_core-8d305950da6bf5c8.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.MZ13eKTYFc/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 131s warning: `futures-channel` (lib) generated 1 warning (1 duplicate) 131s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.MZ13eKTYFc/registry/serde-1.0.217 CARGO_MANIFEST_PATH=/tmp/tmp.MZ13eKTYFc/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.MZ13eKTYFc/target/debug/deps rustc --crate-name build_script_build --edition=2018 /tmp/tmp.MZ13eKTYFc/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.MZ13eKTYFc/target/debug/build/serde-c22c8603f1f999ec -L dependency=/tmp/tmp.MZ13eKTYFc/target/debug/deps --cap-lints warn` 132s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=smallvec CARGO_MANIFEST_DIR=/tmp/tmp.MZ13eKTYFc/registry/smallvec-1.13.2 CARGO_MANIFEST_PATH=/tmp/tmp.MZ13eKTYFc/registry/smallvec-1.13.2/Cargo.toml CARGO_PKG_AUTHORS='The Servo Project Developers' CARGO_PKG_DESCRIPTION=''\''Small vector'\'' optimization: store up to a small number of items on the stack' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=smallvec CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/servo/rust-smallvec' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=1.13.2 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=13 CARGO_PKG_VERSION_PATCH=2 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.MZ13eKTYFc/target/debug/deps rustc --crate-name smallvec --edition=2018 /tmp/tmp.MZ13eKTYFc/registry/smallvec-1.13.2/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="const_generics"' --cfg 'feature="const_new"' --cfg 'feature="union"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("arbitrary", "const_generics", "const_new", "debugger_visualizer", "drain_filter", "drain_keep_rest", "may_dangle", "serde", "specialization", "union", "write"))' -C metadata=ef72c43926f60793 -C extra-filename=-ef72c43926f60793 --out-dir /tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.MZ13eKTYFc/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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.MZ13eKTYFc/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 132s warning: `smallvec` (lib) generated 1 warning (1 duplicate) 132s Compiling fastrand v2.1.1 132s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=fastrand CARGO_MANIFEST_DIR=/tmp/tmp.MZ13eKTYFc/registry/fastrand-2.1.1 CARGO_MANIFEST_PATH=/tmp/tmp.MZ13eKTYFc/registry/fastrand-2.1.1/Cargo.toml CARGO_PKG_AUTHORS='Stjepan Glavina ' CARGO_PKG_DESCRIPTION='A simple and fast random number generator' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=fastrand CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/smol-rs/fastrand' CARGO_PKG_RUST_VERSION=1.36 CARGO_PKG_VERSION=2.1.1 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.MZ13eKTYFc/target/debug/deps rustc --crate-name fastrand --edition=2018 /tmp/tmp.MZ13eKTYFc/registry/fastrand-2.1.1/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="alloc"' --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "default", "std"))' -C metadata=b0f30b63d6f103db -C extra-filename=-b0f30b63d6f103db --out-dir /tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.MZ13eKTYFc/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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.MZ13eKTYFc/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 132s warning: unexpected `cfg` condition value: `js` 132s --> /usr/share/cargo/registry/fastrand-2.1.1/src/global_rng.rs:202:5 132s | 132s 202 | feature = "js" 132s | ^^^^^^^^^^^^^^ 132s | 132s = note: expected values for `feature` are: `alloc`, `default`, and `std` 132s = help: consider adding `js` as a feature in `Cargo.toml` 132s = note: see for more information about checking conditional configuration 132s = note: `#[warn(unexpected_cfgs)]` on by default 132s 132s warning: unexpected `cfg` condition value: `js` 132s --> /usr/share/cargo/registry/fastrand-2.1.1/src/global_rng.rs:214:9 132s | 132s 214 | not(feature = "js") 132s | ^^^^^^^^^^^^^^ 132s | 132s = note: expected values for `feature` are: `alloc`, `default`, and `std` 132s = help: consider adding `js` as a feature in `Cargo.toml` 132s = note: see for more information about checking conditional configuration 132s 132s warning: `fastrand` (lib) generated 3 warnings (1 duplicate) 132s Compiling futures-lite v2.3.0 132s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=futures_lite CARGO_MANIFEST_DIR=/tmp/tmp.MZ13eKTYFc/registry/futures-lite-2.3.0 CARGO_MANIFEST_PATH=/tmp/tmp.MZ13eKTYFc/registry/futures-lite-2.3.0/Cargo.toml CARGO_PKG_AUTHORS='Stjepan Glavina :Contributors to futures-rs' CARGO_PKG_DESCRIPTION='Futures, streams, and async I/O combinators' CARGO_PKG_HOMEPAGE='https://github.com/smol-rs/futures-lite' CARGO_PKG_LICENSE='Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=futures-lite CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/smol-rs/futures-lite' CARGO_PKG_RUST_VERSION=1.60 CARGO_PKG_VERSION=2.3.0 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.MZ13eKTYFc/target/debug/deps rustc --crate-name futures_lite --edition=2021 /tmp/tmp.MZ13eKTYFc/registry/futures-lite-2.3.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="alloc"' --cfg 'feature="default"' --cfg 'feature="fastrand"' --cfg 'feature="futures-io"' --cfg 'feature="parking"' --cfg 'feature="race"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "default", "fastrand", "futures-io", "memchr", "parking", "race", "std"))' -C metadata=b3966bcb93a5ad2f -C extra-filename=-b3966bcb93a5ad2f --out-dir /tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.MZ13eKTYFc/target/debug/deps --extern fastrand=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/libfastrand-b0f30b63d6f103db.rmeta --extern futures_core=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/libfutures_core-8d305950da6bf5c8.rmeta --extern futures_io=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/libfutures_io-1a4387591f8b2b95.rmeta --extern parking=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/libparking-0a38dc17b1bc33e2.rmeta --extern pin_project_lite=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/libpin_project_lite-5dc815523e98d889.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.MZ13eKTYFc/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 132s warning: elided lifetime has a name 132s --> /usr/share/cargo/registry/futures-lite-2.3.0/src/io.rs:1625:88 132s | 132s 1625 | fn read_until<'a>(&'a mut self, byte: u8, buf: &'a mut Vec) -> ReadUntilFuture<'_, Self> 132s | -- lifetime `'a` declared here ^^ this elided lifetime gets resolved as `'a` 132s | 132s = note: `#[warn(elided_named_lifetimes)]` on by default 132s 132s warning: elided lifetime has a name 132s --> /usr/share/cargo/registry/futures-lite-2.3.0/src/io.rs:1658:75 132s | 132s 1658 | fn read_line<'a>(&'a mut self, buf: &'a mut String) -> ReadLineFuture<'_, Self> 132s | -- lifetime `'a` declared here ^^ this elided lifetime gets resolved as `'a` 132s 132s warning: `futures-lite` (lib) generated 3 warnings (1 duplicate) 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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0--remap-path-prefix/tmp/tmp.MZ13eKTYFc/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.MZ13eKTYFc/registry/serde-1.0.217 CARGO_MANIFEST_PATH=/tmp/tmp.MZ13eKTYFc/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.MZ13eKTYFc/target/debug/deps:/tmp/tmp.MZ13eKTYFc/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/build/serde-c08ea6899e623ec6/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.MZ13eKTYFc/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) 133s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_relaxed_trait_bounds) 133s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_serde_derive) 133s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_std_atomic) 133s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_std_atomic64) 133s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_systemtime_checked_add) 133s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_target_has_atomic) 133s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=generic_array CARGO_MANIFEST_DIR=/tmp/tmp.MZ13eKTYFc/registry/generic-array-0.14.7 CARGO_MANIFEST_PATH=/tmp/tmp.MZ13eKTYFc/registry/generic-array-0.14.7/Cargo.toml CARGO_PKG_AUTHORS='Bartłomiej Kamiński :Aaron Trent ' CARGO_PKG_DESCRIPTION='Generic types implementing functionality of arrays' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=generic-array CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/fizyk20/generic-array.git' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.14.7 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=14 CARGO_PKG_VERSION_PATCH=7 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.MZ13eKTYFc/target/debug/deps OUT_DIR=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/build/generic-array-da8fba9a25807be8/out rustc --crate-name generic_array --edition=2015 /tmp/tmp.MZ13eKTYFc/registry/generic-array-0.14.7/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="more_lengths"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("more_lengths", "serde", "zeroize"))' -C metadata=d02d059964c7aee0 -C extra-filename=-d02d059964c7aee0 --out-dir /tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.MZ13eKTYFc/target/debug/deps --extern typenum=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/libtypenum-c66037e8139405ff.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.MZ13eKTYFc/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain --cfg relaxed_coherence` 133s warning: unexpected `cfg` condition name: `relaxed_coherence` 133s --> /usr/share/cargo/registry/generic-array-0.14.7/src/impls.rs:136:19 133s | 133s 136 | #[cfg(relaxed_coherence)] 133s | ^^^^^^^^^^^^^^^^^ 133s ... 133s 183 | / impl_from! { 133s 184 | | 1 => ::typenum::U1, 133s 185 | | 2 => ::typenum::U2, 133s 186 | | 3 => ::typenum::U3, 133s ... | 133s 215 | | 32 => ::typenum::U32 133s 216 | | } 133s | |_- in this macro invocation 133s | 133s = help: expected names are: `clippy`, `debug_assertions`, `doc`, `docsrs`, `doctest`, `feature`, `fmt_debug`, `miri`, `overflow_checks`, `panic`, `proc_macro`, `relocation_model`, `rustfmt`, `sanitize`, `sanitizer_cfi_generalize_pointers`, `sanitizer_cfi_normalize_integers`, `target_abi`, `target_arch`, `target_endian`, `target_env`, `target_family`, `target_feature`, `target_has_atomic`, `target_has_atomic_equal_alignment`, `target_has_atomic_load_store`, `target_os`, `target_pointer_width`, `target_thread_local`, `target_vendor`, `test`, `ub_checks`, `unix`, and `windows` 133s = help: consider using a Cargo feature instead 133s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 133s [lints.rust] 133s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(relaxed_coherence)'] } 133s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(relaxed_coherence)");` to the top of the `build.rs` 133s = note: see for more information about checking conditional configuration 133s = note: `#[warn(unexpected_cfgs)]` on by default 133s = note: this warning originates in the macro `impl_from` (in Nightly builds, run with -Z macro-backtrace for more info) 133s 133s warning: unexpected `cfg` condition name: `relaxed_coherence` 133s --> /usr/share/cargo/registry/generic-array-0.14.7/src/impls.rs:158:23 133s | 133s 158 | #[cfg(not(relaxed_coherence))] 133s | ^^^^^^^^^^^^^^^^^ 133s ... 133s 183 | / impl_from! { 133s 184 | | 1 => ::typenum::U1, 133s 185 | | 2 => ::typenum::U2, 133s 186 | | 3 => ::typenum::U3, 133s ... | 133s 215 | | 32 => ::typenum::U32 133s 216 | | } 133s | |_- in this macro invocation 133s | 133s = help: consider using a Cargo feature instead 133s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 133s [lints.rust] 133s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(relaxed_coherence)'] } 133s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(relaxed_coherence)");` to the top of the `build.rs` 133s = note: see for more information about checking conditional configuration 133s = note: this warning originates in the macro `impl_from` (in Nightly builds, run with -Z macro-backtrace for more info) 133s 133s warning: unexpected `cfg` condition name: `relaxed_coherence` 133s --> /usr/share/cargo/registry/generic-array-0.14.7/src/impls.rs:136:19 133s | 133s 136 | #[cfg(relaxed_coherence)] 133s | ^^^^^^^^^^^^^^^^^ 133s ... 133s 219 | / impl_from! { 133s 220 | | 33 => ::typenum::U33, 133s 221 | | 34 => ::typenum::U34, 133s 222 | | 35 => ::typenum::U35, 133s ... | 133s 268 | | 1024 => ::typenum::U1024 133s 269 | | } 133s | |_- in this macro invocation 133s | 133s = help: consider using a Cargo feature instead 133s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 133s [lints.rust] 133s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(relaxed_coherence)'] } 133s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(relaxed_coherence)");` to the top of the `build.rs` 133s = note: see for more information about checking conditional configuration 133s = note: this warning originates in the macro `impl_from` (in Nightly builds, run with -Z macro-backtrace for more info) 133s 133s warning: unexpected `cfg` condition name: `relaxed_coherence` 133s --> /usr/share/cargo/registry/generic-array-0.14.7/src/impls.rs:158:23 133s | 133s 158 | #[cfg(not(relaxed_coherence))] 133s | ^^^^^^^^^^^^^^^^^ 133s ... 133s 219 | / impl_from! { 133s 220 | | 33 => ::typenum::U33, 133s 221 | | 34 => ::typenum::U34, 133s 222 | | 35 => ::typenum::U35, 133s ... | 133s 268 | | 1024 => ::typenum::U1024 133s 269 | | } 133s | |_- in this macro invocation 133s | 133s = help: consider using a Cargo feature instead 133s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 133s [lints.rust] 133s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(relaxed_coherence)'] } 133s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(relaxed_coherence)");` to the top of the `build.rs` 133s = note: see for more information about checking conditional configuration 133s = note: this warning originates in the macro `impl_from` (in Nightly builds, run with -Z macro-backtrace for more info) 133s 133s warning: `generic-array` (lib) generated 5 warnings (1 duplicate) 133s Compiling pango-sys v0.20.7 133s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.MZ13eKTYFc/registry/pango-sys-0.20.7 CARGO_MANIFEST_PATH=/tmp/tmp.MZ13eKTYFc/registry/pango-sys-0.20.7/Cargo.toml CARGO_PKG_AUTHORS='The gtk-rs Project Developers' CARGO_PKG_DESCRIPTION='FFI bindings to libpango-1.0' CARGO_PKG_HOMEPAGE='https://gtk-rs.org/' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=pango-sys CARGO_PKG_README='' CARGO_PKG_REPOSITORY='https://github.com/gtk-rs/gtk-rs-core' CARGO_PKG_RUST_VERSION=1.70 CARGO_PKG_VERSION=0.20.7 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=20 CARGO_PKG_VERSION_PATCH=7 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.MZ13eKTYFc/target/debug/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.MZ13eKTYFc/registry/pango-sys-0.20.7/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="v1_42"' --cfg 'feature="v1_44"' --cfg 'feature="v1_46"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("v1_42", "v1_44", "v1_46", "v1_48", "v1_50", "v1_52", "v1_54", "v1_56"))' -C metadata=6dc5a8848ee39789 -C extra-filename=-6dc5a8848ee39789 --out-dir /tmp/tmp.MZ13eKTYFc/target/debug/build/pango-sys-6dc5a8848ee39789 -L dependency=/tmp/tmp.MZ13eKTYFc/target/debug/deps --extern system_deps=/tmp/tmp.MZ13eKTYFc/target/debug/deps/libsystem_deps-df5512f70260f2a1.rlib --cap-lints warn` 133s Compiling cairo-sys-rs v0.20.7 133s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.MZ13eKTYFc/registry/cairo-sys-rs-0.20.7 CARGO_MANIFEST_PATH=/tmp/tmp.MZ13eKTYFc/registry/cairo-sys-rs-0.20.7/Cargo.toml CARGO_PKG_AUTHORS='The gtk-rs Project Developers' CARGO_PKG_DESCRIPTION='FFI bindings to libcairo' CARGO_PKG_HOMEPAGE='https://gtk-rs.org/' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=cairo-sys-rs CARGO_PKG_README='' CARGO_PKG_REPOSITORY='https://github.com/gtk-rs/gtk-rs-core' CARGO_PKG_RUST_VERSION=1.70 CARGO_PKG_VERSION=0.20.7 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=20 CARGO_PKG_VERSION_PATCH=7 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.MZ13eKTYFc/target/debug/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.MZ13eKTYFc/registry/cairo-sys-rs-0.20.7/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="glib-sys"' --cfg 'feature="use_glib"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("freetype", "glib-sys", "pdf", "png", "ps", "script", "svg", "use_glib", "v1_16", "v1_18", "x11", "xcb", "xlib"))' -C metadata=4972b5d5a676236d -C extra-filename=-4972b5d5a676236d --out-dir /tmp/tmp.MZ13eKTYFc/target/debug/build/cairo-sys-rs-4972b5d5a676236d -L dependency=/tmp/tmp.MZ13eKTYFc/target/debug/deps --extern system_deps=/tmp/tmp.MZ13eKTYFc/target/debug/deps/libsystem_deps-df5512f70260f2a1.rlib --cap-lints warn` 134s Compiling gdk-pixbuf-sys v0.20.7 134s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.MZ13eKTYFc/registry/gdk-pixbuf-sys-0.20.7 CARGO_MANIFEST_PATH=/tmp/tmp.MZ13eKTYFc/registry/gdk-pixbuf-sys-0.20.7/Cargo.toml CARGO_PKG_AUTHORS='The gtk-rs Project Developers' CARGO_PKG_DESCRIPTION='FFI bindings to libgdk_pixbuf-2.0' CARGO_PKG_HOMEPAGE='https://gtk-rs.org/' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=gdk-pixbuf-sys CARGO_PKG_README='' CARGO_PKG_REPOSITORY='https://github.com/gtk-rs/gtk-rs-core' CARGO_PKG_RUST_VERSION=1.70 CARGO_PKG_VERSION=0.20.7 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=20 CARGO_PKG_VERSION_PATCH=7 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.MZ13eKTYFc/target/debug/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.MZ13eKTYFc/registry/gdk-pixbuf-sys-0.20.7/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("v2_40", "v2_42"))' -C metadata=8aafb2c38cfa708b -C extra-filename=-8aafb2c38cfa708b --out-dir /tmp/tmp.MZ13eKTYFc/target/debug/build/gdk-pixbuf-sys-8aafb2c38cfa708b -L dependency=/tmp/tmp.MZ13eKTYFc/target/debug/deps --extern system_deps=/tmp/tmp.MZ13eKTYFc/target/debug/deps/libsystem_deps-df5512f70260f2a1.rlib --cap-lints warn` 134s Compiling serde_derive v1.0.217 134s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=serde_derive CARGO_MANIFEST_DIR=/tmp/tmp.MZ13eKTYFc/registry/serde_derive-1.0.217 CARGO_MANIFEST_PATH=/tmp/tmp.MZ13eKTYFc/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.MZ13eKTYFc/target/debug/deps rustc --crate-name serde_derive --edition=2015 /tmp/tmp.MZ13eKTYFc/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=85fb19fec9ccb150 -C extra-filename=-85fb19fec9ccb150 --out-dir /tmp/tmp.MZ13eKTYFc/target/debug/deps -L dependency=/tmp/tmp.MZ13eKTYFc/target/debug/deps --extern proc_macro2=/tmp/tmp.MZ13eKTYFc/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rlib --extern quote=/tmp/tmp.MZ13eKTYFc/target/debug/deps/libquote-dc92c6f25ee0f0c6.rlib --extern syn=/tmp/tmp.MZ13eKTYFc/target/debug/deps/libsyn-0167beed9e699402.rlib --extern proc_macro --cap-lints warn` 136s Compiling glib v0.20.7 136s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=glib CARGO_MANIFEST_DIR=/tmp/tmp.MZ13eKTYFc/registry/glib-0.20.7 CARGO_MANIFEST_PATH=/tmp/tmp.MZ13eKTYFc/registry/glib-0.20.7/Cargo.toml CARGO_PKG_AUTHORS='The gtk-rs Project Developers' CARGO_PKG_DESCRIPTION='Rust bindings for the GLib library' CARGO_PKG_HOMEPAGE='https://gtk-rs.org/' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=glib CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/gtk-rs/gtk-rs-core' CARGO_PKG_RUST_VERSION=1.70 CARGO_PKG_VERSION=0.20.7 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=20 CARGO_PKG_VERSION_PATCH=7 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.MZ13eKTYFc/target/debug/deps rustc --crate-name glib --edition=2021 /tmp/tmp.MZ13eKTYFc/registry/glib-0.20.7/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="gio"' --cfg 'feature="gio-sys"' --cfg 'feature="v2_58"' --cfg 'feature="v2_60"' --cfg 'feature="v2_62"' --cfg 'feature="v2_64"' --cfg 'feature="v2_66"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("compiletests", "default", "gio", "gio-sys", "log", "log_macros", "rs-log", "v2_58", "v2_60", "v2_62", "v2_64", "v2_66", "v2_68", "v2_70", "v2_72", "v2_74", "v2_76", "v2_78", "v2_80", "v2_82", "v2_84"))' -C metadata=ba3b7fdf202218f0 -C extra-filename=-ba3b7fdf202218f0 --out-dir /tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.MZ13eKTYFc/target/debug/deps --extern bitflags=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/libbitflags-65f3f529c7b65778.rmeta --extern futures_channel=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/libfutures_channel-8ed485ea134c933c.rmeta --extern futures_core=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/libfutures_core-8d305950da6bf5c8.rmeta --extern futures_executor=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/libfutures_executor-fb324b5dd28ac892.rmeta --extern futures_task=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/libfutures_task-47c3a7d17767e18f.rmeta --extern futures_util=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/libfutures_util-724575be975598c0.rmeta --extern gio_sys=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/libgio_sys-09c58e200e125269.rmeta --extern glib_macros=/tmp/tmp.MZ13eKTYFc/target/debug/deps/libglib_macros-e197971b64e0210b.so --extern glib_sys=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/libglib_sys-8d7612a6c3ae820a.rmeta --extern gobject_sys=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/libgobject_sys-c41d1b14aec65cc2.rmeta --extern libc=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/liblibc-cf2521928ac070dc.rmeta --extern memchr=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/libmemchr-944ab1891fd21906.rmeta --extern smallvec=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/libsmallvec-ef72c43926f60793.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.MZ13eKTYFc/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 138s Compiling zerocopy-derive v0.7.34 138s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=zerocopy_derive CARGO_MANIFEST_DIR=/tmp/tmp.MZ13eKTYFc/registry/zerocopy-derive-0.7.34 CARGO_MANIFEST_PATH=/tmp/tmp.MZ13eKTYFc/registry/zerocopy-derive-0.7.34/Cargo.toml CARGO_PKG_AUTHORS='Joshua Liebow-Feeser ' CARGO_PKG_DESCRIPTION='Custom derive for traits from the zerocopy crate' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='BSD-2-Clause OR Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=zerocopy-derive CARGO_PKG_README='' CARGO_PKG_REPOSITORY='https://github.com/google/zerocopy' CARGO_PKG_RUST_VERSION=1.60.0 CARGO_PKG_VERSION=0.7.34 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=7 CARGO_PKG_VERSION_PATCH=34 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.MZ13eKTYFc/target/debug/deps rustc --crate-name zerocopy_derive --edition=2018 /tmp/tmp.MZ13eKTYFc/registry/zerocopy-derive-0.7.34/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type proc-macro --emit=dep-info,link -C prefer-dynamic -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=676bad9287e184ca -C extra-filename=-676bad9287e184ca --out-dir /tmp/tmp.MZ13eKTYFc/target/debug/deps -L dependency=/tmp/tmp.MZ13eKTYFc/target/debug/deps --extern proc_macro2=/tmp/tmp.MZ13eKTYFc/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rlib --extern quote=/tmp/tmp.MZ13eKTYFc/target/debug/deps/libquote-dc92c6f25ee0f0c6.rlib --extern syn=/tmp/tmp.MZ13eKTYFc/target/debug/deps/libsyn-0167beed9e699402.rlib --extern proc_macro --cap-lints warn` 139s Compiling zvariant_utils v2.1.0 139s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=zvariant_utils CARGO_MANIFEST_DIR=/tmp/tmp.MZ13eKTYFc/registry/zvariant_utils-2.1.0 CARGO_MANIFEST_PATH=/tmp/tmp.MZ13eKTYFc/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.MZ13eKTYFc/target/debug/deps rustc --crate-name zvariant_utils --edition=2021 /tmp/tmp.MZ13eKTYFc/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=555d90bad4acf190 -C extra-filename=-555d90bad4acf190 --out-dir /tmp/tmp.MZ13eKTYFc/target/debug/deps -L dependency=/tmp/tmp.MZ13eKTYFc/target/debug/deps --extern proc_macro2=/tmp/tmp.MZ13eKTYFc/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rmeta --extern quote=/tmp/tmp.MZ13eKTYFc/target/debug/deps/libquote-dc92c6f25ee0f0c6.rmeta --extern syn=/tmp/tmp.MZ13eKTYFc/target/debug/deps/libsyn-0167beed9e699402.rmeta --cap-lints warn` 139s Compiling gio v0.20.7 139s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.MZ13eKTYFc/registry/gio-0.20.7 CARGO_MANIFEST_PATH=/tmp/tmp.MZ13eKTYFc/registry/gio-0.20.7/Cargo.toml CARGO_PKG_AUTHORS='The gtk-rs Project Developers' CARGO_PKG_DESCRIPTION='Rust bindings for the Gio library' CARGO_PKG_HOMEPAGE='https://gtk-rs.org/' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=gio CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/gtk-rs/gtk-rs-core' CARGO_PKG_RUST_VERSION=1.70 CARGO_PKG_VERSION=0.20.7 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=20 CARGO_PKG_VERSION_PATCH=7 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.MZ13eKTYFc/target/debug/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.MZ13eKTYFc/registry/gio-0.20.7/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="v2_58"' --cfg 'feature="v2_60"' --cfg 'feature="v2_62"' --cfg 'feature="v2_64"' --cfg 'feature="v2_66"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("v2_58", "v2_60", "v2_62", "v2_64", "v2_66", "v2_68", "v2_70", "v2_72", "v2_74", "v2_76", "v2_78", "v2_80", "v2_82", "v2_84"))' -C metadata=544c6453d915c046 -C extra-filename=-544c6453d915c046 --out-dir /tmp/tmp.MZ13eKTYFc/target/debug/build/gio-544c6453d915c046 -L dependency=/tmp/tmp.MZ13eKTYFc/target/debug/deps --cap-lints warn` 140s Compiling byteorder v1.5.0 140s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=byteorder CARGO_MANIFEST_DIR=/tmp/tmp.MZ13eKTYFc/registry/byteorder-1.5.0 CARGO_MANIFEST_PATH=/tmp/tmp.MZ13eKTYFc/registry/byteorder-1.5.0/Cargo.toml CARGO_PKG_AUTHORS='Andrew Gallant ' CARGO_PKG_DESCRIPTION='Library for reading/writing numbers in big-endian and little-endian.' CARGO_PKG_HOMEPAGE='https://github.com/BurntSushi/byteorder' CARGO_PKG_LICENSE='Unlicense OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=byteorder CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/BurntSushi/byteorder' CARGO_PKG_RUST_VERSION=1.60 CARGO_PKG_VERSION=1.5.0 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=5 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.MZ13eKTYFc/target/debug/deps rustc --crate-name byteorder --edition=2021 /tmp/tmp.MZ13eKTYFc/registry/byteorder-1.5.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "i128", "std"))' -C metadata=89ebf31d1f97ee77 -C extra-filename=-89ebf31d1f97ee77 --out-dir /tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.MZ13eKTYFc/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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.MZ13eKTYFc/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 140s warning: `byteorder` (lib) generated 1 warning (1 duplicate) 140s Compiling rustix v0.38.37 140s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.MZ13eKTYFc/registry/rustix-0.38.37 CARGO_MANIFEST_PATH=/tmp/tmp.MZ13eKTYFc/registry/rustix-0.38.37/Cargo.toml CARGO_PKG_AUTHORS='Dan Gohman :Jakub Konka ' CARGO_PKG_DESCRIPTION='Safe Rust bindings to POSIX/Unix/Linux/Winsock-like syscalls' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=rustix CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/bytecodealliance/rustix' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=0.38.37 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=38 CARGO_PKG_VERSION_PATCH=37 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.MZ13eKTYFc/target/debug/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.MZ13eKTYFc/registry/rustix-0.38.37/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --warn=unexpected_cfgs --check-cfg 'cfg(alloc_c_string)' --check-cfg 'cfg(alloc_ffi)' --check-cfg 'cfg(apple)' --check-cfg 'cfg(asm_experimental_arch)' --check-cfg 'cfg(bsd)' --check-cfg 'cfg(core_c_str)' --check-cfg 'cfg(core_ffi_c)' --check-cfg 'cfg(core_intrinsics)' --check-cfg 'cfg(criterion)' --check-cfg 'cfg(document_experimental_runtime_api)' --check-cfg 'cfg(fix_y2038)' --check-cfg 'cfg(freebsdlike)' --check-cfg 'cfg(libc)' --check-cfg 'cfg(linux_kernel)' --check-cfg 'cfg(linux_like)' --check-cfg 'cfg(linux_raw)' --check-cfg 'cfg(netbsdlike)' --check-cfg 'cfg(rustc_attrs)' --check-cfg 'cfg(solarish)' --check-cfg 'cfg(staged_api)' --check-cfg 'cfg(static_assertions)' --check-cfg 'cfg(thumb_mode)' --check-cfg 'cfg(wasi)' --check-cfg 'cfg(wasi_ext)' --check-cfg 'cfg(target_arch, values("xtensa"))' --cfg 'feature="alloc"' --cfg 'feature="event"' --cfg 'feature="fs"' --cfg 'feature="libc-extra-traits"' --cfg 'feature="net"' --cfg 'feature="pipe"' --cfg 'feature="process"' --cfg 'feature="std"' --cfg 'feature="time"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("all-apis", "alloc", "cc", "compiler_builtins", "core", "default", "event", "fs", "io_uring", "itoa", "libc", "libc-extra-traits", "libc_errno", "linux_4_11", "linux_latest", "mm", "mount", "net", "once_cell", "param", "pipe", "process", "procfs", "pty", "rand", "runtime", "rustc-dep-of-std", "shm", "std", "stdio", "system", "termios", "thread", "time", "try_close", "use-explicitly-provided-auxv", "use-libc", "use-libc-auxv"))' -C metadata=8b93b51d2d94d594 -C extra-filename=-8b93b51d2d94d594 --out-dir /tmp/tmp.MZ13eKTYFc/target/debug/build/rustix-8b93b51d2d94d594 -L dependency=/tmp/tmp.MZ13eKTYFc/target/debug/deps --cap-lints warn` 140s Compiling once_cell v1.20.2 140s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=once_cell CARGO_MANIFEST_DIR=/tmp/tmp.MZ13eKTYFc/registry/once_cell-1.20.2 CARGO_MANIFEST_PATH=/tmp/tmp.MZ13eKTYFc/registry/once_cell-1.20.2/Cargo.toml CARGO_PKG_AUTHORS='Aleksey Kladov ' CARGO_PKG_DESCRIPTION='Single assignment cells and lazy values.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=once_cell CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/matklad/once_cell' CARGO_PKG_RUST_VERSION=1.60 CARGO_PKG_VERSION=1.20.2 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=20 CARGO_PKG_VERSION_PATCH=2 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.MZ13eKTYFc/target/debug/deps rustc --crate-name once_cell --edition=2021 /tmp/tmp.MZ13eKTYFc/registry/once_cell-1.20.2/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="alloc"' --cfg 'feature="default"' --cfg 'feature="race"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "atomic-polyfill", "critical-section", "default", "parking_lot", "portable-atomic", "race", "std", "unstable"))' -C metadata=f9b984852945e4ac -C extra-filename=-f9b984852945e4ac --out-dir /tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.MZ13eKTYFc/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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.MZ13eKTYFc/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 140s warning: `once_cell` (lib) generated 1 warning (1 duplicate) 140s Compiling tracing-core v0.1.32 140s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=tracing_core CARGO_MANIFEST_DIR=/tmp/tmp.MZ13eKTYFc/registry/tracing-core-0.1.32 CARGO_MANIFEST_PATH=/tmp/tmp.MZ13eKTYFc/registry/tracing-core-0.1.32/Cargo.toml CARGO_PKG_AUTHORS='Tokio Contributors ' CARGO_PKG_DESCRIPTION='Core primitives for application-level tracing. 140s ' CARGO_PKG_HOMEPAGE='https://tokio.rs' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=tracing-core CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/tokio-rs/tracing' CARGO_PKG_RUST_VERSION=1.56.0 CARGO_PKG_VERSION=0.1.32 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=32 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.MZ13eKTYFc/target/debug/deps rustc --crate-name tracing_core --edition=2018 /tmp/tmp.MZ13eKTYFc/registry/tracing-core-0.1.32/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="once_cell"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "once_cell", "std", "valuable"))' -C metadata=4c8af7279fad1469 -C extra-filename=-4c8af7279fad1469 --out-dir /tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.MZ13eKTYFc/target/debug/deps --extern once_cell=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/libonce_cell-f9b984852945e4ac.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.MZ13eKTYFc/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 140s warning: lint `private_in_public` has been removed: replaced with another group of lints, see RFC for more information 140s --> /usr/share/cargo/registry/tracing-core-0.1.32/src/lib.rs:138:5 140s | 140s 138 | private_in_public, 140s | ^^^^^^^^^^^^^^^^^ 140s | 140s = note: `#[warn(renamed_and_removed_lints)]` on by default 140s 140s warning: unexpected `cfg` condition value: `alloc` 140s --> /usr/share/cargo/registry/tracing-core-0.1.32/src/dispatcher.rs:147:7 140s | 140s 147 | #[cfg(feature = "alloc")] 140s | ^^^^^^^^^^^^^^^^^ 140s | 140s = note: expected values for `feature` are: `default`, `once_cell`, `std`, and `valuable` 140s = help: consider adding `alloc` as a feature in `Cargo.toml` 140s = note: see for more information about checking conditional configuration 140s = note: `#[warn(unexpected_cfgs)]` on by default 140s 140s warning: unexpected `cfg` condition value: `alloc` 140s --> /usr/share/cargo/registry/tracing-core-0.1.32/src/dispatcher.rs:150:7 140s | 140s 150 | #[cfg(feature = "alloc")] 140s | ^^^^^^^^^^^^^^^^^ 140s | 140s = note: expected values for `feature` are: `default`, `once_cell`, `std`, and `valuable` 140s = help: consider adding `alloc` as a feature in `Cargo.toml` 140s = note: see for more information about checking conditional configuration 140s 140s warning: unexpected `cfg` condition name: `tracing_unstable` 140s --> /usr/share/cargo/registry/tracing-core-0.1.32/src/field.rs:374:11 140s | 140s 374 | #[cfg(all(tracing_unstable, feature = "valuable"))] 140s | ^^^^^^^^^^^^^^^^ 140s | 140s = help: expected names are: `clippy`, `debug_assertions`, `doc`, `docsrs`, `doctest`, `feature`, `fmt_debug`, `miri`, `overflow_checks`, `panic`, `proc_macro`, `relocation_model`, `rustfmt`, `sanitize`, `sanitizer_cfi_generalize_pointers`, `sanitizer_cfi_normalize_integers`, `target_abi`, `target_arch`, `target_endian`, `target_env`, `target_family`, `target_feature`, `target_has_atomic`, `target_has_atomic_equal_alignment`, `target_has_atomic_load_store`, `target_os`, `target_pointer_width`, `target_thread_local`, `target_vendor`, `test`, `ub_checks`, `unix`, and `windows` 140s = help: consider using a Cargo feature instead 140s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 140s [lints.rust] 140s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tracing_unstable)'] } 140s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tracing_unstable)");` to the top of the `build.rs` 140s = note: see for more information about checking conditional configuration 140s 140s warning: unexpected `cfg` condition name: `tracing_unstable` 140s --> /usr/share/cargo/registry/tracing-core-0.1.32/src/field.rs:719:11 140s | 140s 719 | #[cfg(all(tracing_unstable, feature = "valuable"))] 140s | ^^^^^^^^^^^^^^^^ 140s | 140s = help: consider using a Cargo feature instead 140s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 140s [lints.rust] 140s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tracing_unstable)'] } 140s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tracing_unstable)");` to the top of the `build.rs` 140s = note: see for more information about checking conditional configuration 140s 140s warning: unexpected `cfg` condition name: `tracing_unstable` 140s --> /usr/share/cargo/registry/tracing-core-0.1.32/src/field.rs:722:11 140s | 140s 722 | #[cfg(all(tracing_unstable, feature = "valuable"))] 140s | ^^^^^^^^^^^^^^^^ 140s | 140s = help: consider using a Cargo feature instead 140s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 140s [lints.rust] 140s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tracing_unstable)'] } 140s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tracing_unstable)");` to the top of the `build.rs` 140s = note: see for more information about checking conditional configuration 140s 140s warning: unexpected `cfg` condition name: `tracing_unstable` 140s --> /usr/share/cargo/registry/tracing-core-0.1.32/src/field.rs:730:11 140s | 140s 730 | #[cfg(all(tracing_unstable, feature = "valuable"))] 140s | ^^^^^^^^^^^^^^^^ 140s | 140s = help: consider using a Cargo feature instead 140s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 140s [lints.rust] 140s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tracing_unstable)'] } 140s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tracing_unstable)");` to the top of the `build.rs` 140s = note: see for more information about checking conditional configuration 140s 140s warning: unexpected `cfg` condition name: `tracing_unstable` 140s --> /usr/share/cargo/registry/tracing-core-0.1.32/src/field.rs:733:11 140s | 140s 733 | #[cfg(all(tracing_unstable, feature = "valuable"))] 140s | ^^^^^^^^^^^^^^^^ 140s | 140s = help: consider using a Cargo feature instead 140s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 140s [lints.rust] 140s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tracing_unstable)'] } 140s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tracing_unstable)");` to the top of the `build.rs` 140s = note: see for more information about checking conditional configuration 140s 140s warning: unexpected `cfg` condition name: `tracing_unstable` 140s --> /usr/share/cargo/registry/tracing-core-0.1.32/src/field.rs:270:15 140s | 140s 270 | #[cfg(all(tracing_unstable, feature = "valuable"))] 140s | ^^^^^^^^^^^^^^^^ 140s | 140s = help: consider using a Cargo feature instead 140s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 140s [lints.rust] 140s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tracing_unstable)'] } 140s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tracing_unstable)");` to the top of the `build.rs` 140s = note: see for more information about checking conditional configuration 140s 140s warning: creating a shared reference to mutable static is discouraged 140s --> /usr/share/cargo/registry/tracing-core-0.1.32/src/dispatcher.rs:458:9 140s | 140s 458 | &GLOBAL_DISPATCH 140s | ^^^^^^^^^^^^^^^^ shared reference to mutable static 140s | 140s = note: for more information, see 140s = note: shared references to mutable statics are dangerous; it's undefined behavior if the static is mutated or if a mutable reference is created for it while the shared reference lives 140s = note: `#[warn(static_mut_refs)]` on by default 140s help: use `&raw const` instead to create a raw pointer 140s | 140s 458 | &raw const GLOBAL_DISPATCH 140s | ~~~~~~~~~~ 140s 141s warning: `tracing-core` (lib) generated 11 warnings (1 duplicate) 141s 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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0--remap-path-prefix/tmp/tmp.MZ13eKTYFc/registry=/usr/share/cargo/registry-Ctarget-feature=+backchain' CARGO_FEATURE_ALLOC=1 CARGO_FEATURE_EVENT=1 CARGO_FEATURE_FS=1 CARGO_FEATURE_LIBC_EXTRA_TRAITS=1 CARGO_FEATURE_NET=1 CARGO_FEATURE_PIPE=1 CARGO_FEATURE_PROCESS=1 CARGO_FEATURE_STD=1 CARGO_FEATURE_TIME=1 CARGO_MANIFEST_DIR=/tmp/tmp.MZ13eKTYFc/registry/rustix-0.38.37 CARGO_MANIFEST_PATH=/tmp/tmp.MZ13eKTYFc/registry/rustix-0.38.37/Cargo.toml CARGO_PKG_AUTHORS='Dan Gohman :Jakub Konka ' CARGO_PKG_DESCRIPTION='Safe Rust bindings to POSIX/Unix/Linux/Winsock-like syscalls' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=rustix CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/bytecodealliance/rustix' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=0.38.37 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=38 CARGO_PKG_VERSION_PATCH=37 CARGO_PKG_VERSION_PRE='' DEBUG=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.MZ13eKTYFc/target/debug/deps:/tmp/tmp.MZ13eKTYFc/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/build/rustix-bc16aac95f297369/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.MZ13eKTYFc/target/debug/build/rustix-8b93b51d2d94d594/build-script-build` 141s [rustix 0.38.37] cargo:rerun-if-changed=build.rs 141s [rustix 0.38.37] cargo:rustc-cfg=static_assertions 141s [rustix 0.38.37] cargo:rustc-cfg=libc 141s [rustix 0.38.37] cargo:rustc-cfg=linux_like 141s [rustix 0.38.37] cargo:rustc-cfg=linux_kernel 141s [rustix 0.38.37] cargo:rerun-if-env-changed=CARGO_CFG_RUSTIX_USE_EXPERIMENTAL_ASM 141s [rustix 0.38.37] cargo:rerun-if-env-changed=CARGO_CFG_RUSTIX_USE_LIBC 141s [rustix 0.38.37] cargo:rerun-if-env-changed=CARGO_FEATURE_USE_LIBC 141s [rustix 0.38.37] cargo:rerun-if-env-changed=CARGO_FEATURE_RUSTC_DEP_OF_STD 141s [rustix 0.38.37] cargo:rerun-if-env-changed=CARGO_CFG_MIRI 141s Compiling zerocopy v0.7.34 141s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=zerocopy CARGO_MANIFEST_DIR=/tmp/tmp.MZ13eKTYFc/registry/zerocopy-0.7.34 CARGO_MANIFEST_PATH=/tmp/tmp.MZ13eKTYFc/registry/zerocopy-0.7.34/Cargo.toml CARGO_PKG_AUTHORS='Joshua Liebow-Feeser ' CARGO_PKG_DESCRIPTION='Utilities for zero-copy parsing and serialization' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='BSD-2-Clause OR Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=zerocopy CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/google/zerocopy' CARGO_PKG_RUST_VERSION=1.60.0 CARGO_PKG_VERSION=0.7.34 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=7 CARGO_PKG_VERSION_PATCH=34 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.MZ13eKTYFc/target/debug/deps rustc --crate-name zerocopy --edition=2018 /tmp/tmp.MZ13eKTYFc/registry/zerocopy-0.7.34/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="byteorder"' --cfg 'feature="default"' --cfg 'feature="derive"' --cfg 'feature="simd"' --cfg 'feature="zerocopy-derive"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("__internal_use_only_features_that_work_on_stable", "alloc", "byteorder", "default", "derive", "simd", "simd-nightly", "zerocopy-derive"))' -C metadata=777d8c6c10ffcfc6 -C extra-filename=-777d8c6c10ffcfc6 --out-dir /tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.MZ13eKTYFc/target/debug/deps --extern byteorder=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/libbyteorder-89ebf31d1f97ee77.rmeta --extern zerocopy_derive=/tmp/tmp.MZ13eKTYFc/target/debug/deps/libzerocopy_derive-676bad9287e184ca.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.MZ13eKTYFc/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 141s warning: unnecessary qualification 141s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/util.rs:597:32 141s | 141s 597 | let remainder = t.addr() % mem::align_of::(); 141s | ^^^^^^^^^^^^^^^^^^ 141s | 141s note: the lint level is defined here 141s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:174:5 141s | 141s 174 | unused_qualifications, 141s | ^^^^^^^^^^^^^^^^^^^^^ 141s help: remove the unnecessary path segments 141s | 141s 597 - let remainder = t.addr() % mem::align_of::(); 141s 597 + let remainder = t.addr() % align_of::(); 141s | 141s 141s warning: unnecessary qualification 141s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:333:35 141s | 141s 333 | const POINTER_WIDTH_BITS: usize = mem::size_of::() * 8; 141s | ^^^^^^^^^^^^^^^^^^^^^ 141s | 141s help: remove the unnecessary path segments 141s | 141s 333 - const POINTER_WIDTH_BITS: usize = mem::size_of::() * 8; 141s 333 + const POINTER_WIDTH_BITS: usize = size_of::() * 8; 141s | 141s 141s warning: unnecessary qualification 141s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:488:44 141s | 141s 488 | align: match NonZeroUsize::new(mem::align_of::()) { 141s | ^^^^^^^^^^^^^^^^^^ 141s | 141s help: remove the unnecessary path segments 141s | 141s 488 - align: match NonZeroUsize::new(mem::align_of::()) { 141s 488 + align: match NonZeroUsize::new(align_of::()) { 141s | 141s 141s warning: unnecessary qualification 141s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:492:49 141s | 141s 492 | size_info: SizeInfo::Sized { _size: mem::size_of::() }, 141s | ^^^^^^^^^^^^^^^^^ 141s | 141s help: remove the unnecessary path segments 141s | 141s 492 - size_info: SizeInfo::Sized { _size: mem::size_of::() }, 141s 492 + size_info: SizeInfo::Sized { _size: size_of::() }, 141s | 141s 141s warning: unnecessary qualification 141s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:511:44 141s | 141s 511 | align: match NonZeroUsize::new(mem::align_of::()) { 141s | ^^^^^^^^^^^^^^^^^^ 141s | 141s help: remove the unnecessary path segments 141s | 141s 511 - align: match NonZeroUsize::new(mem::align_of::()) { 141s 511 + align: match NonZeroUsize::new(align_of::()) { 141s | 141s 141s warning: unnecessary qualification 141s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:517:29 141s | 141s 517 | _elem_size: mem::size_of::(), 141s | ^^^^^^^^^^^^^^^^^ 141s | 141s help: remove the unnecessary path segments 141s | 141s 517 - _elem_size: mem::size_of::(), 141s 517 + _elem_size: size_of::(), 141s | 141s 141s warning: unnecessary qualification 141s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:1418:19 141s | 141s 1418 | let len = mem::size_of_val(self); 141s | ^^^^^^^^^^^^^^^^ 141s | 141s help: remove the unnecessary path segments 141s | 141s 1418 - let len = mem::size_of_val(self); 141s 1418 + let len = size_of_val(self); 141s | 141s 141s warning: unnecessary qualification 141s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:2714:19 141s | 141s 2714 | let len = mem::size_of_val(self); 141s | ^^^^^^^^^^^^^^^^ 141s | 141s help: remove the unnecessary path segments 141s | 141s 2714 - let len = mem::size_of_val(self); 141s 2714 + let len = size_of_val(self); 141s | 141s 141s warning: unnecessary qualification 141s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:2789:19 141s | 141s 2789 | let len = mem::size_of_val(self); 141s | ^^^^^^^^^^^^^^^^ 141s | 141s help: remove the unnecessary path segments 141s | 141s 2789 - let len = mem::size_of_val(self); 141s 2789 + let len = size_of_val(self); 141s | 141s 141s warning: unnecessary qualification 141s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:2863:27 141s | 141s 2863 | if bytes.len() != mem::size_of_val(self) { 141s | ^^^^^^^^^^^^^^^^ 141s | 141s help: remove the unnecessary path segments 141s | 141s 2863 - if bytes.len() != mem::size_of_val(self) { 141s 2863 + if bytes.len() != size_of_val(self) { 141s | 141s 141s warning: unnecessary qualification 141s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:2920:20 141s | 141s 2920 | let size = mem::size_of_val(self); 141s | ^^^^^^^^^^^^^^^^ 141s | 141s help: remove the unnecessary path segments 141s | 141s 2920 - let size = mem::size_of_val(self); 141s 2920 + let size = size_of_val(self); 141s | 141s 141s warning: unnecessary qualification 141s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:2981:45 141s | 141s 2981 | let start = bytes.len().checked_sub(mem::size_of_val(self))?; 141s | ^^^^^^^^^^^^^^^^ 141s | 141s help: remove the unnecessary path segments 141s | 141s 2981 - let start = bytes.len().checked_sub(mem::size_of_val(self))?; 141s 2981 + let start = bytes.len().checked_sub(size_of_val(self))?; 141s | 141s 141s warning: unnecessary qualification 141s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:4161:27 141s | 141s 4161 | if bytes.len() != mem::size_of::() || !util::aligned_to::<_, T>(bytes.deref()) { 141s | ^^^^^^^^^^^^^^^^^ 141s | 141s help: remove the unnecessary path segments 141s | 141s 4161 - if bytes.len() != mem::size_of::() || !util::aligned_to::<_, T>(bytes.deref()) { 141s 4161 + if bytes.len() != size_of::() || !util::aligned_to::<_, T>(bytes.deref()) { 141s | 141s 141s warning: unnecessary qualification 141s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:4176:26 141s | 141s 4176 | if bytes.len() < mem::size_of::() || !util::aligned_to::<_, T>(bytes.deref()) { 141s | ^^^^^^^^^^^^^^^^^ 141s | 141s help: remove the unnecessary path segments 141s | 141s 4176 - if bytes.len() < mem::size_of::() || !util::aligned_to::<_, T>(bytes.deref()) { 141s 4176 + if bytes.len() < size_of::() || !util::aligned_to::<_, T>(bytes.deref()) { 141s | 141s 141s warning: unnecessary qualification 141s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:4179:46 141s | 141s 4179 | let (bytes, suffix) = bytes.split_at(mem::size_of::()); 141s | ^^^^^^^^^^^^^^^^^ 141s | 141s help: remove the unnecessary path segments 141s | 141s 4179 - let (bytes, suffix) = bytes.split_at(mem::size_of::()); 141s 4179 + let (bytes, suffix) = bytes.split_at(size_of::()); 141s | 141s 141s warning: unnecessary qualification 141s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:4194:46 141s | 141s 4194 | let split_at = bytes_len.checked_sub(mem::size_of::())?; 141s | ^^^^^^^^^^^^^^^^^ 141s | 141s help: remove the unnecessary path segments 141s | 141s 4194 - let split_at = bytes_len.checked_sub(mem::size_of::())?; 141s 4194 + let split_at = bytes_len.checked_sub(size_of::())?; 141s | 141s 141s warning: unnecessary qualification 141s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:4221:26 141s | 141s 4221 | .checked_rem(mem::size_of::()) 141s | ^^^^^^^^^^^^^^^^^ 141s | 141s help: remove the unnecessary path segments 141s | 141s 4221 - .checked_rem(mem::size_of::()) 141s 4221 + .checked_rem(size_of::()) 141s | 141s 141s warning: unnecessary qualification 141s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:4243:34 141s | 141s 4243 | let expected_len = match mem::size_of::().checked_mul(count) { 141s | ^^^^^^^^^^^^^^^^^ 141s | 141s help: remove the unnecessary path segments 141s | 141s 4243 - let expected_len = match mem::size_of::().checked_mul(count) { 141s 4243 + let expected_len = match size_of::().checked_mul(count) { 141s | 141s 141s warning: unnecessary qualification 141s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:4268:34 141s | 141s 4268 | let expected_len = match mem::size_of::().checked_mul(count) { 141s | ^^^^^^^^^^^^^^^^^ 141s | 141s help: remove the unnecessary path segments 141s | 141s 4268 - let expected_len = match mem::size_of::().checked_mul(count) { 141s 4268 + let expected_len = match size_of::().checked_mul(count) { 141s | 141s 141s warning: unnecessary qualification 141s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:4795:25 141s | 141s 4795 | let elem_size = mem::size_of::(); 141s | ^^^^^^^^^^^^^^^^^ 141s | 141s help: remove the unnecessary path segments 141s | 141s 4795 - let elem_size = mem::size_of::(); 141s 4795 + let elem_size = size_of::(); 141s | 141s 141s warning: unnecessary qualification 141s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:4825:25 141s | 141s 4825 | let elem_size = mem::size_of::(); 141s | ^^^^^^^^^^^^^^^^^ 141s | 141s help: remove the unnecessary path segments 141s | 141s 4825 - let elem_size = mem::size_of::(); 141s 4825 + let elem_size = size_of::(); 141s | 141s 141s warning: `zerocopy` (lib) generated 22 warnings (1 duplicate) 141s 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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0--remap-path-prefix/tmp/tmp.MZ13eKTYFc/registry=/usr/share/cargo/registry-Ctarget-feature=+backchain' CARGO_FEATURE_V2_58=1 CARGO_FEATURE_V2_60=1 CARGO_FEATURE_V2_62=1 CARGO_FEATURE_V2_64=1 CARGO_FEATURE_V2_66=1 CARGO_MANIFEST_DIR=/tmp/tmp.MZ13eKTYFc/registry/gio-0.20.7 CARGO_MANIFEST_PATH=/tmp/tmp.MZ13eKTYFc/registry/gio-0.20.7/Cargo.toml CARGO_PKG_AUTHORS='The gtk-rs Project Developers' CARGO_PKG_DESCRIPTION='Rust bindings for the Gio library' CARGO_PKG_HOMEPAGE='https://gtk-rs.org/' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=gio CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/gtk-rs/gtk-rs-core' CARGO_PKG_RUST_VERSION=1.70 CARGO_PKG_VERSION=0.20.7 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=20 CARGO_PKG_VERSION_PATCH=7 CARGO_PKG_VERSION_PRE='' DEBUG=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.MZ13eKTYFc/target/debug/deps:/tmp/tmp.MZ13eKTYFc/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/build/gio-b380b9dc244b7663/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.MZ13eKTYFc/target/debug/build/gio-544c6453d915c046/build-script-build` 141s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=serde CARGO_MANIFEST_DIR=/tmp/tmp.MZ13eKTYFc/registry/serde-1.0.217 CARGO_MANIFEST_PATH=/tmp/tmp.MZ13eKTYFc/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.MZ13eKTYFc/target/debug/deps OUT_DIR=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/build/serde-c08ea6899e623ec6/out rustc --crate-name serde --edition=2018 /tmp/tmp.MZ13eKTYFc/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=0e7dff716e38da0d -C extra-filename=-0e7dff716e38da0d --out-dir /tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.MZ13eKTYFc/target/debug/deps --extern serde_derive=/tmp/tmp.MZ13eKTYFc/target/debug/deps/libserde_derive-85fb19fec9ccb150.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.MZ13eKTYFc/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)'` 143s warning: `serde` (lib) generated 1 warning (1 duplicate) 143s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CFG_PANIC=unwind CARGO_CFG_TARGET_ABI='' CARGO_CFG_TARGET_ARCH=s390x CARGO_CFG_TARGET_ENDIAN=big CARGO_CFG_TARGET_ENV=gnu CARGO_CFG_TARGET_FAMILY=unix CARGO_CFG_TARGET_HAS_ATOMIC=128,16,32,64,8,ptr CARGO_CFG_TARGET_OS=linux CARGO_CFG_TARGET_POINTER_WIDTH=64 CARGO_CFG_TARGET_VENDOR=unknown CARGO_CFG_UNIX='' CARGO_ENCODED_RUSTFLAGS='-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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0--remap-path-prefix/tmp/tmp.MZ13eKTYFc/registry=/usr/share/cargo/registry-Ctarget-feature=+backchain' CARGO_MANIFEST_DIR=/tmp/tmp.MZ13eKTYFc/registry/gdk-pixbuf-sys-0.20.7 CARGO_MANIFEST_PATH=/tmp/tmp.MZ13eKTYFc/registry/gdk-pixbuf-sys-0.20.7/Cargo.toml CARGO_PKG_AUTHORS='The gtk-rs Project Developers' CARGO_PKG_DESCRIPTION='FFI bindings to libgdk_pixbuf-2.0' CARGO_PKG_HOMEPAGE='https://gtk-rs.org/' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=gdk-pixbuf-sys CARGO_PKG_README='' CARGO_PKG_REPOSITORY='https://github.com/gtk-rs/gtk-rs-core' CARGO_PKG_RUST_VERSION=1.70 CARGO_PKG_VERSION=0.20.7 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=20 CARGO_PKG_VERSION_PATCH=7 CARGO_PKG_VERSION_PRE='' DEBUG=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.MZ13eKTYFc/target/debug/deps:/tmp/tmp.MZ13eKTYFc/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/build/gdk-pixbuf-sys-ab4c33b0ec0f5591/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.MZ13eKTYFc/target/debug/build/gdk-pixbuf-sys-8aafb2c38cfa708b/build-script-build` 143s [gdk-pixbuf-sys 0.20.7] cargo:rerun-if-changed=/tmp/tmp.MZ13eKTYFc/registry/gdk-pixbuf-sys-0.20.7/Cargo.toml 143s [gdk-pixbuf-sys 0.20.7] cargo:rerun-if-env-changed=GDK_PIXBUF_2.0_NO_PKG_CONFIG 143s [gdk-pixbuf-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_s390x-unknown-linux-gnu 143s [gdk-pixbuf-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_s390x_unknown_linux_gnu 143s [gdk-pixbuf-sys 0.20.7] cargo:rerun-if-env-changed=HOST_PKG_CONFIG 143s [gdk-pixbuf-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG 143s [gdk-pixbuf-sys 0.20.7] cargo:rerun-if-env-changed=DEB_HOST_GNU_TYPE 143s [gdk-pixbuf-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_PATH_s390x-unknown-linux-gnu 143s [gdk-pixbuf-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_PATH_s390x_unknown_linux_gnu 143s [gdk-pixbuf-sys 0.20.7] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_PATH 143s [gdk-pixbuf-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_PATH 143s [gdk-pixbuf-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR_s390x-unknown-linux-gnu 143s [gdk-pixbuf-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR_s390x_unknown_linux_gnu 143s [gdk-pixbuf-sys 0.20.7] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_LIBDIR 143s [gdk-pixbuf-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR 143s [gdk-pixbuf-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR_s390x-unknown-linux-gnu 143s [gdk-pixbuf-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR_s390x_unknown_linux_gnu 143s [gdk-pixbuf-sys 0.20.7] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_SYSROOT_DIR 143s [gdk-pixbuf-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR 143s [gdk-pixbuf-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR 143s [gdk-pixbuf-sys 0.20.7] cargo:rerun-if-env-changed=SYSROOT 143s [gdk-pixbuf-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_s390x-unknown-linux-gnu 143s [gdk-pixbuf-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_s390x_unknown_linux_gnu 143s [gdk-pixbuf-sys 0.20.7] cargo:rerun-if-env-changed=HOST_PKG_CONFIG 144s [gdk-pixbuf-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG 144s [gdk-pixbuf-sys 0.20.7] cargo:rerun-if-env-changed=DEB_HOST_GNU_TYPE 144s [gdk-pixbuf-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_PATH_s390x-unknown-linux-gnu 144s [gdk-pixbuf-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_PATH_s390x_unknown_linux_gnu 144s [gdk-pixbuf-sys 0.20.7] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_PATH 144s [gdk-pixbuf-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_PATH 144s [gdk-pixbuf-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR_s390x-unknown-linux-gnu 144s [gdk-pixbuf-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR_s390x_unknown_linux_gnu 144s [gdk-pixbuf-sys 0.20.7] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_LIBDIR 144s [gdk-pixbuf-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR 144s [gdk-pixbuf-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR_s390x-unknown-linux-gnu 144s [gdk-pixbuf-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR_s390x_unknown_linux_gnu 144s [gdk-pixbuf-sys 0.20.7] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_SYSROOT_DIR 144s [gdk-pixbuf-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR 144s [gdk-pixbuf-sys 0.20.7] cargo:rustc-link-lib=gdk_pixbuf-2.0 144s [gdk-pixbuf-sys 0.20.7] cargo:rustc-link-lib=gobject-2.0 144s [gdk-pixbuf-sys 0.20.7] cargo:rustc-link-lib=glib-2.0 144s [gdk-pixbuf-sys 0.20.7] cargo:include=/usr/include/gdk-pixbuf-2.0:/usr/include:/usr/include/glib-2.0:/usr/lib/s390x-linux-gnu/glib-2.0/include:/usr/include/sysprof-6:/usr/include/libpng16:/usr/include/s390x-linux-gnu:/usr/include/webp:/usr/include/libmount:/usr/include/blkid 144s [gdk-pixbuf-sys 0.20.7] cargo:rerun-if-env-changed=SYSTEM_DEPS_BUILD_INTERNAL 144s [gdk-pixbuf-sys 0.20.7] cargo:rerun-if-env-changed=SYSTEM_DEPS_LINK 144s [gdk-pixbuf-sys 0.20.7] cargo:rerun-if-env-changed=SYSTEM_DEPS_GDK_PIXBUF_2_0_LIB 144s [gdk-pixbuf-sys 0.20.7] cargo:rerun-if-env-changed=SYSTEM_DEPS_GDK_PIXBUF_2_0_LIB_FRAMEWORK 144s [gdk-pixbuf-sys 0.20.7] cargo:rerun-if-env-changed=SYSTEM_DEPS_GDK_PIXBUF_2_0_SEARCH_NATIVE 144s [gdk-pixbuf-sys 0.20.7] cargo:rerun-if-env-changed=SYSTEM_DEPS_GDK_PIXBUF_2_0_SEARCH_FRAMEWORK 144s [gdk-pixbuf-sys 0.20.7] cargo:rerun-if-env-changed=SYSTEM_DEPS_GDK_PIXBUF_2_0_INCLUDE 144s [gdk-pixbuf-sys 0.20.7] cargo:rerun-if-env-changed=SYSTEM_DEPS_GDK_PIXBUF_2_0_LDFLAGS 144s [gdk-pixbuf-sys 0.20.7] cargo:rerun-if-env-changed=SYSTEM_DEPS_GDK_PIXBUF_2_0_NO_PKG_CONFIG 144s [gdk-pixbuf-sys 0.20.7] cargo:rerun-if-env-changed=SYSTEM_DEPS_GDK_PIXBUF_2_0_BUILD_INTERNAL 144s [gdk-pixbuf-sys 0.20.7] cargo:rerun-if-env-changed=SYSTEM_DEPS_GDK_PIXBUF_2_0_LINK 144s [gdk-pixbuf-sys 0.20.7] 144s [gdk-pixbuf-sys 0.20.7] cargo:rustc-cfg=system_deps_have_gdk_pixbuf_2_0 144s 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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0--remap-path-prefix/tmp/tmp.MZ13eKTYFc/registry=/usr/share/cargo/registry-Ctarget-feature=+backchain' CARGO_FEATURE_GLIB_SYS=1 CARGO_FEATURE_USE_GLIB=1 CARGO_MANIFEST_DIR=/tmp/tmp.MZ13eKTYFc/registry/cairo-sys-rs-0.20.7 CARGO_MANIFEST_PATH=/tmp/tmp.MZ13eKTYFc/registry/cairo-sys-rs-0.20.7/Cargo.toml CARGO_PKG_AUTHORS='The gtk-rs Project Developers' CARGO_PKG_DESCRIPTION='FFI bindings to libcairo' CARGO_PKG_HOMEPAGE='https://gtk-rs.org/' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=cairo-sys-rs CARGO_PKG_README='' CARGO_PKG_REPOSITORY='https://github.com/gtk-rs/gtk-rs-core' CARGO_PKG_RUST_VERSION=1.70 CARGO_PKG_VERSION=0.20.7 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=20 CARGO_PKG_VERSION_PATCH=7 CARGO_PKG_VERSION_PRE='' DEBUG=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.MZ13eKTYFc/target/debug/deps:/tmp/tmp.MZ13eKTYFc/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/build/cairo-sys-rs-9c51754cd28745bb/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.MZ13eKTYFc/target/debug/build/cairo-sys-rs-4972b5d5a676236d/build-script-build` 144s [cairo-sys-rs 0.20.7] cargo:rerun-if-changed=/tmp/tmp.MZ13eKTYFc/registry/cairo-sys-rs-0.20.7/Cargo.toml 144s [cairo-sys-rs 0.20.7] cargo:rerun-if-env-changed=CAIRO_NO_PKG_CONFIG 144s [cairo-sys-rs 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_s390x-unknown-linux-gnu 144s [cairo-sys-rs 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_s390x_unknown_linux_gnu 144s [cairo-sys-rs 0.20.7] cargo:rerun-if-env-changed=HOST_PKG_CONFIG 144s [cairo-sys-rs 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG 144s [cairo-sys-rs 0.20.7] cargo:rerun-if-env-changed=DEB_HOST_GNU_TYPE 144s [cairo-sys-rs 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_PATH_s390x-unknown-linux-gnu 144s [cairo-sys-rs 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_PATH_s390x_unknown_linux_gnu 144s [cairo-sys-rs 0.20.7] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_PATH 144s [cairo-sys-rs 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_PATH 144s [cairo-sys-rs 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR_s390x-unknown-linux-gnu 144s [cairo-sys-rs 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR_s390x_unknown_linux_gnu 144s [cairo-sys-rs 0.20.7] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_LIBDIR 144s [cairo-sys-rs 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR 144s [cairo-sys-rs 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR_s390x-unknown-linux-gnu 144s [cairo-sys-rs 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR_s390x_unknown_linux_gnu 144s [cairo-sys-rs 0.20.7] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_SYSROOT_DIR 144s [cairo-sys-rs 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR 144s [cairo-sys-rs 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR 144s [cairo-sys-rs 0.20.7] cargo:rerun-if-env-changed=SYSROOT 144s [cairo-sys-rs 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_s390x-unknown-linux-gnu 144s [cairo-sys-rs 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_s390x_unknown_linux_gnu 144s [cairo-sys-rs 0.20.7] cargo:rerun-if-env-changed=HOST_PKG_CONFIG 144s [cairo-sys-rs 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG 144s [cairo-sys-rs 0.20.7] cargo:rerun-if-env-changed=DEB_HOST_GNU_TYPE 144s [cairo-sys-rs 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_PATH_s390x-unknown-linux-gnu 144s [cairo-sys-rs 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_PATH_s390x_unknown_linux_gnu 144s [cairo-sys-rs 0.20.7] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_PATH 144s [cairo-sys-rs 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_PATH 144s [cairo-sys-rs 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR_s390x-unknown-linux-gnu 144s [cairo-sys-rs 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR_s390x_unknown_linux_gnu 144s [cairo-sys-rs 0.20.7] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_LIBDIR 144s [cairo-sys-rs 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR 144s [cairo-sys-rs 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR_s390x-unknown-linux-gnu 144s [cairo-sys-rs 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR_s390x_unknown_linux_gnu 144s [cairo-sys-rs 0.20.7] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_SYSROOT_DIR 144s [cairo-sys-rs 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR 144s [cairo-sys-rs 0.20.7] cargo:rerun-if-env-changed=CAIRO_GOBJECT_NO_PKG_CONFIG 144s [cairo-sys-rs 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_s390x-unknown-linux-gnu 144s [cairo-sys-rs 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_s390x_unknown_linux_gnu 144s [cairo-sys-rs 0.20.7] cargo:rerun-if-env-changed=HOST_PKG_CONFIG 144s [cairo-sys-rs 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG 144s [cairo-sys-rs 0.20.7] cargo:rerun-if-env-changed=DEB_HOST_GNU_TYPE 144s [cairo-sys-rs 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_PATH_s390x-unknown-linux-gnu 144s [cairo-sys-rs 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_PATH_s390x_unknown_linux_gnu 144s [cairo-sys-rs 0.20.7] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_PATH 144s [cairo-sys-rs 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_PATH 144s [cairo-sys-rs 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR_s390x-unknown-linux-gnu 144s [cairo-sys-rs 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR_s390x_unknown_linux_gnu 144s [cairo-sys-rs 0.20.7] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_LIBDIR 144s [cairo-sys-rs 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR 144s [cairo-sys-rs 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR_s390x-unknown-linux-gnu 144s [cairo-sys-rs 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR_s390x_unknown_linux_gnu 144s [cairo-sys-rs 0.20.7] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_SYSROOT_DIR 144s [cairo-sys-rs 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR 144s [cairo-sys-rs 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR 144s [cairo-sys-rs 0.20.7] cargo:rerun-if-env-changed=SYSROOT 144s [cairo-sys-rs 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_s390x-unknown-linux-gnu 144s [cairo-sys-rs 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_s390x_unknown_linux_gnu 144s [cairo-sys-rs 0.20.7] cargo:rerun-if-env-changed=HOST_PKG_CONFIG 144s [cairo-sys-rs 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG 144s [cairo-sys-rs 0.20.7] cargo:rerun-if-env-changed=DEB_HOST_GNU_TYPE 144s [cairo-sys-rs 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_PATH_s390x-unknown-linux-gnu 144s [cairo-sys-rs 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_PATH_s390x_unknown_linux_gnu 144s [cairo-sys-rs 0.20.7] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_PATH 144s [cairo-sys-rs 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_PATH 144s [cairo-sys-rs 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR_s390x-unknown-linux-gnu 144s [cairo-sys-rs 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR_s390x_unknown_linux_gnu 144s [cairo-sys-rs 0.20.7] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_LIBDIR 144s [cairo-sys-rs 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR 144s [cairo-sys-rs 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR_s390x-unknown-linux-gnu 144s [cairo-sys-rs 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR_s390x_unknown_linux_gnu 144s [cairo-sys-rs 0.20.7] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_SYSROOT_DIR 144s [cairo-sys-rs 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR 144s [cairo-sys-rs 0.20.7] cargo:rustc-link-lib=cairo 144s [cairo-sys-rs 0.20.7] cargo:rustc-link-lib=cairo-gobject 144s [cairo-sys-rs 0.20.7] cargo:rustc-link-lib=cairo 144s [cairo-sys-rs 0.20.7] cargo:rustc-link-lib=gobject-2.0 144s [cairo-sys-rs 0.20.7] cargo:rustc-link-lib=glib-2.0 144s [cairo-sys-rs 0.20.7] cargo:include=/usr/include/cairo:/usr/include:/usr/include/libpng16:/usr/include/freetype2:/usr/include/pixman-1:/usr/include/cairo:/usr/include:/usr/include/libpng16:/usr/include/freetype2:/usr/include/pixman-1:/usr/include/glib-2.0:/usr/lib/s390x-linux-gnu/glib-2.0/include:/usr/include/sysprof-6 144s [cairo-sys-rs 0.20.7] cargo:rerun-if-env-changed=SYSTEM_DEPS_BUILD_INTERNAL 144s [cairo-sys-rs 0.20.7] cargo:rerun-if-env-changed=SYSTEM_DEPS_LINK 144s [cairo-sys-rs 0.20.7] cargo:rerun-if-env-changed=SYSTEM_DEPS_CAIRO_GOBJECT_LIB 144s [cairo-sys-rs 0.20.7] cargo:rerun-if-env-changed=SYSTEM_DEPS_CAIRO_GOBJECT_LIB_FRAMEWORK 144s [cairo-sys-rs 0.20.7] cargo:rerun-if-env-changed=SYSTEM_DEPS_CAIRO_GOBJECT_SEARCH_NATIVE 144s [cairo-sys-rs 0.20.7] cargo:rerun-if-env-changed=SYSTEM_DEPS_CAIRO_GOBJECT_SEARCH_FRAMEWORK 144s [cairo-sys-rs 0.20.7] cargo:rerun-if-env-changed=SYSTEM_DEPS_CAIRO_GOBJECT_INCLUDE 144s [cairo-sys-rs 0.20.7] cargo:rerun-if-env-changed=SYSTEM_DEPS_CAIRO_GOBJECT_LDFLAGS 144s [cairo-sys-rs 0.20.7] cargo:rerun-if-env-changed=SYSTEM_DEPS_CAIRO_GOBJECT_NO_PKG_CONFIG 144s [cairo-sys-rs 0.20.7] cargo:rerun-if-env-changed=SYSTEM_DEPS_CAIRO_GOBJECT_BUILD_INTERNAL 144s [cairo-sys-rs 0.20.7] cargo:rerun-if-env-changed=SYSTEM_DEPS_CAIRO_GOBJECT_LINK 144s [cairo-sys-rs 0.20.7] cargo:rerun-if-env-changed=SYSTEM_DEPS_CAIRO_LIB 144s [cairo-sys-rs 0.20.7] cargo:rerun-if-env-changed=SYSTEM_DEPS_CAIRO_LIB_FRAMEWORK 144s [cairo-sys-rs 0.20.7] cargo:rerun-if-env-changed=SYSTEM_DEPS_CAIRO_SEARCH_NATIVE 144s [cairo-sys-rs 0.20.7] cargo:rerun-if-env-changed=SYSTEM_DEPS_CAIRO_SEARCH_FRAMEWORK 144s [cairo-sys-rs 0.20.7] cargo:rerun-if-env-changed=SYSTEM_DEPS_CAIRO_INCLUDE 144s [cairo-sys-rs 0.20.7] cargo:rerun-if-env-changed=SYSTEM_DEPS_CAIRO_LDFLAGS 144s [cairo-sys-rs 0.20.7] cargo:rerun-if-env-changed=SYSTEM_DEPS_CAIRO_NO_PKG_CONFIG 144s [cairo-sys-rs 0.20.7] cargo:rerun-if-env-changed=SYSTEM_DEPS_CAIRO_BUILD_INTERNAL 144s [cairo-sys-rs 0.20.7] cargo:rerun-if-env-changed=SYSTEM_DEPS_CAIRO_LINK 144s [cairo-sys-rs 0.20.7] 144s [cairo-sys-rs 0.20.7] cargo:rustc-cfg=system_deps_have_cairo 144s [cairo-sys-rs 0.20.7] cargo:rustc-cfg=system_deps_have_cairo_gobject 144s 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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0--remap-path-prefix/tmp/tmp.MZ13eKTYFc/registry=/usr/share/cargo/registry-Ctarget-feature=+backchain' CARGO_FEATURE_V1_42=1 CARGO_FEATURE_V1_44=1 CARGO_FEATURE_V1_46=1 CARGO_MANIFEST_DIR=/tmp/tmp.MZ13eKTYFc/registry/pango-sys-0.20.7 CARGO_MANIFEST_PATH=/tmp/tmp.MZ13eKTYFc/registry/pango-sys-0.20.7/Cargo.toml CARGO_PKG_AUTHORS='The gtk-rs Project Developers' CARGO_PKG_DESCRIPTION='FFI bindings to libpango-1.0' CARGO_PKG_HOMEPAGE='https://gtk-rs.org/' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=pango-sys CARGO_PKG_README='' CARGO_PKG_REPOSITORY='https://github.com/gtk-rs/gtk-rs-core' CARGO_PKG_RUST_VERSION=1.70 CARGO_PKG_VERSION=0.20.7 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=20 CARGO_PKG_VERSION_PATCH=7 CARGO_PKG_VERSION_PRE='' DEBUG=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.MZ13eKTYFc/target/debug/deps:/tmp/tmp.MZ13eKTYFc/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/build/pango-sys-9148858f03bf443c/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.MZ13eKTYFc/target/debug/build/pango-sys-6dc5a8848ee39789/build-script-build` 144s [pango-sys 0.20.7] cargo:rerun-if-changed=/tmp/tmp.MZ13eKTYFc/registry/pango-sys-0.20.7/Cargo.toml 144s [pango-sys 0.20.7] cargo:rerun-if-env-changed=PANGO_NO_PKG_CONFIG 144s [pango-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_s390x-unknown-linux-gnu 144s [pango-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_s390x_unknown_linux_gnu 144s [pango-sys 0.20.7] cargo:rerun-if-env-changed=HOST_PKG_CONFIG 144s [pango-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG 144s [pango-sys 0.20.7] cargo:rerun-if-env-changed=DEB_HOST_GNU_TYPE 144s [pango-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_PATH_s390x-unknown-linux-gnu 144s [pango-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_PATH_s390x_unknown_linux_gnu 144s [pango-sys 0.20.7] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_PATH 144s [pango-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_PATH 144s [pango-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR_s390x-unknown-linux-gnu 144s [pango-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR_s390x_unknown_linux_gnu 144s [pango-sys 0.20.7] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_LIBDIR 144s [pango-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR 144s [pango-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR_s390x-unknown-linux-gnu 144s [pango-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR_s390x_unknown_linux_gnu 144s [pango-sys 0.20.7] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_SYSROOT_DIR 144s [pango-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR 144s [pango-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR 144s [pango-sys 0.20.7] cargo:rerun-if-env-changed=SYSROOT 144s [pango-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_s390x-unknown-linux-gnu 144s [pango-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_s390x_unknown_linux_gnu 144s [pango-sys 0.20.7] cargo:rerun-if-env-changed=HOST_PKG_CONFIG 144s [pango-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG 144s [pango-sys 0.20.7] cargo:rerun-if-env-changed=DEB_HOST_GNU_TYPE 144s [pango-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_PATH_s390x-unknown-linux-gnu 144s [pango-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_PATH_s390x_unknown_linux_gnu 144s [pango-sys 0.20.7] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_PATH 144s [pango-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_PATH 144s [pango-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR_s390x-unknown-linux-gnu 144s [pango-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR_s390x_unknown_linux_gnu 144s [pango-sys 0.20.7] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_LIBDIR 144s [pango-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR 144s [pango-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR_s390x-unknown-linux-gnu 144s [pango-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR_s390x_unknown_linux_gnu 144s [pango-sys 0.20.7] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_SYSROOT_DIR 144s [pango-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR 144s [pango-sys 0.20.7] cargo:rustc-link-lib=pango-1.0 144s [pango-sys 0.20.7] cargo:rustc-link-lib=gobject-2.0 144s [pango-sys 0.20.7] cargo:rustc-link-lib=glib-2.0 144s [pango-sys 0.20.7] cargo:rustc-link-lib=harfbuzz 144s [pango-sys 0.20.7] cargo:include=/usr/include/pango-1.0:/usr/include:/usr/include/glib-2.0:/usr/lib/s390x-linux-gnu/glib-2.0/include:/usr/include/sysprof-6:/usr/include/harfbuzz:/usr/include/freetype2:/usr/include/libpng16:/usr/include/libmount:/usr/include/blkid:/usr/include/fribidi:/usr/include/cairo:/usr/include/pixman-1 144s [pango-sys 0.20.7] cargo:rerun-if-env-changed=SYSTEM_DEPS_BUILD_INTERNAL 144s [pango-sys 0.20.7] cargo:rerun-if-env-changed=SYSTEM_DEPS_LINK 144s [pango-sys 0.20.7] cargo:rerun-if-env-changed=SYSTEM_DEPS_PANGO_LIB 144s [pango-sys 0.20.7] cargo:rerun-if-env-changed=SYSTEM_DEPS_PANGO_LIB_FRAMEWORK 144s [pango-sys 0.20.7] cargo:rerun-if-env-changed=SYSTEM_DEPS_PANGO_SEARCH_NATIVE 144s [pango-sys 0.20.7] cargo:rerun-if-env-changed=SYSTEM_DEPS_PANGO_SEARCH_FRAMEWORK 144s [pango-sys 0.20.7] cargo:rerun-if-env-changed=SYSTEM_DEPS_PANGO_INCLUDE 144s [pango-sys 0.20.7] cargo:rerun-if-env-changed=SYSTEM_DEPS_PANGO_LDFLAGS 144s [pango-sys 0.20.7] cargo:rerun-if-env-changed=SYSTEM_DEPS_PANGO_NO_PKG_CONFIG 144s [pango-sys 0.20.7] cargo:rerun-if-env-changed=SYSTEM_DEPS_PANGO_BUILD_INTERNAL 144s [pango-sys 0.20.7] cargo:rerun-if-env-changed=SYSTEM_DEPS_PANGO_LINK 144s [pango-sys 0.20.7] 144s [pango-sys 0.20.7] cargo:rustc-cfg=system_deps_have_pango 144s Compiling getrandom v0.2.15 144s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=getrandom CARGO_MANIFEST_DIR=/tmp/tmp.MZ13eKTYFc/registry/getrandom-0.2.15 CARGO_MANIFEST_PATH=/tmp/tmp.MZ13eKTYFc/registry/getrandom-0.2.15/Cargo.toml CARGO_PKG_AUTHORS='The Rand Project Developers' CARGO_PKG_DESCRIPTION='A small cross-platform library for retrieving random data from system source' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=getrandom CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-random/getrandom' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.2.15 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=15 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.MZ13eKTYFc/target/debug/deps rustc --crate-name getrandom --edition=2018 /tmp/tmp.MZ13eKTYFc/registry/getrandom-0.2.15/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("compiler_builtins", "core", "custom", "linux_disable_fallback", "rdrand", "rustc-dep-of-std", "std", "test-in-browser"))' -C metadata=ed47f71499f7e17d -C extra-filename=-ed47f71499f7e17d --out-dir /tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.MZ13eKTYFc/target/debug/deps --extern cfg_if=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/libcfg_if-ff3ff84a061de73f.rmeta --extern libc=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/liblibc-cf2521928ac070dc.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.MZ13eKTYFc/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 144s warning: unexpected `cfg` condition value: `js` 144s --> /usr/share/cargo/registry/getrandom-0.2.15/src/lib.rs:334:25 144s | 144s 334 | } else if #[cfg(all(feature = "js", 144s | ^^^^^^^^^^^^^^ 144s | 144s = note: expected values for `feature` are: `compiler_builtins`, `core`, `custom`, `linux_disable_fallback`, `rdrand`, `rustc-dep-of-std`, `std`, and `test-in-browser` 144s = help: consider adding `js` as a feature in `Cargo.toml` 144s = note: see for more information about checking conditional configuration 144s = note: `#[warn(unexpected_cfgs)]` on by default 144s 144s warning: `getrandom` (lib) generated 2 warnings (1 duplicate) 144s Compiling memoffset v0.8.0 144s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.MZ13eKTYFc/registry/memoffset-0.8.0 CARGO_MANIFEST_PATH=/tmp/tmp.MZ13eKTYFc/registry/memoffset-0.8.0/Cargo.toml CARGO_PKG_AUTHORS='Gilad Naaman ' CARGO_PKG_DESCRIPTION='offset_of functionality for Rust structs.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=memoffset CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/Gilnaa/memoffset' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.8.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=8 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.MZ13eKTYFc/target/debug/deps rustc --crate-name build_script_build --edition=2015 /tmp/tmp.MZ13eKTYFc/registry/memoffset-0.8.0/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "unstable_const"))' -C metadata=b637076bbed49000 -C extra-filename=-b637076bbed49000 --out-dir /tmp/tmp.MZ13eKTYFc/target/debug/build/memoffset-b637076bbed49000 -L dependency=/tmp/tmp.MZ13eKTYFc/target/debug/deps --extern autocfg=/tmp/tmp.MZ13eKTYFc/target/debug/deps/libautocfg-9ebcd9511383083c.rlib --cap-lints warn` 144s Compiling enumflags2_derive v0.7.10 144s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=enumflags2_derive CARGO_MANIFEST_DIR=/tmp/tmp.MZ13eKTYFc/registry/enumflags2_derive-0.7.10 CARGO_MANIFEST_PATH=/tmp/tmp.MZ13eKTYFc/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.MZ13eKTYFc/target/debug/deps rustc --crate-name enumflags2_derive --edition=2018 /tmp/tmp.MZ13eKTYFc/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=588090abb48fd7e4 -C extra-filename=-588090abb48fd7e4 --out-dir /tmp/tmp.MZ13eKTYFc/target/debug/deps -L dependency=/tmp/tmp.MZ13eKTYFc/target/debug/deps --extern proc_macro2=/tmp/tmp.MZ13eKTYFc/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rlib --extern quote=/tmp/tmp.MZ13eKTYFc/target/debug/deps/libquote-dc92c6f25ee0f0c6.rlib --extern syn=/tmp/tmp.MZ13eKTYFc/target/debug/deps/libsyn-0167beed9e699402.rlib --extern proc_macro --cap-lints warn` 144s warning: `glib` (lib) generated 1 warning (1 duplicate) 144s Compiling tracing-attributes v0.1.27 144s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=tracing_attributes CARGO_MANIFEST_DIR=/tmp/tmp.MZ13eKTYFc/registry/tracing-attributes-0.1.27 CARGO_MANIFEST_PATH=/tmp/tmp.MZ13eKTYFc/registry/tracing-attributes-0.1.27/Cargo.toml CARGO_PKG_AUTHORS='Tokio Contributors :Eliza Weisman :David Barsky ' CARGO_PKG_DESCRIPTION='Procedural macro attributes for automatically instrumenting functions. 144s ' CARGO_PKG_HOMEPAGE='https://tokio.rs' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=tracing-attributes CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/tokio-rs/tracing' CARGO_PKG_RUST_VERSION=1.56.0 CARGO_PKG_VERSION=0.1.27 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=27 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.MZ13eKTYFc/target/debug/deps rustc --crate-name tracing_attributes --edition=2018 /tmp/tmp.MZ13eKTYFc/registry/tracing-attributes-0.1.27/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("async-await"))' -C metadata=7f00f49c1aac99bb -C extra-filename=-7f00f49c1aac99bb --out-dir /tmp/tmp.MZ13eKTYFc/target/debug/deps -L dependency=/tmp/tmp.MZ13eKTYFc/target/debug/deps --extern proc_macro2=/tmp/tmp.MZ13eKTYFc/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rlib --extern quote=/tmp/tmp.MZ13eKTYFc/target/debug/deps/libquote-dc92c6f25ee0f0c6.rlib --extern syn=/tmp/tmp.MZ13eKTYFc/target/debug/deps/libsyn-0167beed9e699402.rlib --extern proc_macro --cap-lints warn` 144s warning: lint `private_in_public` has been removed: replaced with another group of lints, see RFC for more information 144s --> /tmp/tmp.MZ13eKTYFc/registry/tracing-attributes-0.1.27/src/lib.rs:73:5 144s | 144s 73 | private_in_public, 144s | ^^^^^^^^^^^^^^^^^ 144s | 144s = note: `#[warn(renamed_and_removed_lints)]` on by default 144s 145s Compiling errno v0.3.8 145s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=errno CARGO_MANIFEST_DIR=/tmp/tmp.MZ13eKTYFc/registry/errno-0.3.8 CARGO_MANIFEST_PATH=/tmp/tmp.MZ13eKTYFc/registry/errno-0.3.8/Cargo.toml CARGO_PKG_AUTHORS='Chris Wong ' CARGO_PKG_DESCRIPTION='Cross-platform interface to the `errno` variable.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=errno CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/lambda-fairy/rust-errno' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=0.3.8 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=8 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.MZ13eKTYFc/target/debug/deps rustc --crate-name errno --edition=2018 /tmp/tmp.MZ13eKTYFc/registry/errno-0.3.8/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "std"))' -C metadata=a511b7e92317ca2a -C extra-filename=-a511b7e92317ca2a --out-dir /tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.MZ13eKTYFc/target/debug/deps --extern libc=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/liblibc-cf2521928ac070dc.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.MZ13eKTYFc/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 145s warning: unexpected `cfg` condition value: `bitrig` 145s --> /usr/share/cargo/registry/errno-0.3.8/src/unix.rs:77:13 145s | 145s 77 | target_os = "bitrig", 145s | ^^^^^^^^^^^^^^^^^^^^ 145s | 145s = note: expected values for `target_os` are: `aix`, `android`, `cuda`, `dragonfly`, `emscripten`, `espidf`, `freebsd`, `fuchsia`, `haiku`, `hermit`, `horizon`, `hurd`, `illumos`, `ios`, `l4re`, `linux`, `macos`, `netbsd`, `none`, `nto`, `nuttx`, `openbsd`, `psp`, `psx`, `redox`, `rtems`, `solaris`, `solid_asp3`, `teeos`, `trusty`, `tvos`, `uefi`, `unknown`, `visionos`, and `vita` and 6 more 145s = note: see for more information about checking conditional configuration 145s = note: `#[warn(unexpected_cfgs)]` on by default 145s 145s warning: `errno` (lib) generated 2 warnings (1 duplicate) 145s Compiling async-task v4.7.1 145s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=async_task CARGO_MANIFEST_DIR=/tmp/tmp.MZ13eKTYFc/registry/async-task-4.7.1 CARGO_MANIFEST_PATH=/tmp/tmp.MZ13eKTYFc/registry/async-task-4.7.1/Cargo.toml CARGO_PKG_AUTHORS='Stjepan Glavina ' CARGO_PKG_DESCRIPTION='Task abstraction for building executors' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=async-task CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/smol-rs/async-task' CARGO_PKG_RUST_VERSION=1.57 CARGO_PKG_VERSION=4.7.1 CARGO_PKG_VERSION_MAJOR=4 CARGO_PKG_VERSION_MINOR=7 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.MZ13eKTYFc/target/debug/deps rustc --crate-name async_task --edition=2021 /tmp/tmp.MZ13eKTYFc/registry/async-task-4.7.1/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "portable-atomic", "std"))' -C metadata=18059860e85d74b4 -C extra-filename=-18059860e85d74b4 --out-dir /tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.MZ13eKTYFc/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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.MZ13eKTYFc/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 145s warning: `async-task` (lib) generated 1 warning (1 duplicate) 145s Compiling linux-raw-sys v0.4.14 145s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=linux_raw_sys CARGO_MANIFEST_DIR=/tmp/tmp.MZ13eKTYFc/registry/linux-raw-sys-0.4.14 CARGO_MANIFEST_PATH=/tmp/tmp.MZ13eKTYFc/registry/linux-raw-sys-0.4.14/Cargo.toml CARGO_PKG_AUTHORS='Dan Gohman ' CARGO_PKG_DESCRIPTION='Generated bindings for Linux'\''s userspace API' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=linux-raw-sys CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/sunfishcode/linux-raw-sys' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=0.4.14 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=4 CARGO_PKG_VERSION_PATCH=14 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.MZ13eKTYFc/target/debug/deps rustc --crate-name linux_raw_sys --edition=2021 /tmp/tmp.MZ13eKTYFc/registry/linux-raw-sys-0.4.14/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="general"' --cfg 'feature="if_ether"' --cfg 'feature="ioctl"' --cfg 'feature="net"' --cfg 'feature="netlink"' --cfg 'feature="no_std"' --cfg 'feature="prctl"' --cfg 'feature="xdp"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("bootparam", "compiler_builtins", "core", "default", "elf", "errno", "general", "if_arp", "if_ether", "if_packet", "io_uring", "ioctl", "loop_device", "mempolicy", "net", "netlink", "no_std", "prctl", "rustc-dep-of-std", "std", "system", "xdp"))' -C metadata=df2e18974a94e4e2 -C extra-filename=-df2e18974a94e4e2 --out-dir /tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.MZ13eKTYFc/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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.MZ13eKTYFc/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 146s warning: `linux-raw-sys` (lib) generated 1 warning (1 duplicate) 146s Compiling cfg_aliases v0.2.1 146s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=cfg_aliases CARGO_MANIFEST_DIR=/tmp/tmp.MZ13eKTYFc/registry/cfg_aliases-0.2.1 CARGO_MANIFEST_PATH=/tmp/tmp.MZ13eKTYFc/registry/cfg_aliases-0.2.1/Cargo.toml CARGO_PKG_AUTHORS='Zicklag ' CARGO_PKG_DESCRIPTION='A tiny utility to help save you a lot of effort with long winded `#[cfg()]` checks.' CARGO_PKG_HOMEPAGE='https://github.com/katharostech/cfg_aliases' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=cfg_aliases CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/katharostech/cfg_aliases' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.2.1 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.MZ13eKTYFc/target/debug/deps rustc --crate-name cfg_aliases --edition=2018 /tmp/tmp.MZ13eKTYFc/registry/cfg_aliases-0.2.1/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 '--deny=clippy::str_to_string' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=8701cbe9ff8ee006 -C extra-filename=-8701cbe9ff8ee006 --out-dir /tmp/tmp.MZ13eKTYFc/target/debug/deps -L dependency=/tmp/tmp.MZ13eKTYFc/target/debug/deps --cap-lints warn` 146s Compiling nix v0.29.0 146s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.MZ13eKTYFc/registry/nix-0.29.0 CARGO_MANIFEST_PATH=/tmp/tmp.MZ13eKTYFc/registry/nix-0.29.0/Cargo.toml CARGO_PKG_AUTHORS='The nix-rust Project Developers' CARGO_PKG_DESCRIPTION='Rust friendly bindings to *nix APIs' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=nix CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/nix-rust/nix' CARGO_PKG_RUST_VERSION=1.69 CARGO_PKG_VERSION=0.29.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=29 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.MZ13eKTYFc/target/debug/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.MZ13eKTYFc/registry/nix-0.29.0/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="feature"' --cfg 'feature="memoffset"' --cfg 'feature="socket"' --cfg 'feature="uio"' --cfg 'feature="user"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("acct", "aio", "default", "dir", "env", "event", "fanotify", "feature", "fs", "hostname", "inotify", "ioctl", "kmod", "memoffset", "mman", "mount", "mqueue", "net", "personality", "pin-utils", "poll", "process", "pthread", "ptrace", "quota", "reboot", "resource", "sched", "signal", "socket", "term", "time", "ucontext", "uio", "user", "zerocopy"))' -C metadata=9cc97a3a2fcb749b -C extra-filename=-9cc97a3a2fcb749b --out-dir /tmp/tmp.MZ13eKTYFc/target/debug/build/nix-9cc97a3a2fcb749b -L dependency=/tmp/tmp.MZ13eKTYFc/target/debug/deps --extern cfg_aliases=/tmp/tmp.MZ13eKTYFc/target/debug/deps/libcfg_aliases-8701cbe9ff8ee006.rlib --cap-lints warn` 146s warning: `tracing-attributes` (lib) generated 1 warning 146s Compiling tracing v0.1.40 146s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=tracing CARGO_MANIFEST_DIR=/tmp/tmp.MZ13eKTYFc/registry/tracing-0.1.40 CARGO_MANIFEST_PATH=/tmp/tmp.MZ13eKTYFc/registry/tracing-0.1.40/Cargo.toml CARGO_PKG_AUTHORS='Eliza Weisman :Tokio Contributors ' CARGO_PKG_DESCRIPTION='Application-level tracing for Rust. 146s ' CARGO_PKG_HOMEPAGE='https://tokio.rs' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=tracing CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/tokio-rs/tracing' CARGO_PKG_RUST_VERSION=1.56.0 CARGO_PKG_VERSION=0.1.40 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=40 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.MZ13eKTYFc/target/debug/deps rustc --crate-name tracing --edition=2018 /tmp/tmp.MZ13eKTYFc/registry/tracing-0.1.40/src/lib.rs --error-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="attributes"' --cfg 'feature="default"' --cfg 'feature="std"' --cfg 'feature="tracing-attributes"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("async-await", "attributes", "default", "log", "log-always", "max_level_debug", "max_level_error", "max_level_info", "max_level_off", "max_level_trace", "max_level_warn", "release_max_level_debug", "release_max_level_error", "release_max_level_info", "release_max_level_off", "release_max_level_trace", "release_max_level_warn", "std", "tracing-attributes"))' -C metadata=5f8a2432d30b4ef1 -C extra-filename=-5f8a2432d30b4ef1 --out-dir /tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.MZ13eKTYFc/target/debug/deps --extern pin_project_lite=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/libpin_project_lite-5dc815523e98d889.rmeta --extern tracing_attributes=/tmp/tmp.MZ13eKTYFc/target/debug/deps/libtracing_attributes-7f00f49c1aac99bb.so --extern tracing_core=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/libtracing_core-4c8af7279fad1469.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.MZ13eKTYFc/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 146s warning: lint `private_in_public` has been removed: replaced with another group of lints, see RFC for more information 146s --> /usr/share/cargo/registry/tracing-0.1.40/src/lib.rs:932:5 146s | 146s 932 | private_in_public, 146s | ^^^^^^^^^^^^^^^^^ 146s | 146s = note: `#[warn(renamed_and_removed_lints)]` on by default 146s 146s warning: `tracing` (lib) generated 2 warnings (1 duplicate) 146s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=rustix CARGO_MANIFEST_DIR=/tmp/tmp.MZ13eKTYFc/registry/rustix-0.38.37 CARGO_MANIFEST_PATH=/tmp/tmp.MZ13eKTYFc/registry/rustix-0.38.37/Cargo.toml CARGO_PKG_AUTHORS='Dan Gohman :Jakub Konka ' CARGO_PKG_DESCRIPTION='Safe Rust bindings to POSIX/Unix/Linux/Winsock-like syscalls' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=rustix CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/bytecodealliance/rustix' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=0.38.37 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=38 CARGO_PKG_VERSION_PATCH=37 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.MZ13eKTYFc/target/debug/deps OUT_DIR=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/build/rustix-bc16aac95f297369/out rustc --crate-name rustix --edition=2021 /tmp/tmp.MZ13eKTYFc/registry/rustix-0.38.37/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --warn=unexpected_cfgs --check-cfg 'cfg(alloc_c_string)' --check-cfg 'cfg(alloc_ffi)' --check-cfg 'cfg(apple)' --check-cfg 'cfg(asm_experimental_arch)' --check-cfg 'cfg(bsd)' --check-cfg 'cfg(core_c_str)' --check-cfg 'cfg(core_ffi_c)' --check-cfg 'cfg(core_intrinsics)' --check-cfg 'cfg(criterion)' --check-cfg 'cfg(document_experimental_runtime_api)' --check-cfg 'cfg(fix_y2038)' --check-cfg 'cfg(freebsdlike)' --check-cfg 'cfg(libc)' --check-cfg 'cfg(linux_kernel)' --check-cfg 'cfg(linux_like)' --check-cfg 'cfg(linux_raw)' --check-cfg 'cfg(netbsdlike)' --check-cfg 'cfg(rustc_attrs)' --check-cfg 'cfg(solarish)' --check-cfg 'cfg(staged_api)' --check-cfg 'cfg(static_assertions)' --check-cfg 'cfg(thumb_mode)' --check-cfg 'cfg(wasi)' --check-cfg 'cfg(wasi_ext)' --check-cfg 'cfg(target_arch, values("xtensa"))' --cfg 'feature="alloc"' --cfg 'feature="event"' --cfg 'feature="fs"' --cfg 'feature="libc-extra-traits"' --cfg 'feature="net"' --cfg 'feature="pipe"' --cfg 'feature="process"' --cfg 'feature="std"' --cfg 'feature="time"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("all-apis", "alloc", "cc", "compiler_builtins", "core", "default", "event", "fs", "io_uring", "itoa", "libc", "libc-extra-traits", "libc_errno", "linux_4_11", "linux_latest", "mm", "mount", "net", "once_cell", "param", "pipe", "process", "procfs", "pty", "rand", "runtime", "rustc-dep-of-std", "shm", "std", "stdio", "system", "termios", "thread", "time", "try_close", "use-explicitly-provided-auxv", "use-libc", "use-libc-auxv"))' -C metadata=c5174677adcec892 -C extra-filename=-c5174677adcec892 --out-dir /tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.MZ13eKTYFc/target/debug/deps --extern bitflags=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/libbitflags-65f3f529c7b65778.rmeta --extern libc_errno=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/liberrno-a511b7e92317ca2a.rmeta --extern libc=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/liblibc-cf2521928ac070dc.rmeta --extern linux_raw_sys=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/liblinux_raw_sys-df2e18974a94e4e2.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.MZ13eKTYFc/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain --cfg static_assertions --cfg libc --cfg linux_like --cfg linux_kernel` 146s Compiling enumflags2 v0.7.10 146s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=enumflags2 CARGO_MANIFEST_DIR=/tmp/tmp.MZ13eKTYFc/registry/enumflags2-0.7.10 CARGO_MANIFEST_PATH=/tmp/tmp.MZ13eKTYFc/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.MZ13eKTYFc/target/debug/deps rustc --crate-name enumflags2 --edition=2018 /tmp/tmp.MZ13eKTYFc/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=2867d32c4b4f39e8 -C extra-filename=-2867d32c4b4f39e8 --out-dir /tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.MZ13eKTYFc/target/debug/deps --extern enumflags2_derive=/tmp/tmp.MZ13eKTYFc/target/debug/deps/libenumflags2_derive-588090abb48fd7e4.so --extern serde=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/libserde-0e7dff716e38da0d.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.MZ13eKTYFc/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 146s warning: `enumflags2` (lib) generated 1 warning (1 duplicate) 146s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CFG_PANIC=unwind CARGO_CFG_TARGET_ABI='' CARGO_CFG_TARGET_ARCH=s390x CARGO_CFG_TARGET_ENDIAN=big CARGO_CFG_TARGET_ENV=gnu CARGO_CFG_TARGET_FAMILY=unix CARGO_CFG_TARGET_HAS_ATOMIC=128,16,32,64,8,ptr CARGO_CFG_TARGET_OS=linux CARGO_CFG_TARGET_POINTER_WIDTH=64 CARGO_CFG_TARGET_VENDOR=unknown CARGO_CFG_UNIX='' CARGO_ENCODED_RUSTFLAGS='-Cdebuginfo=2-Cstrip=none--cap-lintswarn-Clinker=s390x-linux-gnu-gcc-Clink-arg=-Wl,-Bsymbolic-functions-Clink-arg=-flto=auto-Clink-arg=-ffat-lto-objects-Clink-arg=-Wl,-z,relro--remap-path-prefix/usr/share/cargo/registry/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0--remap-path-prefix/tmp/tmp.MZ13eKTYFc/registry=/usr/share/cargo/registry-Ctarget-feature=+backchain' CARGO_FEATURE_DEFAULT=1 CARGO_MANIFEST_DIR=/tmp/tmp.MZ13eKTYFc/registry/memoffset-0.8.0 CARGO_MANIFEST_PATH=/tmp/tmp.MZ13eKTYFc/registry/memoffset-0.8.0/Cargo.toml CARGO_PKG_AUTHORS='Gilad Naaman ' CARGO_PKG_DESCRIPTION='offset_of functionality for Rust structs.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=memoffset CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/Gilnaa/memoffset' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.8.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=8 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' DEBUG=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.MZ13eKTYFc/target/debug/deps:/tmp/tmp.MZ13eKTYFc/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/build/memoffset-b32fed70cf81e31f/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.MZ13eKTYFc/target/debug/build/memoffset-b637076bbed49000/build-script-build` 146s [memoffset 0.8.0] warning: unstable feature specified for `-Ctarget-feature`: `backchain` 146s [memoffset 0.8.0] | 146s [memoffset 0.8.0] = note: this feature is not stably supported; its behavior can change in the future 146s [memoffset 0.8.0] 146s [memoffset 0.8.0] warning: 1 warning emitted 146s [memoffset 0.8.0] 146s [memoffset 0.8.0] cargo:rustc-cfg=tuple_ty 146s [memoffset 0.8.0] cargo:rustc-cfg=allow_clippy 146s [memoffset 0.8.0] cargo:rustc-cfg=maybe_uninit 146s [memoffset 0.8.0] cargo:rustc-cfg=doctests 146s [memoffset 0.8.0] cargo:rustc-cfg=raw_ref_macros 146s [memoffset 0.8.0] cargo:rustc-cfg=stable_const 146s Compiling rand_core v0.6.4 146s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=rand_core CARGO_MANIFEST_DIR=/tmp/tmp.MZ13eKTYFc/registry/rand_core-0.6.4 CARGO_MANIFEST_PATH=/tmp/tmp.MZ13eKTYFc/registry/rand_core-0.6.4/Cargo.toml CARGO_PKG_AUTHORS='The Rand Project Developers:The Rust Project Developers' CARGO_PKG_DESCRIPTION='Core random number generator traits and tools for implementation. 146s ' CARGO_PKG_HOMEPAGE='https://rust-random.github.io/book' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=rand_core CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-random/rand' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.6.4 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=6 CARGO_PKG_VERSION_PATCH=4 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.MZ13eKTYFc/target/debug/deps rustc --crate-name rand_core --edition=2018 /tmp/tmp.MZ13eKTYFc/registry/rand_core-0.6.4/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="alloc"' --cfg 'feature="getrandom"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "getrandom", "serde", "serde1", "std"))' -C metadata=3c7246ca3f419bbc -C extra-filename=-3c7246ca3f419bbc --out-dir /tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.MZ13eKTYFc/target/debug/deps --extern getrandom=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/libgetrandom-ed47f71499f7e17d.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.MZ13eKTYFc/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 146s warning: unexpected `cfg` condition name: `doc_cfg` 146s --> /usr/share/cargo/registry/rand_core-0.6.4/src/lib.rs:38:13 146s | 146s 38 | #![cfg_attr(doc_cfg, feature(doc_cfg))] 146s | ^^^^^^^ 146s | 146s = help: expected names are: `clippy`, `debug_assertions`, `doc`, `docsrs`, `doctest`, `feature`, `fmt_debug`, `miri`, `overflow_checks`, `panic`, `proc_macro`, `relocation_model`, `rustfmt`, `sanitize`, `sanitizer_cfi_generalize_pointers`, `sanitizer_cfi_normalize_integers`, `target_abi`, `target_arch`, `target_endian`, `target_env`, `target_family`, `target_feature`, `target_has_atomic`, `target_has_atomic_equal_alignment`, `target_has_atomic_load_store`, `target_os`, `target_pointer_width`, `target_thread_local`, `target_vendor`, `test`, `ub_checks`, `unix`, and `windows` 146s = help: consider using a Cargo feature instead 146s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 146s [lints.rust] 146s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 146s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 146s = note: see for more information about checking conditional configuration 146s = note: `#[warn(unexpected_cfgs)]` on by default 146s 146s warning: unexpected `cfg` condition name: `doc_cfg` 146s --> /usr/share/cargo/registry/rand_core-0.6.4/src/error.rs:50:16 146s | 146s 50 | #[cfg_attr(doc_cfg, doc(cfg(feature = "std")))] 146s | ^^^^^^^ 146s | 146s = help: consider using a Cargo feature instead 146s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 146s [lints.rust] 146s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 146s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 146s = note: see for more information about checking conditional configuration 146s 146s warning: unexpected `cfg` condition name: `doc_cfg` 146s --> /usr/share/cargo/registry/rand_core-0.6.4/src/error.rs:64:16 146s | 146s 64 | #[cfg_attr(doc_cfg, doc(cfg(feature = "std")))] 146s | ^^^^^^^ 146s | 146s = help: consider using a Cargo feature instead 146s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 146s [lints.rust] 146s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 146s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 146s = note: see for more information about checking conditional configuration 146s 146s warning: unexpected `cfg` condition name: `doc_cfg` 146s --> /usr/share/cargo/registry/rand_core-0.6.4/src/error.rs:75:16 146s | 146s 75 | #[cfg_attr(doc_cfg, doc(cfg(feature = "std")))] 146s | ^^^^^^^ 146s | 146s = help: consider using a Cargo feature instead 146s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 146s [lints.rust] 146s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 146s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 146s = note: see for more information about checking conditional configuration 146s 146s warning: unexpected `cfg` condition name: `doc_cfg` 146s --> /usr/share/cargo/registry/rand_core-0.6.4/src/os.rs:46:12 146s | 146s 46 | #[cfg_attr(doc_cfg, doc(cfg(feature = "getrandom")))] 146s | ^^^^^^^ 146s | 146s = help: consider using a Cargo feature instead 146s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 146s [lints.rust] 146s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 146s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 146s = note: see for more information about checking conditional configuration 146s 146s warning: unexpected `cfg` condition name: `doc_cfg` 146s --> /usr/share/cargo/registry/rand_core-0.6.4/src/lib.rs:411:16 146s | 146s 411 | #[cfg_attr(doc_cfg, doc(cfg(feature = "getrandom")))] 146s | ^^^^^^^ 146s | 146s = help: consider using a Cargo feature instead 146s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 146s [lints.rust] 146s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 146s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 146s = note: see for more information about checking conditional configuration 146s 147s warning: `rand_core` (lib) generated 7 warnings (1 duplicate) 147s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=pango_sys CARGO_MANIFEST_DIR=/tmp/tmp.MZ13eKTYFc/registry/pango-sys-0.20.7 CARGO_MANIFEST_PATH=/tmp/tmp.MZ13eKTYFc/registry/pango-sys-0.20.7/Cargo.toml CARGO_PKG_AUTHORS='The gtk-rs Project Developers' CARGO_PKG_DESCRIPTION='FFI bindings to libpango-1.0' CARGO_PKG_HOMEPAGE='https://gtk-rs.org/' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=pango-sys CARGO_PKG_README='' CARGO_PKG_REPOSITORY='https://github.com/gtk-rs/gtk-rs-core' CARGO_PKG_RUST_VERSION=1.70 CARGO_PKG_VERSION=0.20.7 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=20 CARGO_PKG_VERSION_PATCH=7 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.MZ13eKTYFc/target/debug/deps OUT_DIR=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/build/pango-sys-9148858f03bf443c/out rustc --crate-name pango_sys --edition=2021 /tmp/tmp.MZ13eKTYFc/registry/pango-sys-0.20.7/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="v1_42"' --cfg 'feature="v1_44"' --cfg 'feature="v1_46"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("v1_42", "v1_44", "v1_46", "v1_48", "v1_50", "v1_52", "v1_54", "v1_56"))' -C metadata=f907ef533c31ecd7 -C extra-filename=-f907ef533c31ecd7 --out-dir /tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.MZ13eKTYFc/target/debug/deps --extern glib_sys=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/libglib_sys-8d7612a6c3ae820a.rmeta --extern gobject_sys=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/libgobject_sys-c41d1b14aec65cc2.rmeta --extern libc=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/liblibc-cf2521928ac070dc.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.MZ13eKTYFc/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain -l pango-1.0 -l gobject-2.0 -l glib-2.0 -l harfbuzz --cfg system_deps_have_pango` 147s warning: `pango-sys` (lib) generated 1 warning (1 duplicate) 147s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=cairo_sys CARGO_MANIFEST_DIR=/tmp/tmp.MZ13eKTYFc/registry/cairo-sys-rs-0.20.7 CARGO_MANIFEST_PATH=/tmp/tmp.MZ13eKTYFc/registry/cairo-sys-rs-0.20.7/Cargo.toml CARGO_PKG_AUTHORS='The gtk-rs Project Developers' CARGO_PKG_DESCRIPTION='FFI bindings to libcairo' CARGO_PKG_HOMEPAGE='https://gtk-rs.org/' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=cairo-sys-rs CARGO_PKG_README='' CARGO_PKG_REPOSITORY='https://github.com/gtk-rs/gtk-rs-core' CARGO_PKG_RUST_VERSION=1.70 CARGO_PKG_VERSION=0.20.7 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=20 CARGO_PKG_VERSION_PATCH=7 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.MZ13eKTYFc/target/debug/deps OUT_DIR=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/build/cairo-sys-rs-9c51754cd28745bb/out rustc --crate-name cairo_sys --edition=2021 /tmp/tmp.MZ13eKTYFc/registry/cairo-sys-rs-0.20.7/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="glib-sys"' --cfg 'feature="use_glib"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("freetype", "glib-sys", "pdf", "png", "ps", "script", "svg", "use_glib", "v1_16", "v1_18", "x11", "xcb", "xlib"))' -C metadata=4612600e92f34c6c -C extra-filename=-4612600e92f34c6c --out-dir /tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.MZ13eKTYFc/target/debug/deps --extern glib_sys=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/libglib_sys-8d7612a6c3ae820a.rmeta --extern libc=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/liblibc-cf2521928ac070dc.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.MZ13eKTYFc/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain -l cairo -l cairo-gobject -l cairo -l gobject-2.0 -l glib-2.0 --cfg system_deps_have_cairo --cfg system_deps_have_cairo_gobject` 147s warning: unexpected `cfg` condition value: `win32-surface` 147s --> /usr/share/cargo/registry/cairo-sys-rs-0.20.7/src/lib.rs:9:20 147s | 147s 9 | #[cfg(all(windows, feature = "win32-surface"))] 147s | ^^^^^^^^^^^^^^^^^^^^^^^^^ 147s | 147s = note: expected values for `feature` are: `freetype`, `glib-sys`, `pdf`, `png`, `ps`, `script`, `svg`, `use_glib`, `v1_16`, `v1_18`, `x11`, `xcb`, and `xlib` 147s = help: consider adding `win32-surface` 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: `win32-surface` 147s --> /usr/share/cargo/registry/cairo-sys-rs-0.20.7/src/lib.rs:15:36 147s | 147s 15 | #[cfg(all(docsrs, not(all(windows, feature = "win32-surface"))))] 147s | ^^^^^^^^^^^^^^^^^^^^^^^^^ 147s | 147s = note: expected values for `feature` are: `freetype`, `glib-sys`, `pdf`, `png`, `ps`, `script`, `svg`, `use_glib`, `v1_16`, `v1_18`, `x11`, `xcb`, and `xlib` 147s = help: consider adding `win32-surface` as a feature in `Cargo.toml` 147s = note: see for more information about checking conditional configuration 147s 147s warning: unexpected `cfg` condition value: `win32-surface` 147s --> /usr/share/cargo/registry/cairo-sys-rs-0.20.7/src/lib.rs:1465:24 147s | 147s 1465 | #[cfg(all(windows, feature = "win32-surface"))] 147s | ^^^^^^^^^^^^^^^^^^^^^^^^^ 147s | 147s = note: expected values for `feature` are: `freetype`, `glib-sys`, `pdf`, `png`, `ps`, `script`, `svg`, `use_glib`, `v1_16`, `v1_18`, `x11`, `xcb`, and `xlib` 147s = help: consider adding `win32-surface` as a feature in `Cargo.toml` 147s = note: see for more information about checking conditional configuration 147s 147s warning: unexpected `cfg` condition value: `win32-surface` 147s --> /usr/share/cargo/registry/cairo-sys-rs-0.20.7/src/lib.rs:1468:24 147s | 147s 1468 | #[cfg(all(windows, feature = "win32-surface"))] 147s | ^^^^^^^^^^^^^^^^^^^^^^^^^ 147s | 147s = note: expected values for `feature` are: `freetype`, `glib-sys`, `pdf`, `png`, `ps`, `script`, `svg`, `use_glib`, `v1_16`, `v1_18`, `x11`, `xcb`, and `xlib` 147s = help: consider adding `win32-surface` as a feature in `Cargo.toml` 147s = note: see for more information about checking conditional configuration 147s 147s warning: unexpected `cfg` condition value: `win32-surface` 147s --> /usr/share/cargo/registry/cairo-sys-rs-0.20.7/src/lib.rs:1474:24 147s | 147s 1474 | #[cfg(all(windows, feature = "win32-surface"))] 147s | ^^^^^^^^^^^^^^^^^^^^^^^^^ 147s | 147s = note: expected values for `feature` are: `freetype`, `glib-sys`, `pdf`, `png`, `ps`, `script`, `svg`, `use_glib`, `v1_16`, `v1_18`, `x11`, `xcb`, and `xlib` 147s = help: consider adding `win32-surface` as a feature in `Cargo.toml` 147s = note: see for more information about checking conditional configuration 147s 147s warning: unexpected `cfg` condition value: `win32-surface` 147s --> /usr/share/cargo/registry/cairo-sys-rs-0.20.7/src/lib.rs:1481:24 147s | 147s 1481 | #[cfg(all(windows, feature = "win32-surface"))] 147s | ^^^^^^^^^^^^^^^^^^^^^^^^^ 147s | 147s = note: expected values for `feature` are: `freetype`, `glib-sys`, `pdf`, `png`, `ps`, `script`, `svg`, `use_glib`, `v1_16`, `v1_18`, `x11`, `xcb`, and `xlib` 147s = help: consider adding `win32-surface` as a feature in `Cargo.toml` 147s = note: see for more information about checking conditional configuration 147s 147s warning: unexpected `cfg` condition value: `win32-surface` 147s --> /usr/share/cargo/registry/cairo-sys-rs-0.20.7/src/lib.rs:1489:24 147s | 147s 1489 | #[cfg(all(windows, feature = "win32-surface"))] 147s | ^^^^^^^^^^^^^^^^^^^^^^^^^ 147s | 147s = note: expected values for `feature` are: `freetype`, `glib-sys`, `pdf`, `png`, `ps`, `script`, `svg`, `use_glib`, `v1_16`, `v1_18`, `x11`, `xcb`, and `xlib` 147s = help: consider adding `win32-surface` as a feature in `Cargo.toml` 147s = note: see for more information about checking conditional configuration 147s 147s warning: unexpected `cfg` condition value: `win32-surface` 147s --> /usr/share/cargo/registry/cairo-sys-rs-0.20.7/src/lib.rs:1492:24 147s | 147s 1492 | #[cfg(all(windows, feature = "win32-surface"))] 147s | ^^^^^^^^^^^^^^^^^^^^^^^^^ 147s | 147s = note: expected values for `feature` are: `freetype`, `glib-sys`, `pdf`, `png`, `ps`, `script`, `svg`, `use_glib`, `v1_16`, `v1_18`, `x11`, `xcb`, and `xlib` 147s = help: consider adding `win32-surface` as a feature in `Cargo.toml` 147s = note: see for more information about checking conditional configuration 147s 147s warning: unexpected `cfg` condition value: `win32-surface` 147s --> /usr/share/cargo/registry/cairo-sys-rs-0.20.7/src/lib.rs:1495:24 147s | 147s 1495 | #[cfg(all(windows, feature = "win32-surface"))] 147s | ^^^^^^^^^^^^^^^^^^^^^^^^^ 147s | 147s = note: expected values for `feature` are: `freetype`, `glib-sys`, `pdf`, `png`, `ps`, `script`, `svg`, `use_glib`, `v1_16`, `v1_18`, `x11`, `xcb`, and `xlib` 147s = help: consider adding `win32-surface` as a feature in `Cargo.toml` 147s = note: see for more information about checking conditional configuration 147s 147s warning: `cairo-sys-rs` (lib) generated 10 warnings (1 duplicate) 147s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=gdk_pixbuf_sys CARGO_MANIFEST_DIR=/tmp/tmp.MZ13eKTYFc/registry/gdk-pixbuf-sys-0.20.7 CARGO_MANIFEST_PATH=/tmp/tmp.MZ13eKTYFc/registry/gdk-pixbuf-sys-0.20.7/Cargo.toml CARGO_PKG_AUTHORS='The gtk-rs Project Developers' CARGO_PKG_DESCRIPTION='FFI bindings to libgdk_pixbuf-2.0' CARGO_PKG_HOMEPAGE='https://gtk-rs.org/' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=gdk-pixbuf-sys CARGO_PKG_README='' CARGO_PKG_REPOSITORY='https://github.com/gtk-rs/gtk-rs-core' CARGO_PKG_RUST_VERSION=1.70 CARGO_PKG_VERSION=0.20.7 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=20 CARGO_PKG_VERSION_PATCH=7 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.MZ13eKTYFc/target/debug/deps OUT_DIR=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/build/gdk-pixbuf-sys-ab4c33b0ec0f5591/out rustc --crate-name gdk_pixbuf_sys --edition=2021 /tmp/tmp.MZ13eKTYFc/registry/gdk-pixbuf-sys-0.20.7/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("v2_40", "v2_42"))' -C metadata=2987b4ccc6a33d16 -C extra-filename=-2987b4ccc6a33d16 --out-dir /tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.MZ13eKTYFc/target/debug/deps --extern gio_sys=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/libgio_sys-09c58e200e125269.rmeta --extern glib_sys=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/libglib_sys-8d7612a6c3ae820a.rmeta --extern gobject_sys=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/libgobject_sys-c41d1b14aec65cc2.rmeta --extern libc=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/liblibc-cf2521928ac070dc.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.MZ13eKTYFc/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain -l gdk_pixbuf-2.0 -l gobject-2.0 -l glib-2.0 --cfg system_deps_have_gdk_pixbuf_2_0` 147s warning: `gdk-pixbuf-sys` (lib) generated 1 warning (1 duplicate) 147s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=gio CARGO_MANIFEST_DIR=/tmp/tmp.MZ13eKTYFc/registry/gio-0.20.7 CARGO_MANIFEST_PATH=/tmp/tmp.MZ13eKTYFc/registry/gio-0.20.7/Cargo.toml CARGO_PKG_AUTHORS='The gtk-rs Project Developers' CARGO_PKG_DESCRIPTION='Rust bindings for the Gio library' CARGO_PKG_HOMEPAGE='https://gtk-rs.org/' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=gio CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/gtk-rs/gtk-rs-core' CARGO_PKG_RUST_VERSION=1.70 CARGO_PKG_VERSION=0.20.7 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=20 CARGO_PKG_VERSION_PATCH=7 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.MZ13eKTYFc/target/debug/deps OUT_DIR=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/build/gio-b380b9dc244b7663/out rustc --crate-name gio --edition=2021 /tmp/tmp.MZ13eKTYFc/registry/gio-0.20.7/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="v2_58"' --cfg 'feature="v2_60"' --cfg 'feature="v2_62"' --cfg 'feature="v2_64"' --cfg 'feature="v2_66"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("v2_58", "v2_60", "v2_62", "v2_64", "v2_66", "v2_68", "v2_70", "v2_72", "v2_74", "v2_76", "v2_78", "v2_80", "v2_82", "v2_84"))' -C metadata=ecaee57cd4633445 -C extra-filename=-ecaee57cd4633445 --out-dir /tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.MZ13eKTYFc/target/debug/deps --extern futures_channel=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/libfutures_channel-8ed485ea134c933c.rmeta --extern futures_core=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/libfutures_core-8d305950da6bf5c8.rmeta --extern futures_io=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/libfutures_io-1a4387591f8b2b95.rmeta --extern futures_util=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/libfutures_util-724575be975598c0.rmeta --extern gio_sys=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/libgio_sys-09c58e200e125269.rmeta --extern glib=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/libglib-ba3b7fdf202218f0.rmeta --extern libc=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/liblibc-cf2521928ac070dc.rmeta --extern pin_project_lite=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/libpin_project_lite-5dc815523e98d889.rmeta --extern smallvec=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/libsmallvec-ef72c43926f60793.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.MZ13eKTYFc/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 150s warning: `rustix` (lib) generated 1 warning (1 duplicate) 150s Compiling ppv-lite86 v0.2.20 150s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=ppv_lite86 CARGO_MANIFEST_DIR=/tmp/tmp.MZ13eKTYFc/registry/ppv-lite86-0.2.20 CARGO_MANIFEST_PATH=/tmp/tmp.MZ13eKTYFc/registry/ppv-lite86-0.2.20/Cargo.toml CARGO_PKG_AUTHORS='The CryptoCorrosion Contributors' CARGO_PKG_DESCRIPTION='Implementation of the crypto-simd API for x86' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=ppv-lite86 CARGO_PKG_README='' CARGO_PKG_REPOSITORY='https://github.com/cryptocorrosion/cryptocorrosion' CARGO_PKG_RUST_VERSION=1.61 CARGO_PKG_VERSION=0.2.20 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=20 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.MZ13eKTYFc/target/debug/deps rustc --crate-name ppv_lite86 --edition=2021 /tmp/tmp.MZ13eKTYFc/registry/ppv-lite86-0.2.20/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="simd"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "no_simd", "simd", "std"))' -C metadata=57e5b566e2a71c09 -C extra-filename=-57e5b566e2a71c09 --out-dir /tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.MZ13eKTYFc/target/debug/deps --extern zerocopy=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/libzerocopy-777d8c6c10ffcfc6.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.MZ13eKTYFc/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 151s warning: `ppv-lite86` (lib) generated 1 warning (1 duplicate) 151s Compiling zvariant_derive v4.2.0 151s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=zvariant_derive CARGO_MANIFEST_DIR=/tmp/tmp.MZ13eKTYFc/registry/zvariant_derive-4.2.0 CARGO_MANIFEST_PATH=/tmp/tmp.MZ13eKTYFc/registry/zvariant_derive-4.2.0/Cargo.toml CARGO_PKG_AUTHORS='Zeeshan Ali Khan ' CARGO_PKG_DESCRIPTION='D-Bus & GVariant encoding & decoding' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=zvariant_derive CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dbus2/zbus/' CARGO_PKG_RUST_VERSION=1.75 CARGO_PKG_VERSION=4.2.0 CARGO_PKG_VERSION_MAJOR=4 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.MZ13eKTYFc/target/debug/deps rustc --crate-name zvariant_derive --edition=2021 /tmp/tmp.MZ13eKTYFc/registry/zvariant_derive-4.2.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type proc-macro --emit=dep-info,link -C prefer-dynamic -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=c08daefc625922fd -C extra-filename=-c08daefc625922fd --out-dir /tmp/tmp.MZ13eKTYFc/target/debug/deps -L dependency=/tmp/tmp.MZ13eKTYFc/target/debug/deps --extern proc_macro_crate=/tmp/tmp.MZ13eKTYFc/target/debug/deps/libproc_macro_crate-76b8c9685ffc2762.rlib --extern proc_macro2=/tmp/tmp.MZ13eKTYFc/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rlib --extern quote=/tmp/tmp.MZ13eKTYFc/target/debug/deps/libquote-dc92c6f25ee0f0c6.rlib --extern syn=/tmp/tmp.MZ13eKTYFc/target/debug/deps/libsyn-0167beed9e699402.rlib --extern zvariant_utils=/tmp/tmp.MZ13eKTYFc/target/debug/deps/libzvariant_utils-555d90bad4acf190.rlib --extern proc_macro --cap-lints warn` 152s Compiling block-buffer v0.10.2 152s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=block_buffer CARGO_MANIFEST_DIR=/tmp/tmp.MZ13eKTYFc/registry/block-buffer-0.10.2 CARGO_MANIFEST_PATH=/tmp/tmp.MZ13eKTYFc/registry/block-buffer-0.10.2/Cargo.toml CARGO_PKG_AUTHORS='RustCrypto Developers' CARGO_PKG_DESCRIPTION='Buffer type for block processing of data' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=block-buffer CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/RustCrypto/utils' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.10.2 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=10 CARGO_PKG_VERSION_PATCH=2 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.MZ13eKTYFc/target/debug/deps rustc --crate-name block_buffer --edition=2018 /tmp/tmp.MZ13eKTYFc/registry/block-buffer-0.10.2/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=4cd3db619b1d8e9e -C extra-filename=-4cd3db619b1d8e9e --out-dir /tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.MZ13eKTYFc/target/debug/deps --extern generic_array=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/libgeneric_array-d02d059964c7aee0.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.MZ13eKTYFc/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 152s warning: `block-buffer` (lib) generated 1 warning (1 duplicate) 152s Compiling crypto-common v0.1.6 152s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=crypto_common CARGO_MANIFEST_DIR=/tmp/tmp.MZ13eKTYFc/registry/crypto-common-0.1.6 CARGO_MANIFEST_PATH=/tmp/tmp.MZ13eKTYFc/registry/crypto-common-0.1.6/Cargo.toml CARGO_PKG_AUTHORS='RustCrypto Developers' CARGO_PKG_DESCRIPTION='Common cryptographic traits' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=crypto-common CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/RustCrypto/traits' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.1.6 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=6 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.MZ13eKTYFc/target/debug/deps rustc --crate-name crypto_common --edition=2018 /tmp/tmp.MZ13eKTYFc/registry/crypto-common-0.1.6/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("getrandom", "rand_core", "std"))' -C metadata=77cd648c700afbb2 -C extra-filename=-77cd648c700afbb2 --out-dir /tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.MZ13eKTYFc/target/debug/deps --extern generic_array=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/libgeneric_array-d02d059964c7aee0.rmeta --extern typenum=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/libtypenum-c66037e8139405ff.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.MZ13eKTYFc/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 152s warning: `crypto-common` (lib) generated 1 warning (1 duplicate) 152s Compiling async-channel v2.3.1 152s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=async_channel CARGO_MANIFEST_DIR=/tmp/tmp.MZ13eKTYFc/registry/async-channel-2.3.1 CARGO_MANIFEST_PATH=/tmp/tmp.MZ13eKTYFc/registry/async-channel-2.3.1/Cargo.toml CARGO_PKG_AUTHORS='Stjepan Glavina ' CARGO_PKG_DESCRIPTION='Async multi-producer multi-consumer channel' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=async-channel CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/smol-rs/async-channel' CARGO_PKG_RUST_VERSION=1.60 CARGO_PKG_VERSION=2.3.1 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.MZ13eKTYFc/target/debug/deps rustc --crate-name async_channel --edition=2021 /tmp/tmp.MZ13eKTYFc/registry/async-channel-2.3.1/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "std"))' -C metadata=b5364c34e3b23819 -C extra-filename=-b5364c34e3b23819 --out-dir /tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.MZ13eKTYFc/target/debug/deps --extern concurrent_queue=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/libconcurrent_queue-7e82393ecc7068db.rmeta --extern event_listener_strategy=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/libevent_listener_strategy-53ebcc1cb10a7931.rmeta --extern futures_core=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/libfutures_core-8d305950da6bf5c8.rmeta --extern pin_project_lite=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/libpin_project_lite-5dc815523e98d889.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.MZ13eKTYFc/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 152s warning: `async-channel` (lib) generated 1 warning (1 duplicate) 152s Compiling async-lock v3.4.0 152s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=async_lock CARGO_MANIFEST_DIR=/tmp/tmp.MZ13eKTYFc/registry/async-lock-3.4.0 CARGO_MANIFEST_PATH=/tmp/tmp.MZ13eKTYFc/registry/async-lock-3.4.0/Cargo.toml CARGO_PKG_AUTHORS='Stjepan Glavina ' CARGO_PKG_DESCRIPTION='Async synchronization primitives' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=async-lock CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/smol-rs/async-lock' CARGO_PKG_RUST_VERSION=1.60 CARGO_PKG_VERSION=3.4.0 CARGO_PKG_VERSION_MAJOR=3 CARGO_PKG_VERSION_MINOR=4 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.MZ13eKTYFc/target/debug/deps rustc --crate-name async_lock --edition=2021 /tmp/tmp.MZ13eKTYFc/registry/async-lock-3.4.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --warn=unexpected_cfgs --check-cfg 'cfg(loom)' --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "std"))' -C metadata=ac8045c9d37e641a -C extra-filename=-ac8045c9d37e641a --out-dir /tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.MZ13eKTYFc/target/debug/deps --extern event_listener=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/libevent_listener-4260d59234261e59.rmeta --extern event_listener_strategy=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/libevent_listener_strategy-53ebcc1cb10a7931.rmeta --extern pin_project_lite=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/libpin_project_lite-5dc815523e98d889.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.MZ13eKTYFc/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 152s warning: `async-lock` (lib) generated 1 warning (1 duplicate) 152s Compiling gdk4-sys v0.9.5 152s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.MZ13eKTYFc/registry/gdk4-sys-0.9.5 CARGO_MANIFEST_PATH=/tmp/tmp.MZ13eKTYFc/registry/gdk4-sys-0.9.5/Cargo.toml CARGO_PKG_AUTHORS='The gtk-rs Project Developers' CARGO_PKG_DESCRIPTION='FFI bindings of GDK 4' CARGO_PKG_HOMEPAGE='https://gtk-rs.org/gtk4-rs' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=gdk4-sys CARGO_PKG_README='' CARGO_PKG_REPOSITORY='https://github.com/gtk-rs/gtk4-rs' CARGO_PKG_RUST_VERSION=1.70 CARGO_PKG_VERSION=0.9.5 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=9 CARGO_PKG_VERSION_PATCH=5 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.MZ13eKTYFc/target/debug/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.MZ13eKTYFc/registry/gdk4-sys-0.9.5/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="v4_10"' --cfg 'feature="v4_2"' --cfg 'feature="v4_4"' --cfg 'feature="v4_6"' --cfg 'feature="v4_8"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("v4_10", "v4_12", "v4_14", "v4_16", "v4_18", "v4_2", "v4_4", "v4_6", "v4_8"))' -C metadata=4462722e825bb98b -C extra-filename=-4462722e825bb98b --out-dir /tmp/tmp.MZ13eKTYFc/target/debug/build/gdk4-sys-4462722e825bb98b -L dependency=/tmp/tmp.MZ13eKTYFc/target/debug/deps --extern pkg_config=/tmp/tmp.MZ13eKTYFc/target/debug/deps/libpkg_config-f20a1c89e2145860.rlib --extern system_deps=/tmp/tmp.MZ13eKTYFc/target/debug/deps/libsystem_deps-df5512f70260f2a1.rlib --cap-lints warn` 153s Compiling endi v1.1.0 153s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=endi CARGO_MANIFEST_DIR=/tmp/tmp.MZ13eKTYFc/registry/endi-1.1.0 CARGO_MANIFEST_PATH=/tmp/tmp.MZ13eKTYFc/registry/endi-1.1.0/Cargo.toml CARGO_PKG_AUTHORS='Zeeshan Ali Khan ' CARGO_PKG_DESCRIPTION='A simple endian-handling library' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=endi CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/zeenix/endi' CARGO_PKG_RUST_VERSION=1.60 CARGO_PKG_VERSION=1.1.0 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.MZ13eKTYFc/target/debug/deps rustc --crate-name endi --edition=2021 /tmp/tmp.MZ13eKTYFc/registry/endi-1.1.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "std"))' -C metadata=6479300693b4fccf -C extra-filename=-6479300693b4fccf --out-dir /tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.MZ13eKTYFc/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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.MZ13eKTYFc/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 153s warning: `endi` (lib) generated 1 warning (1 duplicate) 153s Compiling static_assertions v1.1.0 153s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=static_assertions CARGO_MANIFEST_DIR=/tmp/tmp.MZ13eKTYFc/registry/static_assertions-1.1.0 CARGO_MANIFEST_PATH=/tmp/tmp.MZ13eKTYFc/registry/static_assertions-1.1.0/Cargo.toml CARGO_PKG_AUTHORS='Nikolai Vazquez' CARGO_PKG_DESCRIPTION='Compile-time assertions to ensure that invariants are met.' CARGO_PKG_HOMEPAGE='https://github.com/nvzqz/static-assertions-rs' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=static_assertions CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/nvzqz/static-assertions-rs' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=1.1.0 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.MZ13eKTYFc/target/debug/deps rustc --crate-name static_assertions --edition=2015 /tmp/tmp.MZ13eKTYFc/registry/static_assertions-1.1.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("nightly"))' -C metadata=18df01cc327facaa -C extra-filename=-18df01cc327facaa --out-dir /tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.MZ13eKTYFc/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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.MZ13eKTYFc/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 153s warning: `static_assertions` (lib) generated 1 warning (1 duplicate) 153s Compiling atomic-waker v1.1.2 153s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=atomic_waker CARGO_MANIFEST_DIR=/tmp/tmp.MZ13eKTYFc/registry/atomic-waker-1.1.2 CARGO_MANIFEST_PATH=/tmp/tmp.MZ13eKTYFc/registry/atomic-waker-1.1.2/Cargo.toml CARGO_PKG_AUTHORS='Stjepan Glavina :Contributors to futures-rs' CARGO_PKG_DESCRIPTION='A synchronization primitive for task wakeup' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=atomic-waker CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/smol-rs/atomic-waker' CARGO_PKG_RUST_VERSION=1.36 CARGO_PKG_VERSION=1.1.2 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=2 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.MZ13eKTYFc/target/debug/deps rustc --crate-name atomic_waker --edition=2018 /tmp/tmp.MZ13eKTYFc/registry/atomic-waker-1.1.2/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=9de928cbdc5a8495 -C extra-filename=-9de928cbdc5a8495 --out-dir /tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.MZ13eKTYFc/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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.MZ13eKTYFc/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 153s warning: unexpected `cfg` condition value: `portable-atomic` 153s --> /usr/share/cargo/registry/atomic-waker-1.1.2/src/lib.rs:26:11 153s | 153s 26 | #[cfg(not(feature = "portable-atomic"))] 153s | ^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: remove the condition 153s | 153s = note: no expected values for `feature` 153s = help: consider adding `portable-atomic` as a feature in `Cargo.toml` 153s = note: see for more information about checking conditional configuration 153s = note: `#[warn(unexpected_cfgs)]` on by default 153s 153s warning: unexpected `cfg` condition value: `portable-atomic` 153s --> /usr/share/cargo/registry/atomic-waker-1.1.2/src/lib.rs:28:7 153s | 153s 28 | #[cfg(feature = "portable-atomic")] 153s | ^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: remove the condition 153s | 153s = note: no expected values for `feature` 153s = help: consider adding `portable-atomic` as a feature in `Cargo.toml` 153s = note: see for more information about checking conditional configuration 153s 153s warning: trait `AssertSync` is never used 153s --> /usr/share/cargo/registry/atomic-waker-1.1.2/src/lib.rs:226:15 153s | 153s 226 | trait AssertSync: Sync {} 153s | ^^^^^^^^^^ 153s | 153s = note: `#[warn(dead_code)]` on by default 153s 153s warning: `atomic-waker` (lib) generated 4 warnings (1 duplicate) 153s Compiling blocking v1.6.1 153s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=blocking CARGO_MANIFEST_DIR=/tmp/tmp.MZ13eKTYFc/registry/blocking-1.6.1 CARGO_MANIFEST_PATH=/tmp/tmp.MZ13eKTYFc/registry/blocking-1.6.1/Cargo.toml CARGO_PKG_AUTHORS='Stjepan Glavina ' CARGO_PKG_DESCRIPTION='A thread pool for isolating blocking I/O in async programs' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=blocking CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/smol-rs/blocking' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=1.6.1 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=6 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.MZ13eKTYFc/target/debug/deps rustc --crate-name blocking --edition=2021 /tmp/tmp.MZ13eKTYFc/registry/blocking-1.6.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("tracing"))' -C metadata=eab10f1f364dd315 -C extra-filename=-eab10f1f364dd315 --out-dir /tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.MZ13eKTYFc/target/debug/deps --extern async_channel=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/libasync_channel-b5364c34e3b23819.rmeta --extern async_task=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/libasync_task-18059860e85d74b4.rmeta --extern atomic_waker=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/libatomic_waker-9de928cbdc5a8495.rmeta --extern fastrand=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/libfastrand-b0f30b63d6f103db.rmeta --extern futures_io=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/libfutures_io-1a4387591f8b2b95.rmeta --extern futures_lite=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/libfutures_lite-b3966bcb93a5ad2f.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.MZ13eKTYFc/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 153s warning: `blocking` (lib) generated 1 warning (1 duplicate) 153s Compiling zvariant v4.2.0 153s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=zvariant CARGO_MANIFEST_DIR=/tmp/tmp.MZ13eKTYFc/registry/zvariant-4.2.0 CARGO_MANIFEST_PATH=/tmp/tmp.MZ13eKTYFc/registry/zvariant-4.2.0/Cargo.toml CARGO_PKG_AUTHORS='Zeeshan Ali Khan ' CARGO_PKG_DESCRIPTION='D-Bus & GVariant encoding & decoding' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=zvariant CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dbus2/zbus/' CARGO_PKG_RUST_VERSION=1.75 CARGO_PKG_VERSION=4.2.0 CARGO_PKG_VERSION_MAJOR=4 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.MZ13eKTYFc/target/debug/deps rustc --crate-name zvariant --edition=2021 /tmp/tmp.MZ13eKTYFc/registry/zvariant-4.2.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="enumflags2"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("arrayvec", "chrono", "default", "enumflags2", "gvariant", "heapless", "option-as-array", "ostree-tests", "serde_bytes", "time", "url", "uuid"))' -C metadata=7b45eb8446d33c11 -C extra-filename=-7b45eb8446d33c11 --out-dir /tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.MZ13eKTYFc/target/debug/deps --extern endi=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/libendi-6479300693b4fccf.rmeta --extern enumflags2=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/libenumflags2-2867d32c4b4f39e8.rmeta --extern serde=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/libserde-0e7dff716e38da0d.rmeta --extern static_assertions=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/libstatic_assertions-18df01cc327facaa.rmeta --extern zvariant_derive=/tmp/tmp.MZ13eKTYFc/target/debug/deps/libzvariant_derive-c08daefc625922fd.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.MZ13eKTYFc/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 156s warning: `zvariant` (lib) generated 1 warning (1 duplicate) 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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0--remap-path-prefix/tmp/tmp.MZ13eKTYFc/registry=/usr/share/cargo/registry-Ctarget-feature=+backchain' CARGO_FEATURE_V4_10=1 CARGO_FEATURE_V4_2=1 CARGO_FEATURE_V4_4=1 CARGO_FEATURE_V4_6=1 CARGO_FEATURE_V4_8=1 CARGO_MANIFEST_DIR=/tmp/tmp.MZ13eKTYFc/registry/gdk4-sys-0.9.5 CARGO_MANIFEST_PATH=/tmp/tmp.MZ13eKTYFc/registry/gdk4-sys-0.9.5/Cargo.toml CARGO_PKG_AUTHORS='The gtk-rs Project Developers' CARGO_PKG_DESCRIPTION='FFI bindings of GDK 4' CARGO_PKG_HOMEPAGE='https://gtk-rs.org/gtk4-rs' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=gdk4-sys CARGO_PKG_README='' CARGO_PKG_REPOSITORY='https://github.com/gtk-rs/gtk4-rs' CARGO_PKG_RUST_VERSION=1.70 CARGO_PKG_VERSION=0.9.5 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=9 CARGO_PKG_VERSION_PATCH=5 CARGO_PKG_VERSION_PRE='' DEBUG=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.MZ13eKTYFc/target/debug/deps:/tmp/tmp.MZ13eKTYFc/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/build/gdk4-sys-65ec9daac5947938/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.MZ13eKTYFc/target/debug/build/gdk4-sys-4462722e825bb98b/build-script-build` 156s [gdk4-sys 0.9.5] cargo:rerun-if-changed=/tmp/tmp.MZ13eKTYFc/registry/gdk4-sys-0.9.5/Cargo.toml 156s [gdk4-sys 0.9.5] cargo:rerun-if-env-changed=GTK4_NO_PKG_CONFIG 156s [gdk4-sys 0.9.5] cargo:rerun-if-env-changed=PKG_CONFIG_s390x-unknown-linux-gnu 156s [gdk4-sys 0.9.5] cargo:rerun-if-env-changed=PKG_CONFIG_s390x_unknown_linux_gnu 156s [gdk4-sys 0.9.5] cargo:rerun-if-env-changed=HOST_PKG_CONFIG 156s [gdk4-sys 0.9.5] cargo:rerun-if-env-changed=PKG_CONFIG 156s [gdk4-sys 0.9.5] cargo:rerun-if-env-changed=DEB_HOST_GNU_TYPE 156s [gdk4-sys 0.9.5] cargo:rerun-if-env-changed=PKG_CONFIG_PATH_s390x-unknown-linux-gnu 156s [gdk4-sys 0.9.5] cargo:rerun-if-env-changed=PKG_CONFIG_PATH_s390x_unknown_linux_gnu 156s [gdk4-sys 0.9.5] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_PATH 156s [gdk4-sys 0.9.5] cargo:rerun-if-env-changed=PKG_CONFIG_PATH 156s [gdk4-sys 0.9.5] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR_s390x-unknown-linux-gnu 156s [gdk4-sys 0.9.5] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR_s390x_unknown_linux_gnu 156s [gdk4-sys 0.9.5] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_LIBDIR 156s [gdk4-sys 0.9.5] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR 156s [gdk4-sys 0.9.5] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR_s390x-unknown-linux-gnu 156s [gdk4-sys 0.9.5] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR_s390x_unknown_linux_gnu 156s [gdk4-sys 0.9.5] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_SYSROOT_DIR 156s [gdk4-sys 0.9.5] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR 156s [gdk4-sys 0.9.5] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR 156s [gdk4-sys 0.9.5] cargo:rerun-if-env-changed=SYSROOT 156s [gdk4-sys 0.9.5] cargo:rerun-if-env-changed=PKG_CONFIG_s390x-unknown-linux-gnu 156s [gdk4-sys 0.9.5] cargo:rerun-if-env-changed=PKG_CONFIG_s390x_unknown_linux_gnu 156s [gdk4-sys 0.9.5] cargo:rerun-if-env-changed=HOST_PKG_CONFIG 156s [gdk4-sys 0.9.5] cargo:rerun-if-env-changed=PKG_CONFIG 156s [gdk4-sys 0.9.5] cargo:rerun-if-env-changed=DEB_HOST_GNU_TYPE 156s [gdk4-sys 0.9.5] cargo:rerun-if-env-changed=PKG_CONFIG_PATH_s390x-unknown-linux-gnu 156s [gdk4-sys 0.9.5] cargo:rerun-if-env-changed=PKG_CONFIG_PATH_s390x_unknown_linux_gnu 156s [gdk4-sys 0.9.5] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_PATH 156s [gdk4-sys 0.9.5] cargo:rerun-if-env-changed=PKG_CONFIG_PATH 156s [gdk4-sys 0.9.5] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR_s390x-unknown-linux-gnu 156s [gdk4-sys 0.9.5] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR_s390x_unknown_linux_gnu 156s [gdk4-sys 0.9.5] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_LIBDIR 156s [gdk4-sys 0.9.5] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR 156s [gdk4-sys 0.9.5] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR_s390x-unknown-linux-gnu 156s [gdk4-sys 0.9.5] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR_s390x_unknown_linux_gnu 156s [gdk4-sys 0.9.5] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_SYSROOT_DIR 156s [gdk4-sys 0.9.5] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR 156s [gdk4-sys 0.9.5] cargo:rustc-link-lib=gtk-4 156s [gdk4-sys 0.9.5] cargo:rustc-link-lib=pangocairo-1.0 156s [gdk4-sys 0.9.5] cargo:rustc-link-lib=pango-1.0 156s [gdk4-sys 0.9.5] cargo:rustc-link-lib=harfbuzz 156s [gdk4-sys 0.9.5] cargo:rustc-link-lib=gdk_pixbuf-2.0 156s [gdk4-sys 0.9.5] cargo:rustc-link-lib=cairo-gobject 156s [gdk4-sys 0.9.5] cargo:rustc-link-lib=cairo 156s [gdk4-sys 0.9.5] cargo:rustc-link-lib=vulkan 156s [gdk4-sys 0.9.5] cargo:rustc-link-lib=graphene-1.0 156s [gdk4-sys 0.9.5] cargo:rustc-link-lib=gio-2.0 156s [gdk4-sys 0.9.5] cargo:rustc-link-lib=gobject-2.0 156s [gdk4-sys 0.9.5] cargo:rustc-link-lib=glib-2.0 156s [gdk4-sys 0.9.5] cargo:include=/usr/include/gtk-4.0:/usr/include/pango-1.0:/usr/include:/usr/include/glib-2.0:/usr/lib/s390x-linux-gnu/glib-2.0/include:/usr/include/sysprof-6:/usr/include/harfbuzz:/usr/include/freetype2:/usr/include/libpng16:/usr/include/libmount:/usr/include/blkid:/usr/include/fribidi:/usr/include/cairo:/usr/include/pixman-1:/usr/include/gdk-pixbuf-2.0:/usr/include/s390x-linux-gnu:/usr/include/webp:/usr/include/graphene-1.0:/usr/lib/s390x-linux-gnu/graphene-1.0/include 156s [gdk4-sys 0.9.5] cargo:rerun-if-env-changed=SYSTEM_DEPS_BUILD_INTERNAL 156s [gdk4-sys 0.9.5] cargo:rerun-if-env-changed=SYSTEM_DEPS_LINK 156s [gdk4-sys 0.9.5] cargo:rerun-if-env-changed=SYSTEM_DEPS_GTK4_LIB 156s [gdk4-sys 0.9.5] cargo:rerun-if-env-changed=SYSTEM_DEPS_GTK4_LIB_FRAMEWORK 156s [gdk4-sys 0.9.5] cargo:rerun-if-env-changed=SYSTEM_DEPS_GTK4_SEARCH_NATIVE 156s [gdk4-sys 0.9.5] cargo:rerun-if-env-changed=SYSTEM_DEPS_GTK4_SEARCH_FRAMEWORK 156s [gdk4-sys 0.9.5] cargo:rerun-if-env-changed=SYSTEM_DEPS_GTK4_INCLUDE 156s [gdk4-sys 0.9.5] cargo:rerun-if-env-changed=SYSTEM_DEPS_GTK4_LDFLAGS 156s [gdk4-sys 0.9.5] cargo:rerun-if-env-changed=SYSTEM_DEPS_GTK4_NO_PKG_CONFIG 156s [gdk4-sys 0.9.5] cargo:rerun-if-env-changed=SYSTEM_DEPS_GTK4_BUILD_INTERNAL 156s [gdk4-sys 0.9.5] cargo:rerun-if-env-changed=SYSTEM_DEPS_GTK4_LINK 156s [gdk4-sys 0.9.5] 156s [gdk4-sys 0.9.5] cargo:rustc-cfg=system_deps_have_gtk4 156s [gdk4-sys 0.9.5] cargo:rerun-if-env-changed=PKG_CONFIG_s390x-unknown-linux-gnu 156s [gdk4-sys 0.9.5] cargo:rerun-if-env-changed=PKG_CONFIG_s390x_unknown_linux_gnu 156s [gdk4-sys 0.9.5] cargo:rerun-if-env-changed=HOST_PKG_CONFIG 156s [gdk4-sys 0.9.5] cargo:rerun-if-env-changed=PKG_CONFIG 156s [gdk4-sys 0.9.5] cargo:rerun-if-env-changed=DEB_HOST_GNU_TYPE 156s [gdk4-sys 0.9.5] cargo:rerun-if-env-changed=GTK4_STATIC 156s [gdk4-sys 0.9.5] cargo:rerun-if-env-changed=GTK4_DYNAMIC 156s [gdk4-sys 0.9.5] cargo:rerun-if-env-changed=PKG_CONFIG_ALL_STATIC 156s [gdk4-sys 0.9.5] cargo:rerun-if-env-changed=PKG_CONFIG_ALL_DYNAMIC 156s [gdk4-sys 0.9.5] cargo:rerun-if-env-changed=PKG_CONFIG_PATH_s390x-unknown-linux-gnu 156s [gdk4-sys 0.9.5] cargo:rerun-if-env-changed=PKG_CONFIG_PATH_s390x_unknown_linux_gnu 156s [gdk4-sys 0.9.5] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_PATH 156s [gdk4-sys 0.9.5] cargo:rerun-if-env-changed=PKG_CONFIG_PATH 156s [gdk4-sys 0.9.5] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR_s390x-unknown-linux-gnu 156s [gdk4-sys 0.9.5] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR_s390x_unknown_linux_gnu 156s [gdk4-sys 0.9.5] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_LIBDIR 156s [gdk4-sys 0.9.5] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR 156s [gdk4-sys 0.9.5] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR_s390x-unknown-linux-gnu 156s [gdk4-sys 0.9.5] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR_s390x_unknown_linux_gnu 156s [gdk4-sys 0.9.5] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_SYSROOT_DIR 156s [gdk4-sys 0.9.5] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR 156s [gdk4-sys 0.9.5] cargo:backends=broadway wayland x11 156s [gdk4-sys 0.9.5] cargo:rustc-cfg=gdk_backend="broadway" 156s [gdk4-sys 0.9.5] cargo:rustc-cfg=gdk_backend="wayland" 156s [gdk4-sys 0.9.5] cargo:rustc-cfg=gdk_backend="x11" 156s Compiling digest v0.10.7 156s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=digest CARGO_MANIFEST_DIR=/tmp/tmp.MZ13eKTYFc/registry/digest-0.10.7 CARGO_MANIFEST_PATH=/tmp/tmp.MZ13eKTYFc/registry/digest-0.10.7/Cargo.toml CARGO_PKG_AUTHORS='RustCrypto Developers' CARGO_PKG_DESCRIPTION='Traits for cryptographic hash functions and message authentication codes' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=digest CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/RustCrypto/traits' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.10.7 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=10 CARGO_PKG_VERSION_PATCH=7 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.MZ13eKTYFc/target/debug/deps rustc --crate-name digest --edition=2018 /tmp/tmp.MZ13eKTYFc/registry/digest-0.10.7/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="alloc"' --cfg 'feature="block-buffer"' --cfg 'feature="core-api"' --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "blobby", "block-buffer", "const-oid", "core-api", "default", "dev", "mac", "oid", "rand_core", "std", "subtle"))' -C metadata=027272cf65436a63 -C extra-filename=-027272cf65436a63 --out-dir /tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.MZ13eKTYFc/target/debug/deps --extern block_buffer=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/libblock_buffer-4cd3db619b1d8e9e.rmeta --extern crypto_common=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/libcrypto_common-77cd648c700afbb2.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.MZ13eKTYFc/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 156s warning: `digest` (lib) generated 1 warning (1 duplicate) 156s Compiling rand_chacha v0.3.1 156s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=rand_chacha CARGO_MANIFEST_DIR=/tmp/tmp.MZ13eKTYFc/registry/rand_chacha-0.3.1 CARGO_MANIFEST_PATH=/tmp/tmp.MZ13eKTYFc/registry/rand_chacha-0.3.1/Cargo.toml CARGO_PKG_AUTHORS='The Rand Project Developers:The Rust Project Developers:The CryptoCorrosion Contributors' CARGO_PKG_DESCRIPTION='ChaCha random number generator 156s ' CARGO_PKG_HOMEPAGE='https://rust-random.github.io/book' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=rand_chacha CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-random/rand' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.3.1 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.MZ13eKTYFc/target/debug/deps rustc --crate-name rand_chacha --edition=2018 /tmp/tmp.MZ13eKTYFc/registry/rand_chacha-0.3.1/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "serde", "serde1", "simd", "std"))' -C metadata=dd56c23de683d750 -C extra-filename=-dd56c23de683d750 --out-dir /tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.MZ13eKTYFc/target/debug/deps --extern ppv_lite86=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/libppv_lite86-57e5b566e2a71c09.rmeta --extern rand_core=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/librand_core-3c7246ca3f419bbc.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.MZ13eKTYFc/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 156s warning: `rand_chacha` (lib) generated 1 warning (1 duplicate) 156s Compiling polling v3.4.0 156s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=polling CARGO_MANIFEST_DIR=/tmp/tmp.MZ13eKTYFc/registry/polling-3.4.0 CARGO_MANIFEST_PATH=/tmp/tmp.MZ13eKTYFc/registry/polling-3.4.0/Cargo.toml CARGO_PKG_AUTHORS='Stjepan Glavina :John Nunley ' CARGO_PKG_DESCRIPTION='Portable interface to epoll, kqueue, event ports, and IOCP' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=polling CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/smol-rs/polling' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=3.4.0 CARGO_PKG_VERSION_MAJOR=3 CARGO_PKG_VERSION_MINOR=4 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.MZ13eKTYFc/target/debug/deps rustc --crate-name polling --edition=2021 /tmp/tmp.MZ13eKTYFc/registry/polling-3.4.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=8ea21ac6becc74d7 -C extra-filename=-8ea21ac6becc74d7 --out-dir /tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.MZ13eKTYFc/target/debug/deps --extern cfg_if=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/libcfg_if-ff3ff84a061de73f.rmeta --extern rustix=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/librustix-c5174677adcec892.rmeta --extern tracing=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/libtracing-5f8a2432d30b4ef1.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.MZ13eKTYFc/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 156s warning: unexpected `cfg` condition name: `polling_test_poll_backend` 156s --> /usr/share/cargo/registry/polling-3.4.0/src/lib.rs:954:9 156s | 156s 954 | not(polling_test_poll_backend), 156s | ^^^^^^^^^^^^^^^^^^^^^^^^^ 156s | 156s = help: expected names are: `clippy`, `debug_assertions`, `doc`, `docsrs`, `doctest`, `feature`, `fmt_debug`, `miri`, `overflow_checks`, `panic`, `proc_macro`, `relocation_model`, `rustfmt`, `sanitize`, `sanitizer_cfi_generalize_pointers`, `sanitizer_cfi_normalize_integers`, `target_abi`, `target_arch`, `target_endian`, `target_env`, `target_family`, `target_feature`, `target_has_atomic`, `target_has_atomic_equal_alignment`, `target_has_atomic_load_store`, `target_os`, `target_pointer_width`, `target_thread_local`, `target_vendor`, `test`, `ub_checks`, `unix`, and `windows` 156s = help: consider using a Cargo feature instead 156s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 156s [lints.rust] 156s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(polling_test_poll_backend)'] } 156s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(polling_test_poll_backend)");` to the top of the `build.rs` 156s = note: see for more information about checking conditional configuration 156s = note: `#[warn(unexpected_cfgs)]` on by default 156s 156s warning: unexpected `cfg` condition name: `polling_test_poll_backend` 156s --> /usr/share/cargo/registry/polling-3.4.0/src/lib.rs:80:14 156s | 156s 80 | if #[cfg(polling_test_poll_backend)] { 156s | ^^^^^^^^^^^^^^^^^^^^^^^^^ 156s | 156s = help: consider using a Cargo feature instead 156s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 156s [lints.rust] 156s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(polling_test_poll_backend)'] } 156s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(polling_test_poll_backend)");` to the top of the `build.rs` 156s = note: see for more information about checking conditional configuration 156s 156s warning: unexpected `cfg` condition name: `polling_test_epoll_pipe` 156s --> /usr/share/cargo/registry/polling-3.4.0/src/epoll.rs:404:18 156s | 156s 404 | if !cfg!(polling_test_epoll_pipe) { 156s | ^^^^^^^^^^^^^^^^^^^^^^^ 156s | 156s = help: consider using a Cargo feature instead 156s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 156s [lints.rust] 156s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(polling_test_epoll_pipe)'] } 156s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(polling_test_epoll_pipe)");` to the top of the `build.rs` 156s = note: see for more information about checking conditional configuration 156s 157s warning: unexpected `cfg` condition name: `polling_test_poll_backend` 157s --> /usr/share/cargo/registry/polling-3.4.0/src/os.rs:14:9 157s | 157s 14 | not(polling_test_poll_backend), 157s | ^^^^^^^^^^^^^^^^^^^^^^^^^ 157s | 157s = help: consider using a Cargo feature instead 157s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 157s [lints.rust] 157s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(polling_test_poll_backend)'] } 157s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(polling_test_poll_backend)");` to the top of the `build.rs` 157s = note: see for more information about checking conditional configuration 157s 157s warning: trait `PollerSealed` is never used 157s --> /usr/share/cargo/registry/polling-3.4.0/src/os.rs:23:15 157s | 157s 23 | pub trait PollerSealed {} 157s | ^^^^^^^^^^^^ 157s | 157s = note: `#[warn(dead_code)]` on by default 157s 157s warning: `polling` (lib) generated 6 warnings (1 duplicate) 157s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=memoffset CARGO_MANIFEST_DIR=/tmp/tmp.MZ13eKTYFc/registry/memoffset-0.8.0 CARGO_MANIFEST_PATH=/tmp/tmp.MZ13eKTYFc/registry/memoffset-0.8.0/Cargo.toml CARGO_PKG_AUTHORS='Gilad Naaman ' CARGO_PKG_DESCRIPTION='offset_of functionality for Rust structs.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=memoffset CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/Gilnaa/memoffset' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.8.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=8 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.MZ13eKTYFc/target/debug/deps OUT_DIR=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/build/memoffset-b32fed70cf81e31f/out rustc --crate-name memoffset --edition=2015 /tmp/tmp.MZ13eKTYFc/registry/memoffset-0.8.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "unstable_const"))' -C metadata=2f432c32070b84ca -C extra-filename=-2f432c32070b84ca --out-dir /tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.MZ13eKTYFc/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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.MZ13eKTYFc/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain --cfg tuple_ty --cfg allow_clippy --cfg maybe_uninit --cfg doctests --cfg raw_ref_macros --cfg stable_const` 157s warning: unexpected `cfg` condition name: `stable_const` 157s --> /usr/share/cargo/registry/memoffset-0.8.0/src/lib.rs:60:41 157s | 157s 60 | all(feature = "unstable_const", not(stable_const)), 157s | ^^^^^^^^^^^^ 157s | 157s = help: expected names are: `clippy`, `debug_assertions`, `doc`, `docsrs`, `doctest`, `feature`, `fmt_debug`, `miri`, `overflow_checks`, `panic`, `proc_macro`, `relocation_model`, `rustfmt`, `sanitize`, `sanitizer_cfi_generalize_pointers`, `sanitizer_cfi_normalize_integers`, `target_abi`, `target_arch`, `target_endian`, `target_env`, `target_family`, `target_feature`, `target_has_atomic`, `target_has_atomic_equal_alignment`, `target_has_atomic_load_store`, `target_os`, `target_pointer_width`, `target_thread_local`, `target_vendor`, `test`, `ub_checks`, `unix`, and `windows` 157s = help: consider using a Cargo feature instead 157s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 157s [lints.rust] 157s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(stable_const)'] } 157s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(stable_const)");` to the top of the `build.rs` 157s = note: see for more information about checking conditional configuration 157s = note: `#[warn(unexpected_cfgs)]` on by default 157s 157s warning: unexpected `cfg` condition name: `doctests` 157s --> /usr/share/cargo/registry/memoffset-0.8.0/src/lib.rs:66:7 157s | 157s 66 | #[cfg(doctests)] 157s | ^^^^^^^^ help: there is a config with a similar name: `doctest` 157s | 157s = help: consider using a Cargo feature instead 157s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 157s [lints.rust] 157s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doctests)'] } 157s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doctests)");` to the top of the `build.rs` 157s = note: see for more information about checking conditional configuration 157s 157s warning: unexpected `cfg` condition name: `doctests` 157s --> /usr/share/cargo/registry/memoffset-0.8.0/src/lib.rs:69:7 157s | 157s 69 | #[cfg(doctests)] 157s | ^^^^^^^^ help: there is a config with a similar name: `doctest` 157s | 157s = help: consider using a Cargo feature instead 157s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 157s [lints.rust] 157s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doctests)'] } 157s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doctests)");` to the top of the `build.rs` 157s = note: see for more information about checking conditional configuration 157s 157s warning: unexpected `cfg` condition name: `raw_ref_macros` 157s --> /usr/share/cargo/registry/memoffset-0.8.0/src/raw_field.rs:22:7 157s | 157s 22 | #[cfg(raw_ref_macros)] 157s | ^^^^^^^^^^^^^^ 157s | 157s = help: consider using a Cargo feature instead 157s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 157s [lints.rust] 157s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(raw_ref_macros)'] } 157s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(raw_ref_macros)");` to the top of the `build.rs` 157s = note: see for more information about checking conditional configuration 157s 157s warning: unexpected `cfg` condition name: `raw_ref_macros` 157s --> /usr/share/cargo/registry/memoffset-0.8.0/src/raw_field.rs:30:11 157s | 157s 30 | #[cfg(not(raw_ref_macros))] 157s | ^^^^^^^^^^^^^^ 157s | 157s = help: consider using a Cargo feature instead 157s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 157s [lints.rust] 157s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(raw_ref_macros)'] } 157s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(raw_ref_macros)");` to the top of the `build.rs` 157s = note: see for more information about checking conditional configuration 157s 157s warning: unexpected `cfg` condition name: `allow_clippy` 157s --> /usr/share/cargo/registry/memoffset-0.8.0/src/raw_field.rs:57:7 157s | 157s 57 | #[cfg(allow_clippy)] 157s | ^^^^^^^^^^^^ 157s | 157s = help: consider using a Cargo feature instead 157s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 157s [lints.rust] 157s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(allow_clippy)'] } 157s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(allow_clippy)");` to the top of the `build.rs` 157s = note: see for more information about checking conditional configuration 157s 157s warning: unexpected `cfg` condition name: `allow_clippy` 157s --> /usr/share/cargo/registry/memoffset-0.8.0/src/raw_field.rs:69:11 157s | 157s 69 | #[cfg(not(allow_clippy))] 157s | ^^^^^^^^^^^^ 157s | 157s = help: consider using a Cargo feature instead 157s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 157s [lints.rust] 157s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(allow_clippy)'] } 157s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(allow_clippy)");` to the top of the `build.rs` 157s = note: see for more information about checking conditional configuration 157s 157s warning: unexpected `cfg` condition name: `allow_clippy` 157s --> /usr/share/cargo/registry/memoffset-0.8.0/src/raw_field.rs:90:7 157s | 157s 90 | #[cfg(allow_clippy)] 157s | ^^^^^^^^^^^^ 157s | 157s = help: consider using a Cargo feature instead 157s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 157s [lints.rust] 157s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(allow_clippy)'] } 157s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(allow_clippy)");` to the top of the `build.rs` 157s = note: see for more information about checking conditional configuration 157s 157s warning: unexpected `cfg` condition name: `allow_clippy` 157s --> /usr/share/cargo/registry/memoffset-0.8.0/src/raw_field.rs:100:11 157s | 157s 100 | #[cfg(not(allow_clippy))] 157s | ^^^^^^^^^^^^ 157s | 157s = help: consider using a Cargo feature instead 157s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 157s [lints.rust] 157s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(allow_clippy)'] } 157s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(allow_clippy)");` to the top of the `build.rs` 157s = note: see for more information about checking conditional configuration 157s 157s warning: unexpected `cfg` condition name: `allow_clippy` 157s --> /usr/share/cargo/registry/memoffset-0.8.0/src/raw_field.rs:125:7 157s | 157s 125 | #[cfg(allow_clippy)] 157s | ^^^^^^^^^^^^ 157s | 157s = help: consider using a Cargo feature instead 157s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 157s [lints.rust] 157s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(allow_clippy)'] } 157s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(allow_clippy)");` to the top of the `build.rs` 157s = note: see for more information about checking conditional configuration 157s 157s warning: unexpected `cfg` condition name: `allow_clippy` 157s --> /usr/share/cargo/registry/memoffset-0.8.0/src/raw_field.rs:141:11 157s | 157s 141 | #[cfg(not(allow_clippy))] 157s | ^^^^^^^^^^^^ 157s | 157s = help: consider using a Cargo feature instead 157s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 157s [lints.rust] 157s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(allow_clippy)'] } 157s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(allow_clippy)");` to the top of the `build.rs` 157s = note: see for more information about checking conditional configuration 157s 157s warning: unexpected `cfg` condition name: `tuple_ty` 157s --> /usr/share/cargo/registry/memoffset-0.8.0/src/raw_field.rs:183:7 157s | 157s 183 | #[cfg(tuple_ty)] 157s | ^^^^^^^^ 157s | 157s = help: consider using a Cargo feature instead 157s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 157s [lints.rust] 157s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tuple_ty)'] } 157s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tuple_ty)");` to the top of the `build.rs` 157s = note: see for more information about checking conditional configuration 157s 157s warning: unexpected `cfg` condition name: `maybe_uninit` 157s --> /usr/share/cargo/registry/memoffset-0.8.0/src/offset_of.rs:23:7 157s | 157s 23 | #[cfg(maybe_uninit)] 157s | ^^^^^^^^^^^^ 157s | 157s = help: consider using a Cargo feature instead 157s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 157s [lints.rust] 157s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(maybe_uninit)'] } 157s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(maybe_uninit)");` to the top of the `build.rs` 157s = note: see for more information about checking conditional configuration 157s 157s warning: unexpected `cfg` condition name: `maybe_uninit` 157s --> /usr/share/cargo/registry/memoffset-0.8.0/src/offset_of.rs:37:11 157s | 157s 37 | #[cfg(not(maybe_uninit))] 157s | ^^^^^^^^^^^^ 157s | 157s = help: consider using a Cargo feature instead 157s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 157s [lints.rust] 157s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(maybe_uninit)'] } 157s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(maybe_uninit)");` to the top of the `build.rs` 157s = note: see for more information about checking conditional configuration 157s 157s warning: unexpected `cfg` condition name: `stable_const` 157s --> /usr/share/cargo/registry/memoffset-0.8.0/src/offset_of.rs:49:39 157s | 157s 49 | #[cfg(any(feature = "unstable_const", stable_const))] 157s | ^^^^^^^^^^^^ 157s | 157s = help: consider using a Cargo feature instead 157s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 157s [lints.rust] 157s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(stable_const)'] } 157s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(stable_const)");` to the top of the `build.rs` 157s = note: see for more information about checking conditional configuration 157s 157s warning: unexpected `cfg` condition name: `stable_const` 157s --> /usr/share/cargo/registry/memoffset-0.8.0/src/offset_of.rs:61:43 157s | 157s 61 | #[cfg(not(any(feature = "unstable_const", stable_const)))] 157s | ^^^^^^^^^^^^ 157s | 157s = help: consider using a Cargo feature instead 157s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 157s [lints.rust] 157s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(stable_const)'] } 157s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(stable_const)");` to the top of the `build.rs` 157s = note: see for more information about checking conditional configuration 157s 157s warning: unexpected `cfg` condition name: `tuple_ty` 157s --> /usr/share/cargo/registry/memoffset-0.8.0/src/offset_of.rs:121:7 157s | 157s 121 | #[cfg(tuple_ty)] 157s | ^^^^^^^^ 157s | 157s = help: consider using a Cargo feature instead 157s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 157s [lints.rust] 157s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tuple_ty)'] } 157s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tuple_ty)");` to the top of the `build.rs` 157s = note: see for more information about checking conditional configuration 157s 157s warning: `memoffset` (lib) generated 18 warnings (1 duplicate) 157s 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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0--remap-path-prefix/tmp/tmp.MZ13eKTYFc/registry=/usr/share/cargo/registry-Ctarget-feature=+backchain' CARGO_FEATURE_FEATURE=1 CARGO_FEATURE_MEMOFFSET=1 CARGO_FEATURE_SOCKET=1 CARGO_FEATURE_UIO=1 CARGO_FEATURE_USER=1 CARGO_MANIFEST_DIR=/tmp/tmp.MZ13eKTYFc/registry/nix-0.29.0 CARGO_MANIFEST_PATH=/tmp/tmp.MZ13eKTYFc/registry/nix-0.29.0/Cargo.toml CARGO_PKG_AUTHORS='The nix-rust Project Developers' CARGO_PKG_DESCRIPTION='Rust friendly bindings to *nix APIs' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=nix CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/nix-rust/nix' CARGO_PKG_RUST_VERSION=1.69 CARGO_PKG_VERSION=0.29.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=29 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' DEBUG=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.MZ13eKTYFc/target/debug/deps:/tmp/tmp.MZ13eKTYFc/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/build/nix-8065280fb097eaec/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.MZ13eKTYFc/target/debug/build/nix-9cc97a3a2fcb749b/build-script-build` 157s [nix 0.29.0] cargo:rustc-check-cfg=cfg(android) 157s [nix 0.29.0] cargo:rustc-check-cfg=cfg(dragonfly) 157s [nix 0.29.0] cargo:rustc-check-cfg=cfg(ios) 157s [nix 0.29.0] cargo:rustc-check-cfg=cfg(freebsd) 157s [nix 0.29.0] cargo:rustc-check-cfg=cfg(illumos) 157s [nix 0.29.0] cargo:rustc-check-cfg=cfg(linux) 157s [nix 0.29.0] cargo:rustc-cfg=linux 157s [nix 0.29.0] cargo:rustc-check-cfg=cfg(macos) 157s [nix 0.29.0] cargo:rustc-check-cfg=cfg(netbsd) 157s [nix 0.29.0] cargo:rustc-check-cfg=cfg(openbsd) 157s [nix 0.29.0] cargo:rustc-check-cfg=cfg(solaris) 157s [nix 0.29.0] cargo:rustc-check-cfg=cfg(watchos) 157s [nix 0.29.0] cargo:rustc-check-cfg=cfg(tvos) 157s [nix 0.29.0] cargo:rustc-check-cfg=cfg(visionos) 157s [nix 0.29.0] cargo:rustc-check-cfg=cfg(apple_targets) 157s [nix 0.29.0] cargo:rustc-check-cfg=cfg(bsd) 157s [nix 0.29.0] cargo:rustc-check-cfg=cfg(bsd_without_apple) 157s [nix 0.29.0] cargo:rustc-check-cfg=cfg(linux_android) 157s [nix 0.29.0] cargo:rustc-cfg=linux_android 157s [nix 0.29.0] cargo:rustc-check-cfg=cfg(freebsdlike) 157s [nix 0.29.0] cargo:rustc-check-cfg=cfg(netbsdlike) 157s [nix 0.29.0] cargo:rustc-check-cfg=cfg(solarish) 157s [nix 0.29.0] cargo:rustc-check-cfg=cfg(apple_targets) 157s [nix 0.29.0] cargo:rustc-check-cfg=cfg(bsd) 157s [nix 0.29.0] cargo:rustc-check-cfg=cfg(bsd_without_apple) 157s [nix 0.29.0] cargo:rustc-check-cfg=cfg(linux_android) 157s [nix 0.29.0] cargo:rustc-check-cfg=cfg(freebsdlike) 157s [nix 0.29.0] cargo:rustc-check-cfg=cfg(netbsdlike) 157s [nix 0.29.0] cargo:rustc-check-cfg=cfg(solarish) 157s [nix 0.29.0] cargo:rustc-check-cfg=cfg(fbsd14) 157s [nix 0.29.0] cargo:rustc-check-cfg=cfg(qemu) 157s Compiling mio v1.0.2 157s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=mio CARGO_MANIFEST_DIR=/tmp/tmp.MZ13eKTYFc/registry/mio-1.0.2 CARGO_MANIFEST_PATH=/tmp/tmp.MZ13eKTYFc/registry/mio-1.0.2/Cargo.toml CARGO_PKG_AUTHORS='Carl Lerche :Thomas de Zeeuw :Tokio Contributors ' CARGO_PKG_DESCRIPTION='Lightweight non-blocking I/O.' CARGO_PKG_HOMEPAGE='https://github.com/tokio-rs/mio' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=mio CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/tokio-rs/mio' CARGO_PKG_RUST_VERSION=1.70 CARGO_PKG_VERSION=1.0.2 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=2 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.MZ13eKTYFc/target/debug/deps rustc --crate-name mio --edition=2021 /tmp/tmp.MZ13eKTYFc/registry/mio-1.0.2/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --warn=unexpected_cfgs --check-cfg 'cfg(mio_unsupported_force_poll_poll)' --check-cfg 'cfg(mio_unsupported_force_waker_pipe)' --cfg 'feature="net"' --cfg 'feature="os-ext"' --cfg 'feature="os-poll"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "log", "net", "os-ext", "os-poll"))' -C metadata=85c9d41cef2d79b6 -C extra-filename=-85c9d41cef2d79b6 --out-dir /tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.MZ13eKTYFc/target/debug/deps --extern libc=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/liblibc-cf2521928ac070dc.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.MZ13eKTYFc/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 157s warning: `mio` (lib) generated 1 warning (1 duplicate) 157s Compiling signal-hook-registry v1.4.0 157s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=signal_hook_registry CARGO_MANIFEST_DIR=/tmp/tmp.MZ13eKTYFc/registry/signal-hook-registry-1.4.0 CARGO_MANIFEST_PATH=/tmp/tmp.MZ13eKTYFc/registry/signal-hook-registry-1.4.0/Cargo.toml CARGO_PKG_AUTHORS='Michal '\''vorner'\'' Vaner :Masaki Hara ' CARGO_PKG_DESCRIPTION='Backend crate for signal-hook' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=Apache-2.0/MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=signal-hook-registry CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/vorner/signal-hook' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=1.4.0 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=4 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.MZ13eKTYFc/target/debug/deps rustc --crate-name signal_hook_registry --edition=2015 /tmp/tmp.MZ13eKTYFc/registry/signal-hook-registry-1.4.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=e340db120477ee8e -C extra-filename=-e340db120477ee8e --out-dir /tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.MZ13eKTYFc/target/debug/deps --extern libc=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/liblibc-cf2521928ac070dc.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.MZ13eKTYFc/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 157s warning: creating a shared reference to mutable static is discouraged 157s --> /usr/share/cargo/registry/signal-hook-registry-1.4.0/src/lib.rs:281:18 157s | 157s 281 | unsafe { GLOBAL_DATA.as_ref().unwrap() } 157s | ^^^^^^^^^^^^^^^^^^^^ shared reference to mutable static 157s | 157s = note: for more information, see 157s = note: shared references to mutable statics are dangerous; it's undefined behavior if the static is mutated or if a mutable reference is created for it while the shared reference lives 157s = note: `#[warn(static_mut_refs)]` on by default 157s 158s warning: `signal-hook-registry` (lib) generated 2 warnings (1 duplicate) 158s Compiling socket2 v0.5.8 158s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=socket2 CARGO_MANIFEST_DIR=/tmp/tmp.MZ13eKTYFc/registry/socket2-0.5.8 CARGO_MANIFEST_PATH=/tmp/tmp.MZ13eKTYFc/registry/socket2-0.5.8/Cargo.toml CARGO_PKG_AUTHORS='Alex Crichton :Thomas de Zeeuw ' CARGO_PKG_DESCRIPTION='Utilities for handling networking sockets with a maximal amount of configuration 158s possible intended. 158s ' CARGO_PKG_HOMEPAGE='https://github.com/rust-lang/socket2' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=socket2 CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/socket2' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=0.5.8 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=5 CARGO_PKG_VERSION_PATCH=8 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.MZ13eKTYFc/target/debug/deps rustc --crate-name socket2 --edition=2021 /tmp/tmp.MZ13eKTYFc/registry/socket2-0.5.8/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="all"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("all"))' -C metadata=2e2923c434668665 -C extra-filename=-2e2923c434668665 --out-dir /tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.MZ13eKTYFc/target/debug/deps --extern libc=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/liblibc-cf2521928ac070dc.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.MZ13eKTYFc/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 158s warning: `socket2` (lib) generated 1 warning (1 duplicate) 158s Compiling bytes v1.9.0 158s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=bytes CARGO_MANIFEST_DIR=/tmp/tmp.MZ13eKTYFc/registry/bytes-1.9.0 CARGO_MANIFEST_PATH=/tmp/tmp.MZ13eKTYFc/registry/bytes-1.9.0/Cargo.toml CARGO_PKG_AUTHORS='Carl Lerche :Sean McArthur ' CARGO_PKG_DESCRIPTION='Types and traits for working with bytes' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=bytes CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/tokio-rs/bytes' CARGO_PKG_RUST_VERSION=1.39 CARGO_PKG_VERSION=1.9.0 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=9 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.MZ13eKTYFc/target/debug/deps rustc --crate-name bytes --edition=2018 /tmp/tmp.MZ13eKTYFc/registry/bytes-1.9.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "serde", "std"))' -C metadata=1253a2a76e7883bd -C extra-filename=-1253a2a76e7883bd --out-dir /tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.MZ13eKTYFc/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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.MZ13eKTYFc/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 159s warning: `bytes` (lib) generated 1 warning (1 duplicate) 159s Compiling tokio v1.43.0 159s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=tokio CARGO_MANIFEST_DIR=/tmp/tmp.MZ13eKTYFc/registry/tokio-1.43.0 CARGO_MANIFEST_PATH=/tmp/tmp.MZ13eKTYFc/registry/tokio-1.43.0/Cargo.toml CARGO_PKG_AUTHORS='Tokio Contributors ' CARGO_PKG_DESCRIPTION='An event-driven, non-blocking I/O platform for writing asynchronous I/O 159s backed applications. 159s ' CARGO_PKG_HOMEPAGE='https://tokio.rs' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=tokio CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/tokio-rs/tokio' CARGO_PKG_RUST_VERSION=1.70 CARGO_PKG_VERSION=1.43.0 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=43 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.MZ13eKTYFc/target/debug/deps rustc --crate-name tokio --edition=2021 /tmp/tmp.MZ13eKTYFc/registry/tokio-1.43.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="bytes"' --cfg 'feature="default"' --cfg 'feature="fs"' --cfg 'feature="io-util"' --cfg 'feature="libc"' --cfg 'feature="mio"' --cfg 'feature="net"' --cfg 'feature="process"' --cfg 'feature="rt"' --cfg 'feature="signal-hook-registry"' --cfg 'feature="socket2"' --cfg 'feature="sync"' --cfg 'feature="time"' --cfg 'feature="tracing"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("bytes", "default", "fs", "full", "io-std", "io-util", "libc", "macros", "mio", "net", "parking_lot", "process", "rt", "rt-multi-thread", "signal", "signal-hook-registry", "socket2", "sync", "test-util", "time", "tokio-macros", "tracing"))' -C metadata=f48697ab22907b1d -C extra-filename=-f48697ab22907b1d --out-dir /tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.MZ13eKTYFc/target/debug/deps --extern bytes=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/libbytes-1253a2a76e7883bd.rmeta --extern libc=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/liblibc-cf2521928ac070dc.rmeta --extern mio=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/libmio-85c9d41cef2d79b6.rmeta --extern pin_project_lite=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/libpin_project_lite-5dc815523e98d889.rmeta --extern signal_hook_registry=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/libsignal_hook_registry-e340db120477ee8e.rmeta --extern socket2=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/libsocket2-2e2923c434668665.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.MZ13eKTYFc/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 162s warning: `gio` (lib) generated 1 warning (1 duplicate) 162s Compiling pango v0.20.7 162s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=pango CARGO_MANIFEST_DIR=/tmp/tmp.MZ13eKTYFc/registry/pango-0.20.7 CARGO_MANIFEST_PATH=/tmp/tmp.MZ13eKTYFc/registry/pango-0.20.7/Cargo.toml CARGO_PKG_AUTHORS='The gtk-rs Project Developers' CARGO_PKG_DESCRIPTION='Rust bindings for the Pango library' CARGO_PKG_HOMEPAGE='https://gtk-rs.org/' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=pango CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/gtk-rs/gtk-rs-core' CARGO_PKG_RUST_VERSION=1.70 CARGO_PKG_VERSION=0.20.7 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=20 CARGO_PKG_VERSION_PATCH=7 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.MZ13eKTYFc/target/debug/deps rustc --crate-name pango --edition=2021 /tmp/tmp.MZ13eKTYFc/registry/pango-0.20.7/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="v1_42"' --cfg 'feature="v1_44"' --cfg 'feature="v1_46"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("v1_42", "v1_44", "v1_46", "v1_48", "v1_50", "v1_52", "v1_54", "v1_56"))' -C metadata=93e11624e526e3b0 -C extra-filename=-93e11624e526e3b0 --out-dir /tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.MZ13eKTYFc/target/debug/deps --extern gio=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/libgio-ecaee57cd4633445.rmeta --extern glib=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/libglib-ba3b7fdf202218f0.rmeta --extern libc=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/liblibc-cf2521928ac070dc.rmeta --extern pango_sys=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/libpango_sys-f907ef533c31ecd7.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.MZ13eKTYFc/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 164s warning: `tokio` (lib) generated 1 warning (1 duplicate) 164s Compiling gdk-pixbuf v0.20.7 164s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=gdk_pixbuf CARGO_MANIFEST_DIR=/tmp/tmp.MZ13eKTYFc/registry/gdk-pixbuf-0.20.7 CARGO_MANIFEST_PATH=/tmp/tmp.MZ13eKTYFc/registry/gdk-pixbuf-0.20.7/Cargo.toml CARGO_PKG_AUTHORS='The gtk-rs Project Developers' CARGO_PKG_DESCRIPTION='Rust bindings for the GdkPixbuf library' CARGO_PKG_HOMEPAGE='https://gtk-rs.org/' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=gdk-pixbuf CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/gtk-rs/gtk-rs-core' CARGO_PKG_RUST_VERSION=1.70 CARGO_PKG_VERSION=0.20.7 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=20 CARGO_PKG_VERSION_PATCH=7 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.MZ13eKTYFc/target/debug/deps rustc --crate-name gdk_pixbuf --edition=2021 /tmp/tmp.MZ13eKTYFc/registry/gdk-pixbuf-0.20.7/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("v2_40", "v2_42"))' -C metadata=21af3c2906e7fa2b -C extra-filename=-21af3c2906e7fa2b --out-dir /tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.MZ13eKTYFc/target/debug/deps --extern gdk_pixbuf_sys=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/libgdk_pixbuf_sys-2987b4ccc6a33d16.rmeta --extern gio=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/libgio-ecaee57cd4633445.rmeta --extern glib=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/libglib-ba3b7fdf202218f0.rmeta --extern libc=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/liblibc-cf2521928ac070dc.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.MZ13eKTYFc/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 165s warning: `gdk-pixbuf` (lib) generated 1 warning (1 duplicate) 165s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=nix CARGO_MANIFEST_DIR=/tmp/tmp.MZ13eKTYFc/registry/nix-0.29.0 CARGO_MANIFEST_PATH=/tmp/tmp.MZ13eKTYFc/registry/nix-0.29.0/Cargo.toml CARGO_PKG_AUTHORS='The nix-rust Project Developers' CARGO_PKG_DESCRIPTION='Rust friendly bindings to *nix APIs' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=nix CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/nix-rust/nix' CARGO_PKG_RUST_VERSION=1.69 CARGO_PKG_VERSION=0.29.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=29 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.MZ13eKTYFc/target/debug/deps OUT_DIR=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/build/nix-8065280fb097eaec/out rustc --crate-name nix --edition=2021 /tmp/tmp.MZ13eKTYFc/registry/nix-0.29.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="feature"' --cfg 'feature="memoffset"' --cfg 'feature="socket"' --cfg 'feature="uio"' --cfg 'feature="user"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("acct", "aio", "default", "dir", "env", "event", "fanotify", "feature", "fs", "hostname", "inotify", "ioctl", "kmod", "memoffset", "mman", "mount", "mqueue", "net", "personality", "pin-utils", "poll", "process", "pthread", "ptrace", "quota", "reboot", "resource", "sched", "signal", "socket", "term", "time", "ucontext", "uio", "user", "zerocopy"))' -C metadata=30ad0bf244578707 -C extra-filename=-30ad0bf244578707 --out-dir /tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.MZ13eKTYFc/target/debug/deps --extern bitflags=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/libbitflags-65f3f529c7b65778.rmeta --extern cfg_if=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/libcfg_if-ff3ff84a061de73f.rmeta --extern libc=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/liblibc-cf2521928ac070dc.rmeta --extern memoffset=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/libmemoffset-2f432c32070b84ca.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.MZ13eKTYFc/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain --cfg linux --cfg linux_android --check-cfg 'cfg(android)' --check-cfg 'cfg(dragonfly)' --check-cfg 'cfg(ios)' --check-cfg 'cfg(freebsd)' --check-cfg 'cfg(illumos)' --check-cfg 'cfg(linux)' --check-cfg 'cfg(macos)' --check-cfg 'cfg(netbsd)' --check-cfg 'cfg(openbsd)' --check-cfg 'cfg(solaris)' --check-cfg 'cfg(watchos)' --check-cfg 'cfg(tvos)' --check-cfg 'cfg(visionos)' --check-cfg 'cfg(apple_targets)' --check-cfg 'cfg(bsd)' --check-cfg 'cfg(bsd_without_apple)' --check-cfg 'cfg(linux_android)' --check-cfg 'cfg(freebsdlike)' --check-cfg 'cfg(netbsdlike)' --check-cfg 'cfg(solarish)' --check-cfg 'cfg(apple_targets)' --check-cfg 'cfg(bsd)' --check-cfg 'cfg(bsd_without_apple)' --check-cfg 'cfg(linux_android)' --check-cfg 'cfg(freebsdlike)' --check-cfg 'cfg(netbsdlike)' --check-cfg 'cfg(solarish)' --check-cfg 'cfg(fbsd14)' --check-cfg 'cfg(qemu)'` 165s warning: `pango` (lib) generated 1 warning (1 duplicate) 165s Compiling async-io v2.3.3 165s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=async_io CARGO_MANIFEST_DIR=/tmp/tmp.MZ13eKTYFc/registry/async-io-2.3.3 CARGO_MANIFEST_PATH=/tmp/tmp.MZ13eKTYFc/registry/async-io-2.3.3/Cargo.toml CARGO_PKG_AUTHORS='Stjepan Glavina ' CARGO_PKG_DESCRIPTION='Async I/O and timers' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=async-io CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/smol-rs/async-io' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=2.3.3 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=3 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.MZ13eKTYFc/target/debug/deps rustc --crate-name async_io --edition=2021 /tmp/tmp.MZ13eKTYFc/registry/async-io-2.3.3/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --warn=unexpected_cfgs --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=d311597b60c0a390 -C extra-filename=-d311597b60c0a390 --out-dir /tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.MZ13eKTYFc/target/debug/deps --extern async_lock=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/libasync_lock-ac8045c9d37e641a.rmeta --extern cfg_if=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/libcfg_if-ff3ff84a061de73f.rmeta --extern concurrent_queue=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/libconcurrent_queue-7e82393ecc7068db.rmeta --extern futures_io=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/libfutures_io-1a4387591f8b2b95.rmeta --extern futures_lite=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/libfutures_lite-b3966bcb93a5ad2f.rmeta --extern parking=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/libparking-0a38dc17b1bc33e2.rmeta --extern polling=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/libpolling-8ea21ac6becc74d7.rmeta --extern rustix=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/librustix-c5174677adcec892.rmeta --extern slab=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/libslab-36320af34be0827b.rmeta --extern tracing=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/libtracing-5f8a2432d30b4ef1.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.MZ13eKTYFc/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 165s warning: elided lifetime has a name 165s --> /usr/share/cargo/registry/nix-0.29.0/src/sys/socket/sockopt.rs:1577:34 165s | 165s 1576 | impl<'a> Set<'a, OsString> for SetOsString<'a> { 165s | -- lifetime `'a` declared here 165s 1577 | fn new(val: &'a OsString) -> SetOsString { 165s | ^^^^^^^^^^^ this elided lifetime gets resolved as `'a` 165s | 165s = note: `#[warn(elided_named_lifetimes)]` on by default 165s 165s warning: unexpected `cfg` condition name: `polling_test_poll_backend` 165s --> /usr/share/cargo/registry/async-io-2.3.3/src/os/unix.rs:60:17 165s | 165s 60 | not(polling_test_poll_backend), 165s | ^^^^^^^^^^^^^^^^^^^^^^^^^ 165s | 165s = help: expected names are: `clippy`, `debug_assertions`, `doc`, `docsrs`, `doctest`, `feature`, `fmt_debug`, `miri`, `overflow_checks`, `panic`, `proc_macro`, `relocation_model`, `rustfmt`, `sanitize`, `sanitizer_cfi_generalize_pointers`, `sanitizer_cfi_normalize_integers`, `target_abi`, `target_arch`, `target_endian`, `target_env`, `target_family`, `target_feature`, `target_has_atomic`, `target_has_atomic_equal_alignment`, `target_has_atomic_load_store`, `target_os`, `target_pointer_width`, `target_thread_local`, `target_vendor`, `test`, `ub_checks`, `unix`, and `windows` 165s = help: consider using a Cargo feature instead 165s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 165s [lints.rust] 165s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(polling_test_poll_backend)'] } 165s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(polling_test_poll_backend)");` to the top of the `build.rs` 165s = note: see for more information about checking conditional configuration 165s = note: requested on the command line with `-W unexpected-cfgs` 165s 165s warning: struct `GetU8` is never constructed 165s --> /usr/share/cargo/registry/nix-0.29.0/src/sys/socket/sockopt.rs:1441:8 165s | 165s 1441 | struct GetU8 { 165s | ^^^^^ 165s | 165s = note: `#[warn(dead_code)]` on by default 165s 165s warning: struct `SetU8` is never constructed 165s --> /usr/share/cargo/registry/nix-0.29.0/src/sys/socket/sockopt.rs:1473:8 165s | 166s 1473 | struct SetU8 { 166s | ^^^^^ 166s 166s warning: struct `GetCString` is never constructed 166s --> /usr/share/cargo/registry/nix-0.29.0/src/sys/socket/sockopt.rs:1593:8 166s | 166s 1593 | struct GetCString> { 166s | ^^^^^^^^^^ 166s 166s warning: `async-io` (lib) generated 2 warnings (1 duplicate) 166s Compiling rand v0.8.5 166s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=rand CARGO_MANIFEST_DIR=/tmp/tmp.MZ13eKTYFc/registry/rand-0.8.5 CARGO_MANIFEST_PATH=/tmp/tmp.MZ13eKTYFc/registry/rand-0.8.5/Cargo.toml CARGO_PKG_AUTHORS='The Rand Project Developers:The Rust Project Developers' CARGO_PKG_DESCRIPTION='Random number generators and other randomness functionality. 166s ' CARGO_PKG_HOMEPAGE='https://rust-random.github.io/book' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=rand CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-random/rand' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.8.5 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=8 CARGO_PKG_VERSION_PATCH=5 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.MZ13eKTYFc/target/debug/deps rustc --crate-name rand --edition=2018 /tmp/tmp.MZ13eKTYFc/registry/rand-0.8.5/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="alloc"' --cfg 'feature="default"' --cfg 'feature="getrandom"' --cfg 'feature="libc"' --cfg 'feature="rand_chacha"' --cfg 'feature="std"' --cfg 'feature="std_rng"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "default", "getrandom", "libc", "log", "min_const_gen", "nightly", "rand_chacha", "serde", "serde1", "small_rng", "std", "std_rng"))' -C metadata=da2a195293a4eb5f -C extra-filename=-da2a195293a4eb5f --out-dir /tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.MZ13eKTYFc/target/debug/deps --extern libc=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/liblibc-cf2521928ac070dc.rmeta --extern rand_chacha=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/librand_chacha-dd56c23de683d750.rmeta --extern rand_core=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/librand_core-3c7246ca3f419bbc.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.MZ13eKTYFc/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 166s warning: `nix` (lib) generated 5 warnings (1 duplicate) 166s Compiling sha1 v0.10.6 166s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=sha1 CARGO_MANIFEST_DIR=/tmp/tmp.MZ13eKTYFc/registry/sha1-0.10.6 CARGO_MANIFEST_PATH=/tmp/tmp.MZ13eKTYFc/registry/sha1-0.10.6/Cargo.toml CARGO_PKG_AUTHORS='RustCrypto Developers' CARGO_PKG_DESCRIPTION='SHA-1 hash function' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=sha1 CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/RustCrypto/hashes' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.10.6 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=10 CARGO_PKG_VERSION_PATCH=6 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.MZ13eKTYFc/target/debug/deps rustc --crate-name sha1 --edition=2018 /tmp/tmp.MZ13eKTYFc/registry/sha1-0.10.6/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("asm", "compress", "default", "force-soft", "loongarch64_asm", "oid", "sha1-asm", "std"))' -C metadata=7a229c14a1ac9b31 -C extra-filename=-7a229c14a1ac9b31 --out-dir /tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.MZ13eKTYFc/target/debug/deps --extern cfg_if=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/libcfg_if-ff3ff84a061de73f.rmeta --extern digest=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/libdigest-027272cf65436a63.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.MZ13eKTYFc/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 166s warning: unexpected `cfg` condition value: `simd_support` 166s --> /usr/share/cargo/registry/rand-0.8.5/src/lib.rs:52:13 166s | 166s 52 | #![cfg_attr(feature = "simd_support", feature(stdsimd))] 166s | ^^^^^^^^^^^^^^^^^^^^^^^^ 166s | 166s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 166s = help: consider adding `simd_support` as a feature in `Cargo.toml` 166s = note: see for more information about checking conditional configuration 166s = note: `#[warn(unexpected_cfgs)]` on by default 166s 166s warning: unexpected `cfg` condition name: `doc_cfg` 166s --> /usr/share/cargo/registry/rand-0.8.5/src/lib.rs:53:13 166s | 166s 53 | #![cfg_attr(doc_cfg, feature(doc_cfg))] 166s | ^^^^^^^ 166s | 166s = help: expected names are: `clippy`, `debug_assertions`, `doc`, `docsrs`, `doctest`, `feature`, `fmt_debug`, `miri`, `overflow_checks`, `panic`, `proc_macro`, `relocation_model`, `rustfmt`, `sanitize`, `sanitizer_cfi_generalize_pointers`, `sanitizer_cfi_normalize_integers`, `target_abi`, `target_arch`, `target_endian`, `target_env`, `target_family`, `target_feature`, `target_has_atomic`, `target_has_atomic_equal_alignment`, `target_has_atomic_load_store`, `target_os`, `target_pointer_width`, `target_thread_local`, `target_vendor`, `test`, `ub_checks`, `unix`, and `windows` 166s = help: consider using a Cargo feature instead 166s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 166s [lints.rust] 166s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 166s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 166s = note: see for more information about checking conditional configuration 166s 166s warning: unexpected `cfg` condition name: `doc_cfg` 166s --> /usr/share/cargo/registry/rand-0.8.5/src/lib.rs:181:12 166s | 166s 181 | #[cfg_attr(doc_cfg, doc(cfg(all(feature = "std", feature = "std_rng"))))] 166s | ^^^^^^^ 166s | 166s = help: consider using a Cargo feature instead 166s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 166s [lints.rust] 166s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 166s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 166s = note: see for more information about checking conditional configuration 166s 166s warning: unexpected `cfg` condition name: `doc_cfg` 166s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/mod.rs:116:12 166s | 166s 116 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 166s | ^^^^^^^ 166s | 166s = help: consider using a Cargo feature instead 166s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 166s [lints.rust] 166s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 166s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 166s = note: see for more information about checking conditional configuration 166s 166s warning: unexpected `cfg` condition name: `features` 166s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/distribution.rs:162:7 166s | 166s 162 | #[cfg(features = "nightly")] 166s | ^^^^^^^^^^^^^^^^^^^^ 166s | 166s = note: see for more information about checking conditional configuration 166s help: there is a config with a similar name and value 166s | 166s 162 | #[cfg(feature = "nightly")] 166s | ~~~~~~~ 166s 166s warning: unexpected `cfg` condition value: `simd_support` 166s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/float.rs:15:7 166s | 166s 15 | #[cfg(feature = "simd_support")] use packed_simd::*; 166s | ^^^^^^^^^^^^^^^^^^^^^^^^ 166s | 166s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 166s = help: consider adding `simd_support` as a feature in `Cargo.toml` 166s = note: see for more information about checking conditional configuration 166s 166s warning: unexpected `cfg` condition value: `simd_support` 166s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/float.rs:156:7 166s | 166s 156 | #[cfg(feature = "simd_support")] 166s | ^^^^^^^^^^^^^^^^^^^^^^^^ 166s | 166s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 166s = help: consider adding `simd_support` as a feature in `Cargo.toml` 166s = note: see for more information about checking conditional configuration 166s 166s warning: unexpected `cfg` condition value: `simd_support` 166s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/float.rs:158:7 166s | 166s 158 | #[cfg(feature = "simd_support")] 166s | ^^^^^^^^^^^^^^^^^^^^^^^^ 166s | 166s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 166s = help: consider adding `simd_support` as a feature in `Cargo.toml` 166s = note: see for more information about checking conditional configuration 166s 166s warning: unexpected `cfg` condition value: `simd_support` 166s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/float.rs:160:7 166s | 166s 160 | #[cfg(feature = "simd_support")] 166s | ^^^^^^^^^^^^^^^^^^^^^^^^ 166s | 166s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 166s = help: consider adding `simd_support` as a feature in `Cargo.toml` 166s = note: see for more information about checking conditional configuration 166s 166s warning: unexpected `cfg` condition value: `simd_support` 166s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/float.rs:162:7 166s | 166s 162 | #[cfg(feature = "simd_support")] 166s | ^^^^^^^^^^^^^^^^^^^^^^^^ 166s | 166s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 166s = help: consider adding `simd_support` as a feature in `Cargo.toml` 166s = note: see for more information about checking conditional configuration 166s 166s warning: unexpected `cfg` condition value: `simd_support` 166s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/float.rs:165:7 166s | 166s 165 | #[cfg(feature = "simd_support")] 166s | ^^^^^^^^^^^^^^^^^^^^^^^^ 166s | 166s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 166s = help: consider adding `simd_support` as a feature in `Cargo.toml` 166s = note: see for more information about checking conditional configuration 166s 166s warning: unexpected `cfg` condition value: `simd_support` 166s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/float.rs:167:7 166s | 166s 167 | #[cfg(feature = "simd_support")] 166s | ^^^^^^^^^^^^^^^^^^^^^^^^ 166s | 166s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 166s = help: consider adding `simd_support` as a feature in `Cargo.toml` 166s = note: see for more information about checking conditional configuration 166s 166s warning: unexpected `cfg` condition value: `simd_support` 166s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/float.rs:169:7 166s | 166s 169 | #[cfg(feature = "simd_support")] 166s | ^^^^^^^^^^^^^^^^^^^^^^^^ 166s | 166s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 166s = help: consider adding `simd_support` as a feature in `Cargo.toml` 166s = note: see for more information about checking conditional configuration 166s 166s warning: unexpected `cfg` condition value: `simd_support` 166s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/integer.rs:13:32 166s | 166s 13 | #[cfg(all(target_arch = "x86", feature = "simd_support"))] 166s | ^^^^^^^^^^^^^^^^^^^^^^^^ 166s | 166s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 166s = help: consider adding `simd_support` as a feature in `Cargo.toml` 166s = note: see for more information about checking conditional configuration 166s 166s warning: unexpected `cfg` condition value: `simd_support` 166s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/integer.rs:15:35 166s | 166s 15 | #[cfg(all(target_arch = "x86_64", feature = "simd_support"))] 166s | ^^^^^^^^^^^^^^^^^^^^^^^^ 166s | 166s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 166s = help: consider adding `simd_support` as a feature in `Cargo.toml` 166s = note: see for more information about checking conditional configuration 166s 166s warning: unexpected `cfg` condition value: `simd_support` 166s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/integer.rs:19:7 166s | 166s 19 | #[cfg(feature = "simd_support")] use packed_simd::*; 166s | ^^^^^^^^^^^^^^^^^^^^^^^^ 166s | 166s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 166s = help: consider adding `simd_support` as a feature in `Cargo.toml` 166s = note: see for more information about checking conditional configuration 166s 166s warning: unexpected `cfg` condition value: `simd_support` 166s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/integer.rs:112:7 166s | 166s 112 | #[cfg(feature = "simd_support")] 166s | ^^^^^^^^^^^^^^^^^^^^^^^^ 166s | 166s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 166s = help: consider adding `simd_support` as a feature in `Cargo.toml` 166s = note: see for more information about checking conditional configuration 166s 166s warning: unexpected `cfg` condition value: `simd_support` 166s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/integer.rs:142:7 166s | 166s 142 | #[cfg(feature = "simd_support")] 166s | ^^^^^^^^^^^^^^^^^^^^^^^^ 166s | 166s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 166s = help: consider adding `simd_support` as a feature in `Cargo.toml` 166s = note: see for more information about checking conditional configuration 166s 166s warning: unexpected `cfg` condition value: `simd_support` 166s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/integer.rs:144:7 166s | 166s 144 | #[cfg(feature = "simd_support")] 166s | ^^^^^^^^^^^^^^^^^^^^^^^^ 166s | 166s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 166s = help: consider adding `simd_support` as a feature in `Cargo.toml` 166s = note: see for more information about checking conditional configuration 166s 166s warning: unexpected `cfg` condition value: `simd_support` 166s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/integer.rs:146:7 166s | 166s 146 | #[cfg(feature = "simd_support")] 166s | ^^^^^^^^^^^^^^^^^^^^^^^^ 166s | 166s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 166s = help: consider adding `simd_support` as a feature in `Cargo.toml` 166s = note: see for more information about checking conditional configuration 166s 166s warning: unexpected `cfg` condition value: `simd_support` 166s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/integer.rs:148:7 166s | 166s 148 | #[cfg(feature = "simd_support")] 166s | ^^^^^^^^^^^^^^^^^^^^^^^^ 166s | 166s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 166s = help: consider adding `simd_support` as a feature in `Cargo.toml` 166s = note: see for more information about checking conditional configuration 166s 166s warning: unexpected `cfg` condition value: `simd_support` 166s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/integer.rs:150:7 166s | 166s 150 | #[cfg(feature = "simd_support")] 166s | ^^^^^^^^^^^^^^^^^^^^^^^^ 166s | 166s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 166s = help: consider adding `simd_support` as a feature in `Cargo.toml` 166s = note: see for more information about checking conditional configuration 166s 166s warning: unexpected `cfg` condition value: `simd_support` 166s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/integer.rs:152:7 166s | 166s 152 | #[cfg(feature = "simd_support")] 166s | ^^^^^^^^^^^^^^^^^^^^^^^^ 166s | 166s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 166s = help: consider adding `simd_support` as a feature in `Cargo.toml` 166s = note: see for more information about checking conditional configuration 166s 166s warning: unexpected `cfg` condition value: `simd_support` 166s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/integer.rs:155:5 166s | 166s 155 | feature = "simd_support", 166s | ^^^^^^^^^^^^^^^^^^^^^^^^ 166s | 166s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 166s = help: consider adding `simd_support` as a feature in `Cargo.toml` 166s = note: see for more information about checking conditional configuration 166s 166s warning: unexpected `cfg` condition value: `simd_support` 166s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:11:7 166s | 166s 11 | #[cfg(feature = "simd_support")] use packed_simd::*; 166s | ^^^^^^^^^^^^^^^^^^^^^^^^ 166s | 166s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 166s = help: consider adding `simd_support` as a feature in `Cargo.toml` 166s = note: see for more information about checking conditional configuration 166s 166s warning: unexpected `cfg` condition value: `simd_support` 166s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:144:7 166s | 166s 144 | #[cfg(feature = "simd_support")] 166s | ^^^^^^^^^^^^^^^^^^^^^^^^ 166s | 166s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 166s = help: consider adding `simd_support` as a feature in `Cargo.toml` 166s = note: see for more information about checking conditional configuration 166s 166s warning: unexpected `cfg` condition name: `std` 166s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:235:11 166s | 166s 235 | #[cfg(not(std))] 166s | ^^^ help: found config with similar value: `feature = "std"` 166s | 166s = help: consider using a Cargo feature instead 166s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 166s [lints.rust] 166s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(std)'] } 166s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(std)");` to the top of the `build.rs` 166s = note: see for more information about checking conditional configuration 166s 166s warning: unexpected `cfg` condition value: `simd_support` 166s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:363:7 166s | 166s 363 | #[cfg(feature = "simd_support")] 166s | ^^^^^^^^^^^^^^^^^^^^^^^^ 166s | 166s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 166s = help: consider adding `simd_support` as a feature in `Cargo.toml` 166s = note: see for more information about checking conditional configuration 166s 166s warning: unexpected `cfg` condition value: `simd_support` 166s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:423:7 166s | 166s 423 | #[cfg(feature="simd_support")] simd_impl! { f32x2, f32, m32x2, u32x2 } 166s | ^^^^^^^^^^^^^^^^^^^^^^ 166s | 166s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 166s = help: consider adding `simd_support` as a feature in `Cargo.toml` 166s = note: see for more information about checking conditional configuration 166s 166s warning: unexpected `cfg` condition value: `simd_support` 166s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:424:7 166s | 166s 424 | #[cfg(feature="simd_support")] simd_impl! { f32x4, f32, m32x4, u32x4 } 166s | ^^^^^^^^^^^^^^^^^^^^^^ 166s | 166s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 166s = help: consider adding `simd_support` as a feature in `Cargo.toml` 166s = note: see for more information about checking conditional configuration 166s 166s warning: unexpected `cfg` condition value: `simd_support` 166s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:425:7 166s | 166s 425 | #[cfg(feature="simd_support")] simd_impl! { f32x8, f32, m32x8, u32x8 } 166s | ^^^^^^^^^^^^^^^^^^^^^^ 166s | 166s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 166s = help: consider adding `simd_support` as a feature in `Cargo.toml` 166s = note: see for more information about checking conditional configuration 166s 166s warning: unexpected `cfg` condition value: `simd_support` 166s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:426:7 166s | 166s 426 | #[cfg(feature="simd_support")] simd_impl! { f32x16, f32, m32x16, u32x16 } 166s | ^^^^^^^^^^^^^^^^^^^^^^ 166s | 166s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 166s = help: consider adding `simd_support` as a feature in `Cargo.toml` 166s = note: see for more information about checking conditional configuration 166s 166s warning: unexpected `cfg` condition value: `simd_support` 166s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:427:7 166s | 166s 427 | #[cfg(feature="simd_support")] simd_impl! { f64x2, f64, m64x2, u64x2 } 166s | ^^^^^^^^^^^^^^^^^^^^^^ 166s | 166s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 166s = help: consider adding `simd_support` as a feature in `Cargo.toml` 166s = note: see for more information about checking conditional configuration 166s 166s warning: unexpected `cfg` condition value: `simd_support` 166s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:428:7 166s | 166s 428 | #[cfg(feature="simd_support")] simd_impl! { f64x4, f64, m64x4, u64x4 } 166s | ^^^^^^^^^^^^^^^^^^^^^^ 166s | 166s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 166s = help: consider adding `simd_support` as a feature in `Cargo.toml` 166s = note: see for more information about checking conditional configuration 166s 166s warning: unexpected `cfg` condition value: `simd_support` 166s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:429:7 166s | 166s 429 | #[cfg(feature="simd_support")] simd_impl! { f64x8, f64, m64x8, u64x8 } 166s | ^^^^^^^^^^^^^^^^^^^^^^ 166s | 166s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 166s = help: consider adding `simd_support` as a feature in `Cargo.toml` 166s = note: see for more information about checking conditional configuration 166s 166s warning: unexpected `cfg` condition name: `std` 166s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:291:19 166s | 166s 291 | #[cfg(not(std))] 166s | ^^^ help: found config with similar value: `feature = "std"` 166s ... 166s 359 | scalar_float_impl!(f32, u32); 166s | ---------------------------- in this macro invocation 166s | 166s = help: consider using a Cargo feature instead 166s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 166s [lints.rust] 166s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(std)'] } 166s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(std)");` to the top of the `build.rs` 166s = note: see for more information about checking conditional configuration 166s = note: this warning originates in the macro `scalar_float_impl` (in Nightly builds, run with -Z macro-backtrace for more info) 166s 166s warning: unexpected `cfg` condition name: `std` 166s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:291:19 166s | 166s 291 | #[cfg(not(std))] 166s | ^^^ help: found config with similar value: `feature = "std"` 166s ... 166s 360 | scalar_float_impl!(f64, u64); 166s | ---------------------------- in this macro invocation 166s | 166s = help: consider using a Cargo feature instead 166s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 166s [lints.rust] 166s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(std)'] } 166s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(std)");` to the top of the `build.rs` 166s = note: see for more information about checking conditional configuration 166s = note: this warning originates in the macro `scalar_float_impl` (in Nightly builds, run with -Z macro-backtrace for more info) 166s 166s warning: unexpected `cfg` condition name: `doc_cfg` 166s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/weighted_index.rs:80:12 166s | 166s 80 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 166s | ^^^^^^^ 166s | 166s = help: consider using a Cargo feature instead 166s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 166s [lints.rust] 166s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 166s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 166s = note: see for more information about checking conditional configuration 166s 166s warning: unexpected `cfg` condition name: `doc_cfg` 166s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/weighted_index.rs:429:12 166s | 166s 429 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 166s | ^^^^^^^ 166s | 166s = help: consider using a Cargo feature instead 166s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 166s [lints.rust] 166s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 166s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 166s = note: see for more information about checking conditional configuration 166s 166s warning: unexpected `cfg` condition value: `simd_support` 166s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/uniform.rs:121:7 166s | 166s 121 | #[cfg(feature = "simd_support")] use packed_simd::*; 166s | ^^^^^^^^^^^^^^^^^^^^^^^^ 166s | 166s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 166s = help: consider adding `simd_support` as a feature in `Cargo.toml` 166s = note: see for more information about checking conditional configuration 166s 166s warning: unexpected `cfg` condition value: `simd_support` 166s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/uniform.rs:572:7 166s | 166s 572 | #[cfg(feature = "simd_support")] 166s | ^^^^^^^^^^^^^^^^^^^^^^^^ 166s | 166s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 166s = help: consider adding `simd_support` as a feature in `Cargo.toml` 166s = note: see for more information about checking conditional configuration 166s 166s warning: unexpected `cfg` condition value: `simd_support` 166s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/uniform.rs:679:7 166s | 166s 679 | #[cfg(feature = "simd_support")] 166s | ^^^^^^^^^^^^^^^^^^^^^^^^ 166s | 166s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 166s = help: consider adding `simd_support` as a feature in `Cargo.toml` 166s = note: see for more information about checking conditional configuration 166s 166s warning: unexpected `cfg` condition value: `simd_support` 166s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/uniform.rs:687:7 166s | 166s 687 | #[cfg(feature = "simd_support")] 166s | ^^^^^^^^^^^^^^^^^^^^^^^^ 166s | 166s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 166s = help: consider adding `simd_support` as a feature in `Cargo.toml` 166s = note: see for more information about checking conditional configuration 166s 166s warning: unexpected `cfg` condition value: `simd_support` 166s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/uniform.rs:696:7 166s | 166s 696 | #[cfg(feature = "simd_support")] 166s | ^^^^^^^^^^^^^^^^^^^^^^^^ 166s | 166s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 166s = help: consider adding `simd_support` as a feature in `Cargo.toml` 166s = note: see for more information about checking conditional configuration 166s 166s warning: unexpected `cfg` condition value: `simd_support` 166s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/uniform.rs:706:7 166s | 166s 706 | #[cfg(feature = "simd_support")] 166s | ^^^^^^^^^^^^^^^^^^^^^^^^ 166s | 166s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 166s = help: consider adding `simd_support` as a feature in `Cargo.toml` 166s = note: see for more information about checking conditional configuration 166s 166s warning: unexpected `cfg` condition value: `simd_support` 166s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/uniform.rs:1001:7 166s | 166s 1001 | #[cfg(feature = "simd_support")] 166s | ^^^^^^^^^^^^^^^^^^^^^^^^ 166s | 166s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 166s = help: consider adding `simd_support` as a feature in `Cargo.toml` 166s = note: see for more information about checking conditional configuration 166s 166s warning: unexpected `cfg` condition value: `simd_support` 166s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/uniform.rs:1003:7 166s | 166s 1003 | #[cfg(feature = "simd_support")] 166s | ^^^^^^^^^^^^^^^^^^^^^^^^ 166s | 166s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 166s = help: consider adding `simd_support` as a feature in `Cargo.toml` 166s = note: see for more information about checking conditional configuration 166s 166s warning: unexpected `cfg` condition value: `simd_support` 166s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/uniform.rs:1005:7 166s | 166s 1005 | #[cfg(feature = "simd_support")] 166s | ^^^^^^^^^^^^^^^^^^^^^^^^ 166s | 166s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 166s = help: consider adding `simd_support` as a feature in `Cargo.toml` 166s = note: see for more information about checking conditional configuration 166s 166s warning: unexpected `cfg` condition value: `simd_support` 166s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/uniform.rs:1007:7 166s | 166s 1007 | #[cfg(feature = "simd_support")] 166s | ^^^^^^^^^^^^^^^^^^^^^^^^ 166s | 166s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 166s = help: consider adding `simd_support` as a feature in `Cargo.toml` 166s = note: see for more information about checking conditional configuration 166s 166s warning: unexpected `cfg` condition value: `simd_support` 166s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/uniform.rs:1010:7 166s | 166s 1010 | #[cfg(feature = "simd_support")] 166s | ^^^^^^^^^^^^^^^^^^^^^^^^ 166s | 166s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 166s = help: consider adding `simd_support` as a feature in `Cargo.toml` 166s = note: see for more information about checking conditional configuration 166s 166s warning: unexpected `cfg` condition value: `simd_support` 166s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/uniform.rs:1012:7 166s | 166s 1012 | #[cfg(feature = "simd_support")] 166s | ^^^^^^^^^^^^^^^^^^^^^^^^ 166s | 166s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 166s = help: consider adding `simd_support` as a feature in `Cargo.toml` 166s = note: see for more information about checking conditional configuration 166s 166s warning: unexpected `cfg` condition value: `simd_support` 166s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/uniform.rs:1014:7 166s | 166s 1014 | #[cfg(feature = "simd_support")] 166s | ^^^^^^^^^^^^^^^^^^^^^^^^ 166s | 166s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 166s = help: consider adding `simd_support` as a feature in `Cargo.toml` 166s = note: see for more information about checking conditional configuration 166s 166s warning: unexpected `cfg` condition name: `doc_cfg` 166s --> /usr/share/cargo/registry/rand-0.8.5/src/rng.rs:395:12 166s | 166s 395 | #[cfg_attr(doc_cfg, doc(cfg(feature = "min_const_gen")))] 166s | ^^^^^^^ 166s | 166s = help: consider using a Cargo feature instead 166s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 166s [lints.rust] 166s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 166s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 166s = note: see for more information about checking conditional configuration 166s 166s warning: unexpected `cfg` condition name: `doc_cfg` 166s --> /usr/share/cargo/registry/rand-0.8.5/src/rngs/mod.rs:99:12 166s | 166s 99 | #[cfg_attr(doc_cfg, doc(cfg(feature = "std")))] 166s | ^^^^^^^ 166s | 166s = help: consider using a Cargo feature instead 166s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 166s [lints.rust] 166s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 166s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 166s = note: see for more information about checking conditional configuration 166s 166s warning: unexpected `cfg` condition name: `doc_cfg` 166s --> /usr/share/cargo/registry/rand-0.8.5/src/rngs/mod.rs:118:12 166s | 166s 118 | #[cfg_attr(doc_cfg, doc(cfg(feature = "getrandom")))] 166s | ^^^^^^^ 166s | 166s = help: consider using a Cargo feature instead 166s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 166s [lints.rust] 166s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 166s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 166s = note: see for more information about checking conditional configuration 166s 166s warning: unexpected `cfg` condition name: `doc_cfg` 166s --> /usr/share/cargo/registry/rand-0.8.5/src/rngs/std.rs:32:12 166s | 166s 32 | #[cfg_attr(doc_cfg, doc(cfg(feature = "std_rng")))] 166s | ^^^^^^^ 166s | 166s = help: consider using a Cargo feature instead 166s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 166s [lints.rust] 166s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 166s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 166s = note: see for more information about checking conditional configuration 166s 166s warning: unexpected `cfg` condition name: `doc_cfg` 166s --> /usr/share/cargo/registry/rand-0.8.5/src/rngs/thread.rs:60:12 166s | 166s 60 | #[cfg_attr(doc_cfg, doc(cfg(all(feature = "std", feature = "std_rng"))))] 166s | ^^^^^^^ 166s | 166s = help: consider using a Cargo feature instead 166s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 166s [lints.rust] 166s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 166s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 166s = note: see for more information about checking conditional configuration 166s 166s warning: unexpected `cfg` condition name: `doc_cfg` 166s --> /usr/share/cargo/registry/rand-0.8.5/src/rngs/thread.rs:87:12 166s | 166s 87 | #[cfg_attr(doc_cfg, doc(cfg(all(feature = "std", feature = "std_rng"))))] 166s | ^^^^^^^ 166s | 166s = help: consider using a Cargo feature instead 166s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 166s [lints.rust] 166s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 166s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 166s = note: see for more information about checking conditional configuration 166s 166s warning: unexpected `cfg` condition name: `doc_cfg` 166s --> /usr/share/cargo/registry/rand-0.8.5/src/seq/mod.rs:29:12 166s | 166s 29 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 166s | ^^^^^^^ 166s | 166s = help: consider using a Cargo feature instead 166s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 166s [lints.rust] 166s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 166s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 166s = note: see for more information about checking conditional configuration 166s 166s warning: unexpected `cfg` condition name: `doc_cfg` 166s --> /usr/share/cargo/registry/rand-0.8.5/src/seq/mod.rs:623:12 166s | 166s 623 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 166s | ^^^^^^^ 166s | 166s = help: consider using a Cargo feature instead 166s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 166s [lints.rust] 166s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 166s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 166s = note: see for more information about checking conditional configuration 166s 166s warning: unexpected `cfg` condition name: `doc_cfg` 166s --> /usr/share/cargo/registry/rand-0.8.5/src/seq/index.rs:276:12 166s | 166s 276 | #[cfg_attr(doc_cfg, doc(cfg(feature = "std")))] 166s | ^^^^^^^ 166s | 166s = help: consider using a Cargo feature instead 166s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 166s [lints.rust] 166s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 166s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 166s = note: see for more information about checking conditional configuration 166s 166s warning: unexpected `cfg` condition name: `doc_cfg` 166s --> /usr/share/cargo/registry/rand-0.8.5/src/seq/mod.rs:114:16 166s | 166s 114 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 166s | ^^^^^^^ 166s | 166s = help: consider using a Cargo feature instead 166s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 166s [lints.rust] 166s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 166s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 166s = note: see for more information about checking conditional configuration 166s 166s warning: unexpected `cfg` condition name: `doc_cfg` 166s --> /usr/share/cargo/registry/rand-0.8.5/src/seq/mod.rs:142:16 166s | 166s 142 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 166s | ^^^^^^^ 166s | 166s = help: consider using a Cargo feature instead 166s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 166s [lints.rust] 166s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 166s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 166s = note: see for more information about checking conditional configuration 166s 166s warning: unexpected `cfg` condition name: `doc_cfg` 166s --> /usr/share/cargo/registry/rand-0.8.5/src/seq/mod.rs:170:16 166s | 166s 170 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 166s | ^^^^^^^ 166s | 166s = help: consider using a Cargo feature instead 166s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 166s [lints.rust] 166s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 166s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 166s = note: see for more information about checking conditional configuration 166s 166s warning: unexpected `cfg` condition name: `doc_cfg` 166s --> /usr/share/cargo/registry/rand-0.8.5/src/seq/mod.rs:219:16 166s | 166s 219 | #[cfg_attr(doc_cfg, doc(cfg(feature = "std")))] 166s | ^^^^^^^ 166s | 166s = help: consider using a Cargo feature instead 166s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 166s [lints.rust] 166s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 166s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 166s = note: see for more information about checking conditional configuration 166s 166s warning: unexpected `cfg` condition name: `doc_cfg` 166s --> /usr/share/cargo/registry/rand-0.8.5/src/seq/mod.rs:465:16 166s | 166s 465 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 166s | ^^^^^^^ 166s | 166s = help: consider using a Cargo feature instead 166s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 166s [lints.rust] 166s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 166s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 166s = note: see for more information about checking conditional configuration 166s 166s warning: `sha1` (lib) generated 1 warning (1 duplicate) 166s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=gdk4_sys CARGO_MANIFEST_DIR=/tmp/tmp.MZ13eKTYFc/registry/gdk4-sys-0.9.5 CARGO_MANIFEST_PATH=/tmp/tmp.MZ13eKTYFc/registry/gdk4-sys-0.9.5/Cargo.toml CARGO_PKG_AUTHORS='The gtk-rs Project Developers' CARGO_PKG_DESCRIPTION='FFI bindings of GDK 4' CARGO_PKG_HOMEPAGE='https://gtk-rs.org/gtk4-rs' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=gdk4-sys CARGO_PKG_README='' CARGO_PKG_REPOSITORY='https://github.com/gtk-rs/gtk4-rs' CARGO_PKG_RUST_VERSION=1.70 CARGO_PKG_VERSION=0.9.5 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=9 CARGO_PKG_VERSION_PATCH=5 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.MZ13eKTYFc/target/debug/deps OUT_DIR=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/build/gdk4-sys-65ec9daac5947938/out rustc --crate-name gdk4_sys --edition=2021 /tmp/tmp.MZ13eKTYFc/registry/gdk4-sys-0.9.5/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="v4_10"' --cfg 'feature="v4_2"' --cfg 'feature="v4_4"' --cfg 'feature="v4_6"' --cfg 'feature="v4_8"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("v4_10", "v4_12", "v4_14", "v4_16", "v4_18", "v4_2", "v4_4", "v4_6", "v4_8"))' -C metadata=e0663cad72b17ddd -C extra-filename=-e0663cad72b17ddd --out-dir /tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.MZ13eKTYFc/target/debug/deps --extern cairo_sys=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/libcairo_sys-4612600e92f34c6c.rmeta --extern gdk_pixbuf_sys=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/libgdk_pixbuf_sys-2987b4ccc6a33d16.rmeta --extern gio_sys=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/libgio_sys-09c58e200e125269.rmeta --extern glib_sys=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/libglib_sys-8d7612a6c3ae820a.rmeta --extern gobject_sys=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/libgobject_sys-c41d1b14aec65cc2.rmeta --extern libc=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/liblibc-cf2521928ac070dc.rmeta --extern pango_sys=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/libpango_sys-f907ef533c31ecd7.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.MZ13eKTYFc/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain -l gtk-4 -l pangocairo-1.0 -l pango-1.0 -l harfbuzz -l gdk_pixbuf-2.0 -l cairo-gobject -l cairo -l vulkan -l graphene-1.0 -l gio-2.0 -l gobject-2.0 -l glib-2.0 --cfg system_deps_have_gtk4 --cfg 'gdk_backend="broadway"' --cfg 'gdk_backend="wayland"' --cfg 'gdk_backend="x11"'` 166s warning: `gdk4-sys` (lib) generated 1 warning (1 duplicate) 166s Compiling zbus_names v3.0.0 166s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=zbus_names CARGO_MANIFEST_DIR=/tmp/tmp.MZ13eKTYFc/registry/zbus_names-3.0.0 CARGO_MANIFEST_PATH=/tmp/tmp.MZ13eKTYFc/registry/zbus_names-3.0.0/Cargo.toml CARGO_PKG_AUTHORS='Zeeshan Ali Khan ' CARGO_PKG_DESCRIPTION='A collection of D-Bus bus names types' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=zbus_names CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dbus2/zbus/' CARGO_PKG_RUST_VERSION=1.75 CARGO_PKG_VERSION=3.0.0 CARGO_PKG_VERSION_MAJOR=3 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.MZ13eKTYFc/target/debug/deps rustc --crate-name zbus_names --edition=2021 /tmp/tmp.MZ13eKTYFc/registry/zbus_names-3.0.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=e138813c02d4cbaa -C extra-filename=-e138813c02d4cbaa --out-dir /tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.MZ13eKTYFc/target/debug/deps --extern serde=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/libserde-0e7dff716e38da0d.rmeta --extern static_assertions=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/libstatic_assertions-18df01cc327facaa.rmeta --extern zvariant=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/libzvariant-7b45eb8446d33c11.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.MZ13eKTYFc/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 166s warning: trait `Float` is never used 166s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:238:18 166s | 166s 238 | pub(crate) trait Float: Sized { 166s | ^^^^^ 166s | 166s = note: `#[warn(dead_code)]` on by default 166s 166s warning: associated items `lanes`, `extract`, and `replace` are never used 166s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:247:8 166s | 166s 245 | pub(crate) trait FloatAsSIMD: Sized { 166s | ----------- associated items in this trait 166s 246 | #[inline(always)] 166s 247 | fn lanes() -> usize { 166s | ^^^^^ 166s ... 166s 255 | fn extract(self, index: usize) -> Self { 166s | ^^^^^^^ 166s ... 166s 260 | fn replace(self, index: usize, new_value: Self) -> Self { 166s | ^^^^^^^ 166s 166s warning: method `all` is never used 166s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:268:8 166s | 166s 266 | pub(crate) trait BoolAsSIMD: Sized { 166s | ---------- method in this trait 166s 267 | fn any(self) -> bool; 166s 268 | fn all(self) -> bool; 166s | ^^^ 166s 167s warning: `rand` (lib) generated 70 warnings (1 duplicate) 167s Compiling async-fs v2.1.2 167s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=async_fs CARGO_MANIFEST_DIR=/tmp/tmp.MZ13eKTYFc/registry/async-fs-2.1.2 CARGO_MANIFEST_PATH=/tmp/tmp.MZ13eKTYFc/registry/async-fs-2.1.2/Cargo.toml CARGO_PKG_AUTHORS='Stjepan Glavina ' CARGO_PKG_DESCRIPTION='Async filesystem primitives' CARGO_PKG_HOMEPAGE='https://github.com/smol-rs/async-fs' CARGO_PKG_LICENSE='Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=async-fs CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/smol-rs/async-fs' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=2.1.2 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=2 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.MZ13eKTYFc/target/debug/deps rustc --crate-name async_fs --edition=2018 /tmp/tmp.MZ13eKTYFc/registry/async-fs-2.1.2/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=29595b84143a8f6c -C extra-filename=-29595b84143a8f6c --out-dir /tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.MZ13eKTYFc/target/debug/deps --extern async_lock=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/libasync_lock-ac8045c9d37e641a.rmeta --extern blocking=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/libblocking-eab10f1f364dd315.rmeta --extern futures_lite=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/libfutures_lite-b3966bcb93a5ad2f.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.MZ13eKTYFc/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 167s warning: `zbus_names` (lib) generated 1 warning (1 duplicate) 167s Compiling cairo-rs v0.20.7 167s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=cairo CARGO_MANIFEST_DIR=/tmp/tmp.MZ13eKTYFc/registry/cairo-rs-0.20.7 CARGO_MANIFEST_PATH=/tmp/tmp.MZ13eKTYFc/registry/cairo-rs-0.20.7/Cargo.toml CARGO_PKG_AUTHORS='The gtk-rs Project Developers' CARGO_PKG_DESCRIPTION='Rust bindings for the Cairo library' CARGO_PKG_HOMEPAGE='https://gtk-rs.org/' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=cairo-rs CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/gtk-rs/gtk-rs-core' CARGO_PKG_RUST_VERSION=1.70 CARGO_PKG_VERSION=0.20.7 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=20 CARGO_PKG_VERSION_PATCH=7 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.MZ13eKTYFc/target/debug/deps rustc --crate-name cairo --edition=2021 /tmp/tmp.MZ13eKTYFc/registry/cairo-rs-0.20.7/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="glib"' --cfg 'feature="use_glib"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "freetype", "freetype-rs", "glib", "pdf", "png", "ps", "script", "svg", "use_glib", "v1_16", "v1_18", "xcb", "xlib"))' -C metadata=aadf25ac0adb6ebd -C extra-filename=-aadf25ac0adb6ebd --out-dir /tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.MZ13eKTYFc/target/debug/deps --extern bitflags=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/libbitflags-65f3f529c7b65778.rmeta --extern cairo_sys=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/libcairo_sys-4612600e92f34c6c.rmeta --extern glib=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/libglib-ba3b7fdf202218f0.rmeta --extern libc=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/liblibc-cf2521928ac070dc.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.MZ13eKTYFc/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 167s warning: unexpected `cfg` condition value: `win32-surface` 167s --> /usr/share/cargo/registry/cairo-rs-0.20.7/src/lib.rs:290:20 167s | 167s 290 | #[cfg(all(windows, feature = "win32-surface"))] 167s | ^^^^^^^^^^^^^^^^^^^^^^^^^ 167s | 167s = note: expected values for `feature` are: `default`, `freetype`, `freetype-rs`, `glib`, `pdf`, `png`, `ps`, `script`, `svg`, `use_glib`, `v1_16`, `v1_18`, `xcb`, and `xlib` 167s = help: consider adding `win32-surface` as a feature in `Cargo.toml` 167s = note: see for more information about checking conditional configuration 167s = note: `#[warn(unexpected_cfgs)]` on by default 167s 167s warning: unexpected `cfg` condition value: `win32-surface` 167s --> /usr/share/cargo/registry/cairo-rs-0.20.7/src/lib.rs:293:20 167s | 167s 293 | #[cfg(all(windows, feature = "win32-surface"))] 167s | ^^^^^^^^^^^^^^^^^^^^^^^^^ 167s | 167s = note: expected values for `feature` are: `default`, `freetype`, `freetype-rs`, `glib`, `pdf`, `png`, `ps`, `script`, `svg`, `use_glib`, `v1_16`, `v1_18`, `xcb`, and `xlib` 167s = help: consider adding `win32-surface` as a feature in `Cargo.toml` 167s = note: see for more information about checking conditional configuration 167s 167s warning: `async-fs` (lib) generated 1 warning (1 duplicate) 167s Compiling async-executor v1.13.1 167s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=async_executor CARGO_MANIFEST_DIR=/tmp/tmp.MZ13eKTYFc/registry/async-executor-1.13.1 CARGO_MANIFEST_PATH=/tmp/tmp.MZ13eKTYFc/registry/async-executor-1.13.1/Cargo.toml CARGO_PKG_AUTHORS='Stjepan Glavina :John Nunley ' CARGO_PKG_DESCRIPTION='Async executor' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=async-executor CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/smol-rs/async-executor' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=1.13.1 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=13 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.MZ13eKTYFc/target/debug/deps rustc --crate-name async_executor --edition=2021 /tmp/tmp.MZ13eKTYFc/registry/async-executor-1.13.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("static"))' -C metadata=bf62c2e997e9834f -C extra-filename=-bf62c2e997e9834f --out-dir /tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.MZ13eKTYFc/target/debug/deps --extern async_task=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/libasync_task-18059860e85d74b4.rmeta --extern concurrent_queue=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/libconcurrent_queue-7e82393ecc7068db.rmeta --extern fastrand=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/libfastrand-b0f30b63d6f103db.rmeta --extern futures_lite=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/libfutures_lite-b3966bcb93a5ad2f.rmeta --extern slab=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/libslab-36320af34be0827b.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.MZ13eKTYFc/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 168s warning: `async-executor` (lib) generated 1 warning (1 duplicate) 168s Compiling zbus_macros v4.4.0 168s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=zbus_macros CARGO_MANIFEST_DIR=/tmp/tmp.MZ13eKTYFc/registry/zbus_macros-4.4.0 CARGO_MANIFEST_PATH=/tmp/tmp.MZ13eKTYFc/registry/zbus_macros-4.4.0/Cargo.toml CARGO_PKG_AUTHORS='Marc-André Lureau :Zeeshan Ali Khan ' CARGO_PKG_DESCRIPTION='proc-macros for zbus' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=zbus_macros CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dbus2/zbus/' CARGO_PKG_RUST_VERSION=1.75 CARGO_PKG_VERSION=4.4.0 CARGO_PKG_VERSION_MAJOR=4 CARGO_PKG_VERSION_MINOR=4 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.MZ13eKTYFc/target/debug/deps rustc --crate-name zbus_macros --edition=2021 /tmp/tmp.MZ13eKTYFc/registry/zbus_macros-4.4.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type proc-macro --emit=dep-info,link -C prefer-dynamic -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=858601daf3a85039 -C extra-filename=-858601daf3a85039 --out-dir /tmp/tmp.MZ13eKTYFc/target/debug/deps -L dependency=/tmp/tmp.MZ13eKTYFc/target/debug/deps --extern proc_macro_crate=/tmp/tmp.MZ13eKTYFc/target/debug/deps/libproc_macro_crate-76b8c9685ffc2762.rlib --extern proc_macro2=/tmp/tmp.MZ13eKTYFc/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rlib --extern quote=/tmp/tmp.MZ13eKTYFc/target/debug/deps/libquote-dc92c6f25ee0f0c6.rlib --extern syn=/tmp/tmp.MZ13eKTYFc/target/debug/deps/libsyn-0167beed9e699402.rlib --extern zvariant_utils=/tmp/tmp.MZ13eKTYFc/target/debug/deps/libzvariant_utils-555d90bad4acf190.rlib --extern proc_macro --cap-lints warn` 168s warning: `cairo-rs` (lib) generated 3 warnings (1 duplicate) 168s Compiling async-broadcast v0.7.1 168s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=async_broadcast CARGO_MANIFEST_DIR=/tmp/tmp.MZ13eKTYFc/registry/async-broadcast-0.7.1 CARGO_MANIFEST_PATH=/tmp/tmp.MZ13eKTYFc/registry/async-broadcast-0.7.1/Cargo.toml CARGO_PKG_AUTHORS='Stjepan Glavina :Yoshua Wuyts :Zeeshan Ali Khan ' CARGO_PKG_DESCRIPTION='Async broadcast channels' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=async-broadcast CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/smol-rs/async-broadcast' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.7.1 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=7 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.MZ13eKTYFc/target/debug/deps rustc --crate-name async_broadcast --edition=2018 /tmp/tmp.MZ13eKTYFc/registry/async-broadcast-0.7.1/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=f1e6bd69abd4251e -C extra-filename=-f1e6bd69abd4251e --out-dir /tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.MZ13eKTYFc/target/debug/deps --extern event_listener=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/libevent_listener-4260d59234261e59.rmeta --extern event_listener_strategy=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/libevent_listener_strategy-53ebcc1cb10a7931.rmeta --extern futures_core=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/libfutures_core-8d305950da6bf5c8.rmeta --extern pin_project_lite=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/libpin_project_lite-5dc815523e98d889.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.MZ13eKTYFc/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 168s warning: `async-broadcast` (lib) generated 1 warning (1 duplicate) 168s Compiling ordered-stream v0.2.0 168s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=ordered_stream CARGO_MANIFEST_DIR=/tmp/tmp.MZ13eKTYFc/registry/ordered-stream-0.2.0 CARGO_MANIFEST_PATH=/tmp/tmp.MZ13eKTYFc/registry/ordered-stream-0.2.0/Cargo.toml CARGO_PKG_AUTHORS='Daniel De Graaf :Zeeshan Ali Khan ' CARGO_PKG_DESCRIPTION='Streams that are ordered relative to external events' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=ordered-stream CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/danieldg/ordered-stream' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.2.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.MZ13eKTYFc/target/debug/deps rustc --crate-name ordered_stream --edition=2018 /tmp/tmp.MZ13eKTYFc/registry/ordered-stream-0.2.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=5d03c0a21a4bd5e4 -C extra-filename=-5d03c0a21a4bd5e4 --out-dir /tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.MZ13eKTYFc/target/debug/deps --extern futures_core=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/libfutures_core-8d305950da6bf5c8.rmeta --extern pin_project_lite=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/libpin_project_lite-5dc815523e98d889.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.MZ13eKTYFc/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 168s warning: `ordered-stream` (lib) generated 1 warning (1 duplicate) 168s Compiling async-trait v0.1.83 168s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=async_trait CARGO_MANIFEST_DIR=/tmp/tmp.MZ13eKTYFc/registry/async-trait-0.1.83 CARGO_MANIFEST_PATH=/tmp/tmp.MZ13eKTYFc/registry/async-trait-0.1.83/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='Type erasure for async trait methods' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=async-trait CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/async-trait' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=0.1.83 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=83 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.MZ13eKTYFc/target/debug/deps rustc --crate-name async_trait --edition=2021 /tmp/tmp.MZ13eKTYFc/registry/async-trait-0.1.83/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=e4c90cfd514ad223 -C extra-filename=-e4c90cfd514ad223 --out-dir /tmp/tmp.MZ13eKTYFc/target/debug/deps -L dependency=/tmp/tmp.MZ13eKTYFc/target/debug/deps --extern proc_macro2=/tmp/tmp.MZ13eKTYFc/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rlib --extern quote=/tmp/tmp.MZ13eKTYFc/target/debug/deps/libquote-dc92c6f25ee0f0c6.rlib --extern syn=/tmp/tmp.MZ13eKTYFc/target/debug/deps/libsyn-0167beed9e699402.rlib --extern proc_macro --cap-lints warn` 170s Compiling serde_repr v0.1.12 170s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=serde_repr CARGO_MANIFEST_DIR=/tmp/tmp.MZ13eKTYFc/registry/serde_repr-0.1.12 CARGO_MANIFEST_PATH=/tmp/tmp.MZ13eKTYFc/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.MZ13eKTYFc/target/debug/deps rustc --crate-name serde_repr --edition=2018 /tmp/tmp.MZ13eKTYFc/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=79727398b79ecac5 -C extra-filename=-79727398b79ecac5 --out-dir /tmp/tmp.MZ13eKTYFc/target/debug/deps -L dependency=/tmp/tmp.MZ13eKTYFc/target/debug/deps --extern proc_macro2=/tmp/tmp.MZ13eKTYFc/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rlib --extern quote=/tmp/tmp.MZ13eKTYFc/target/debug/deps/libquote-dc92c6f25ee0f0c6.rlib --extern syn=/tmp/tmp.MZ13eKTYFc/target/debug/deps/libsyn-0167beed9e699402.rlib --extern proc_macro --cap-lints warn` 170s Compiling xdg-home v1.3.0 170s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=xdg_home CARGO_MANIFEST_DIR=/tmp/tmp.MZ13eKTYFc/registry/xdg-home-1.3.0 CARGO_MANIFEST_PATH=/tmp/tmp.MZ13eKTYFc/registry/xdg-home-1.3.0/Cargo.toml CARGO_PKG_AUTHORS='Zeeshan Ali Khan ' CARGO_PKG_DESCRIPTION='The user'\''s home directory as per XDG Specification' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=xdg-home CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/zeenix/xdg-home' CARGO_PKG_RUST_VERSION=1.60 CARGO_PKG_VERSION=1.3.0 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.MZ13eKTYFc/target/debug/deps rustc --crate-name xdg_home --edition=2021 /tmp/tmp.MZ13eKTYFc/registry/xdg-home-1.3.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=4230920bfa085c8c -C extra-filename=-4230920bfa085c8c --out-dir /tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.MZ13eKTYFc/target/debug/deps --extern libc=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/liblibc-cf2521928ac070dc.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.MZ13eKTYFc/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 170s warning: `xdg-home` (lib) generated 1 warning (1 duplicate) 170s Compiling hex v0.4.3 170s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=hex CARGO_MANIFEST_DIR=/tmp/tmp.MZ13eKTYFc/registry/hex-0.4.3 CARGO_MANIFEST_PATH=/tmp/tmp.MZ13eKTYFc/registry/hex-0.4.3/Cargo.toml CARGO_PKG_AUTHORS='KokaKiwi ' CARGO_PKG_DESCRIPTION='Encoding and decoding data into/from hexadecimal representation.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=hex CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/KokaKiwi/rust-hex' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.4.3 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=4 CARGO_PKG_VERSION_PATCH=3 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.MZ13eKTYFc/target/debug/deps rustc --crate-name hex --edition=2018 /tmp/tmp.MZ13eKTYFc/registry/hex-0.4.3/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="alloc"' --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "default", "serde", "std"))' -C metadata=d04eec135ea2b5a3 -C extra-filename=-d04eec135ea2b5a3 --out-dir /tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.MZ13eKTYFc/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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.MZ13eKTYFc/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 171s warning: `hex` (lib) generated 1 warning (1 duplicate) 171s Compiling gdk4 v0.9.5 171s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=gdk4 CARGO_MANIFEST_DIR=/tmp/tmp.MZ13eKTYFc/registry/gdk4-0.9.5 CARGO_MANIFEST_PATH=/tmp/tmp.MZ13eKTYFc/registry/gdk4-0.9.5/Cargo.toml CARGO_PKG_AUTHORS='The gtk-rs Project Developers' CARGO_PKG_DESCRIPTION='Rust bindings of the GDK 4 library' CARGO_PKG_HOMEPAGE='https://gtk-rs.org/gtk4-rs' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=gdk4 CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/gtk-rs/gtk4-rs' CARGO_PKG_RUST_VERSION=1.70 CARGO_PKG_VERSION=0.9.5 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=9 CARGO_PKG_VERSION_PATCH=5 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.MZ13eKTYFc/target/debug/deps rustc --crate-name gdk4 --edition=2021 /tmp/tmp.MZ13eKTYFc/registry/gdk4-0.9.5/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="v4_10"' --cfg 'feature="v4_2"' --cfg 'feature="v4_4"' --cfg 'feature="v4_6"' --cfg 'feature="v4_8"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("gl", "v4_10", "v4_12", "v4_14", "v4_16", "v4_18", "v4_2", "v4_4", "v4_6", "v4_8"))' -C metadata=6ee2e336b0b765a8 -C extra-filename=-6ee2e336b0b765a8 --out-dir /tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.MZ13eKTYFc/target/debug/deps --extern cairo=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/libcairo-aadf25ac0adb6ebd.rmeta --extern gdk_pixbuf=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/libgdk_pixbuf-21af3c2906e7fa2b.rmeta --extern gdk4_sys=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/libgdk4_sys-e0663cad72b17ddd.rmeta --extern gio=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/libgio-ecaee57cd4633445.rmeta --extern glib=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/libglib-ba3b7fdf202218f0.rmeta --extern libc=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/liblibc-cf2521928ac070dc.rmeta --extern pango=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/libpango-93e11624e526e3b0.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.MZ13eKTYFc/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 171s Compiling zbus v4.4.0 171s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=zbus CARGO_MANIFEST_DIR=/tmp/tmp.MZ13eKTYFc/registry/zbus-4.4.0 CARGO_MANIFEST_PATH=/tmp/tmp.MZ13eKTYFc/registry/zbus-4.4.0/Cargo.toml CARGO_PKG_AUTHORS='Zeeshan Ali Khan ' CARGO_PKG_DESCRIPTION='API for D-Bus communication' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=zbus CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dbus2/zbus/' CARGO_PKG_RUST_VERSION=1.75 CARGO_PKG_VERSION=4.4.0 CARGO_PKG_VERSION_MAJOR=4 CARGO_PKG_VERSION_MINOR=4 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.MZ13eKTYFc/target/debug/deps rustc --crate-name zbus --edition=2021 /tmp/tmp.MZ13eKTYFc/registry/zbus-4.4.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="async-executor"' --cfg 'feature="async-fs"' --cfg 'feature="async-io"' --cfg 'feature="async-lock"' --cfg 'feature="async-task"' --cfg 'feature="blocking"' --cfg 'feature="tokio"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("async-executor", "async-fs", "async-io", "async-lock", "async-task", "blocking", "bus-impl", "chrono", "default", "heapless", "option-as-array", "p2p", "time", "tokio", "tokio-vsock", "url", "uuid", "vsock"))' -C metadata=d8543f55004d78f9 -C extra-filename=-d8543f55004d78f9 --out-dir /tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.MZ13eKTYFc/target/debug/deps --extern async_broadcast=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/libasync_broadcast-f1e6bd69abd4251e.rmeta --extern async_executor=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/libasync_executor-bf62c2e997e9834f.rmeta --extern async_fs=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/libasync_fs-29595b84143a8f6c.rmeta --extern async_io=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/libasync_io-d311597b60c0a390.rmeta --extern async_lock=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/libasync_lock-ac8045c9d37e641a.rmeta --extern async_task=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/libasync_task-18059860e85d74b4.rmeta --extern async_trait=/tmp/tmp.MZ13eKTYFc/target/debug/deps/libasync_trait-e4c90cfd514ad223.so --extern blocking=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/libblocking-eab10f1f364dd315.rmeta --extern enumflags2=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/libenumflags2-2867d32c4b4f39e8.rmeta --extern event_listener=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/libevent_listener-4260d59234261e59.rmeta --extern futures_core=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/libfutures_core-8d305950da6bf5c8.rmeta --extern futures_sink=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/libfutures_sink-2335bc9d806f8753.rmeta --extern futures_util=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/libfutures_util-724575be975598c0.rmeta --extern hex=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/libhex-d04eec135ea2b5a3.rmeta --extern nix=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/libnix-30ad0bf244578707.rmeta --extern ordered_stream=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/libordered_stream-5d03c0a21a4bd5e4.rmeta --extern rand=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/librand-da2a195293a4eb5f.rmeta --extern serde=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/libserde-0e7dff716e38da0d.rmeta --extern serde_repr=/tmp/tmp.MZ13eKTYFc/target/debug/deps/libserde_repr-79727398b79ecac5.so --extern sha1=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/libsha1-7a229c14a1ac9b31.rmeta --extern static_assertions=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/libstatic_assertions-18df01cc327facaa.rmeta --extern tokio=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/libtokio-f48697ab22907b1d.rmeta --extern tracing=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/libtracing-5f8a2432d30b4ef1.rmeta --extern xdg_home=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/libxdg_home-4230920bfa085c8c.rmeta --extern zbus_macros=/tmp/tmp.MZ13eKTYFc/target/debug/deps/libzbus_macros-858601daf3a85039.so --extern zbus_names=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/libzbus_names-e138813c02d4cbaa.rmeta --extern zvariant=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/libzvariant-7b45eb8446d33c11.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.MZ13eKTYFc/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 172s warning: unexpected `cfg` condition name: `tokio_unstable` 172s --> /usr/share/cargo/registry/zbus-4.4.0/src/abstractions/executor.rs:50:19 172s | 172s 50 | #[cfg(tokio_unstable)] 172s | ^^^^^^^^^^^^^^ 172s | 172s = help: expected names are: `clippy`, `debug_assertions`, `doc`, `docsrs`, `doctest`, `feature`, `fmt_debug`, `miri`, `overflow_checks`, `panic`, `proc_macro`, `relocation_model`, `rustfmt`, `sanitize`, `sanitizer_cfi_generalize_pointers`, `sanitizer_cfi_normalize_integers`, `target_abi`, `target_arch`, `target_endian`, `target_env`, `target_family`, `target_feature`, `target_has_atomic`, `target_has_atomic_equal_alignment`, `target_has_atomic_load_store`, `target_os`, `target_pointer_width`, `target_thread_local`, `target_vendor`, `test`, `ub_checks`, `unix`, and `windows` 172s = help: consider using a Cargo feature instead 172s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 172s [lints.rust] 172s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tokio_unstable)'] } 172s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tokio_unstable)");` to the top of the `build.rs` 172s = note: see for more information about checking conditional configuration 172s = note: `#[warn(unexpected_cfgs)]` on by default 172s 172s warning: unexpected `cfg` condition name: `tokio_unstable` 172s --> /usr/share/cargo/registry/zbus-4.4.0/src/abstractions/executor.rs:60:23 172s | 172s 60 | #[cfg(not(tokio_unstable))] 172s | ^^^^^^^^^^^^^^ 172s | 172s = help: consider using a Cargo feature instead 172s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 172s [lints.rust] 172s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tokio_unstable)'] } 172s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tokio_unstable)");` to the top of the `build.rs` 172s = note: see for more information about checking conditional configuration 172s 172s warning: unexpected `cfg` condition name: `tokio_unstable` 172s --> /usr/share/cargo/registry/zbus-4.4.0/src/abstractions/executor.rs:177:19 172s | 172s 177 | #[cfg(tokio_unstable)] 172s | ^^^^^^^^^^^^^^ 172s | 172s = help: consider using a Cargo feature instead 172s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 172s [lints.rust] 172s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tokio_unstable)'] } 172s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tokio_unstable)");` to the top of the `build.rs` 172s = note: see for more information about checking conditional configuration 172s 172s warning: unexpected `cfg` condition name: `tokio_unstable` 172s --> /usr/share/cargo/registry/zbus-4.4.0/src/abstractions/executor.rs:187:23 172s | 172s 187 | #[cfg(not(tokio_unstable))] 172s | ^^^^^^^^^^^^^^ 172s | 172s = help: consider using a Cargo feature instead 172s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 172s [lints.rust] 172s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tokio_unstable)'] } 172s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tokio_unstable)");` to the top of the `build.rs` 172s = note: see for more information about checking conditional configuration 172s 175s warning: `gdk4` (lib) generated 1 warning (1 duplicate) 181s warning: `zbus` (lib) generated 5 warnings (1 duplicate) 181s Compiling search-provider v0.10.0 (/usr/share/cargo/registry/search-provider-0.10.0) 181s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=search_provider CARGO_MANIFEST_DIR=/usr/share/cargo/registry/search-provider-0.10.0 CARGO_MANIFEST_PATH=/usr/share/cargo/registry/search-provider-0.10.0/Cargo.toml CARGO_PKG_AUTHORS='Felix Häcker ' CARGO_PKG_DESCRIPTION='Rust wrapper around the GNOME Shell search provider API' CARGO_PKG_HOMEPAGE='https://gitlab.gnome.org/World/Rust/search-provider' CARGO_PKG_LICENSE=' GPL-3.0-or-later' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=search-provider CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://gitlab.gnome.org/World/Rust/search-provider' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.10.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=10 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' CARGO_PRIMARY_PACKAGE=1 LD_LIBRARY_PATH=/tmp/tmp.MZ13eKTYFc/target/debug/deps rustc --crate-name search_provider --edition=2021 src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --test --cfg 'feature="async-std"' --cfg 'feature="default"' --cfg 'feature="gdk"' --cfg 'feature="gdk-pixbuf"' --cfg 'feature="tokio"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("async-std", "default", "gdk", "gdk-pixbuf", "tokio"))' -C metadata=a635210597a500a0 -C extra-filename=-a635210597a500a0 --out-dir /tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -C incremental=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/incremental -L dependency=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.MZ13eKTYFc/target/debug/deps --extern futures_channel=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/libfutures_channel-8ed485ea134c933c.rlib --extern futures_util=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/libfutures_util-724575be975598c0.rlib --extern gdk_pixbuf=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/libgdk_pixbuf-21af3c2906e7fa2b.rlib --extern gdk=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/libgdk4-6ee2e336b0b765a8.rlib --extern serde=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/libserde-0e7dff716e38da0d.rlib --extern zbus=/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/libzbus-d8543f55004d78f9.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.MZ13eKTYFc/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 183s warning: `search-provider` (lib test) generated 1 warning (1 duplicate) 183s Finished `test` profile [unoptimized + debuginfo] target(s) in 1m 09s 183s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_MANIFEST_DIR=/usr/share/cargo/registry/search-provider-0.10.0 CARGO_MANIFEST_PATH=/usr/share/cargo/registry/search-provider-0.10.0/Cargo.toml CARGO_PKG_AUTHORS='Felix Häcker ' CARGO_PKG_DESCRIPTION='Rust wrapper around the GNOME Shell search provider API' CARGO_PKG_HOMEPAGE='https://gitlab.gnome.org/World/Rust/search-provider' CARGO_PKG_LICENSE=' GPL-3.0-or-later' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=search-provider CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://gitlab.gnome.org/World/Rust/search-provider' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.10.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=10 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps:/tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' /tmp/tmp.MZ13eKTYFc/target/s390x-unknown-linux-gnu/debug/deps/search_provider-a635210597a500a0` 183s 183s running 1 test 183s test result_metadata::tests::icon_data_signature ... ok 183s 183s test result: ok. 1 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.00s 183s 183s /tmp/autopkgtest.9UAdYD/wrapper.sh: checking for leaked background processes... 183s /tmp/autopkgtest.9UAdYD/wrapper.sh: waiting for tee/cat subprocesses... 183s /tmp/autopkgtest.9UAdYD/wrapper.sh: cleaning up... 183s /tmp/autopkgtest.9UAdYD/wrapper.sh: Exit status: 0 183s autopkgtest: DBG: testbed command exited with code 0 183s autopkgtest [18:28:30]: test rust-search-provider:@: -----------------------] 183s autopkgtest: DBG: testbed executing test finished with exit status 0 183s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.9UAdYD/rust-search-provider%3A%40-stdout /tmp/autopkgtest-work.fgzbr70j/out/rust-search-provider%3A%40-stdout 184s autopkgtest: DBG: got reply from testbed: ok 184s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.9UAdYD/rust-search-provider%3A%40-stderr /tmp/autopkgtest-work.fgzbr70j/out/rust-search-provider%3A%40-stderr 184s autopkgtest: DBG: got reply from testbed: ok 184s rust-search-provider:@ PASS 184s autopkgtest [18:28:31]: test rust-search-provider:@: - - - - - - - - - - results - - - - - - - - - - 184s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.9UAdYD/rust-search-provider%3A%40-artifacts/ /tmp/autopkgtest-work.fgzbr70j/out/artifacts/ 184s autopkgtest: DBG: got reply from testbed: ok 184s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.9UAdYD/rust-search-provider:@-artifacts', '/tmp/autopkgtest.9UAdYD/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 185s autopkgtest: DBG: testbed command exited with code 0 185s autopkgtest [18:28:32]: test librust-search-provider-dev:async-std: preparing testbed 185s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['dh-cargo (>= 18)', 'librust-search-provider-dev'], deps_new=['dh-cargo (>= 18)', 'librust-search-provider-dev'] 185s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 185s autopkgtest: DBG: install_deps: deps_new=['dh-cargo (>= 18)', 'librust-search-provider-dev'] 185s autopkgtest: DBG: install-deps: satisfying dh-cargo (>= 18), librust-search-provider-dev 185s autopkgtest: DBG: can use apt-get on testbed: True 185s 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-search-provider-dev'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 185s Reading package lists... 185s Building dependency tree... 185s Reading state information... 185s Starting pkgProblemResolver with broken count: 0 185s Starting 2 pkgProblemResolver with broken count: 0 185s Done 185s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 185s autopkgtest: DBG: testbed command exited with code 0 185s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'librust-search-provider-dev'], kind short, sout pipe, serr pipe, env [] 185s autopkgtest: DBG: testbed command exited with code 0 185s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.9UAdYD/librust-search-provider-dev:async-std-packages.all"], kind short, sout raw, serr pipe, env [] 186s autopkgtest: DBG: testbed command exited with code 0 186s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.9UAdYD/librust-search-provider-dev%3Aasync-std-packages.all /tmp/autopkgtest-work.fgzbr70j/out/librust-search-provider-dev%3Aasync-std-packages.all 186s autopkgtest: DBG: got reply from testbed: ok 186s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.9UAdYD/build.JnS/src'], kind short, sout raw, serr raw, env [] 186s autopkgtest: DBG: testbed command exited with code 0 186s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.9UAdYD/build.JnS/src already exists 186s autopkgtest [18:28:33]: test librust-search-provider-dev:async-std: /usr/share/cargo/bin/cargo-auto-test search-provider 0.10.0 --all-targets --no-default-features --features async-std 186s autopkgtest [18:28:33]: test librust-search-provider-dev:async-std: [----------------------- 186s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.9UAdYD/wrapper.sh --debug --artifacts=/tmp/autopkgtest.9UAdYD/librust-search-provider-dev:async-std-artifacts --chdir=/tmp/autopkgtest.9UAdYD/build.JnS/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.9UAdYD/librust-search-provider-dev:async-std-stderr --stdout=/tmp/autopkgtest.9UAdYD/librust-search-provider-dev:async-std-stdout --tmp=/tmp/autopkgtest.9UAdYD/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 search-provider 0.10.0 --all-targets --no-default-features --features async-std'"], kind test, sout raw, serr raw, env [] 186s /tmp/autopkgtest.9UAdYD/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.9UAdYD/librust-search-provider-dev:async-std-artifacts 186s /tmp/autopkgtest.9UAdYD/wrapper.sh: changing to directory: /tmp/autopkgtest.9UAdYD/build.JnS/src 186s /tmp/autopkgtest.9UAdYD/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 186s /tmp/autopkgtest.9UAdYD/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 186s /tmp/autopkgtest.9UAdYD/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 186s /tmp/autopkgtest.9UAdYD/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 186s /tmp/autopkgtest.9UAdYD/wrapper.sh: setting environment: LANG=C.UTF-8 186s /tmp/autopkgtest.9UAdYD/wrapper.sh: unsetting environment: LANGUAGE 186s /tmp/autopkgtest.9UAdYD/wrapper.sh: unsetting environment: LC_ADDRESS 186s /tmp/autopkgtest.9UAdYD/wrapper.sh: unsetting environment: LC_ALL 186s /tmp/autopkgtest.9UAdYD/wrapper.sh: unsetting environment: LC_COLLATE 186s /tmp/autopkgtest.9UAdYD/wrapper.sh: unsetting environment: LC_CTYPE 186s /tmp/autopkgtest.9UAdYD/wrapper.sh: unsetting environment: LC_IDENTIFICATION 186s /tmp/autopkgtest.9UAdYD/wrapper.sh: unsetting environment: LC_MEASUREMENT 186s /tmp/autopkgtest.9UAdYD/wrapper.sh: unsetting environment: LC_MESSAGES 186s /tmp/autopkgtest.9UAdYD/wrapper.sh: unsetting environment: LC_MONETARY 186s /tmp/autopkgtest.9UAdYD/wrapper.sh: unsetting environment: LC_NAME 186s /tmp/autopkgtest.9UAdYD/wrapper.sh: unsetting environment: LC_NUMERIC 186s /tmp/autopkgtest.9UAdYD/wrapper.sh: unsetting environment: LC_PAPER 186s /tmp/autopkgtest.9UAdYD/wrapper.sh: unsetting environment: LC_TELEPHONE 186s /tmp/autopkgtest.9UAdYD/wrapper.sh: unsetting environment: LC_TIME 186s /tmp/autopkgtest.9UAdYD/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 186s /tmp/autopkgtest.9UAdYD/wrapper.sh: pretending to be a login shell 186s /tmp/autopkgtest.9UAdYD/wrapper.sh: will write standard error to /tmp/autopkgtest.9UAdYD/librust-search-provider-dev:async-std-stderr 186s /tmp/autopkgtest.9UAdYD/wrapper.sh: will write stdout to /tmp/autopkgtest.9UAdYD/librust-search-provider-dev:async-std-stdout 186s /tmp/autopkgtest.9UAdYD/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.9UAdYD/autopkgtest_tmp 186s /tmp/autopkgtest.9UAdYD/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 186s /tmp/autopkgtest.9UAdYD/wrapper.sh: command to run: bash -ec /usr/share/cargo/bin/cargo-auto-test search-provider 0.10.0 --all-targets --no-default-features --features async-std 186s /tmp/autopkgtest.9UAdYD/wrapper.sh: copying /tmp/tmp.LDkyDM0Nl3/out to stdout and file: /tmp/autopkgtest.9UAdYD/librust-search-provider-dev:async-std-stdout 186s /tmp/autopkgtest.9UAdYD/wrapper.sh: copying /tmp/tmp.LDkyDM0Nl3/err to standard error and file: /tmp/autopkgtest.9UAdYD/librust-search-provider-dev:async-std-stdout 186s /tmp/autopkgtest.9UAdYD/wrapper.sh: writing script pid 8189 to /tmp/autopkgtest_script_pid 186s debian cargo wrapper: options, profiles, parallel, lto: ['parallel=2'] [] ['-j2'] 0 186s debian cargo wrapper: rust_type, gnu_type: s390x-unknown-linux-gnu, s390x-linux-gnu 186s debian cargo wrapper: unsetting RUSTFLAGS and assuming it will be (or already was) added to $CARGO_HOME/config.toml 186s debian cargo wrapper: linking /usr/share/cargo/registry/* into /tmp/tmp.PIv8cIzOKd/registry/ 186s debian cargo wrapper: options, profiles, parallel, lto: ['parallel=2'] [] ['-j2'] 0 186s debian cargo wrapper: rust_type, gnu_type: s390x-unknown-linux-gnu, s390x-linux-gnu 186s debian cargo wrapper: unsetting RUSTFLAGS and assuming it will be (or already was) added to $CARGO_HOME/config.toml 186s 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', '--features', 'async-std'],) {} 186s Compiling proc-macro2 v1.0.92 186s Compiling unicode-ident v1.0.13 186s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.PIv8cIzOKd/registry/proc-macro2-1.0.92 CARGO_MANIFEST_PATH=/tmp/tmp.PIv8cIzOKd/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.PIv8cIzOKd/target/debug/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.PIv8cIzOKd/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.PIv8cIzOKd/target/debug/build/proc-macro2-3832f39696f3f5db -L dependency=/tmp/tmp.PIv8cIzOKd/target/debug/deps --cap-lints warn` 186s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=unicode_ident CARGO_MANIFEST_DIR=/tmp/tmp.PIv8cIzOKd/registry/unicode-ident-1.0.13 CARGO_MANIFEST_PATH=/tmp/tmp.PIv8cIzOKd/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.PIv8cIzOKd/target/debug/deps rustc --crate-name unicode_ident --edition=2018 /tmp/tmp.PIv8cIzOKd/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.PIv8cIzOKd/target/debug/deps -L dependency=/tmp/tmp.PIv8cIzOKd/target/debug/deps --cap-lints warn` 186s Compiling pin-project-lite v0.2.13 186s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=pin_project_lite CARGO_MANIFEST_DIR=/tmp/tmp.PIv8cIzOKd/registry/pin-project-lite-0.2.13 CARGO_MANIFEST_PATH=/tmp/tmp.PIv8cIzOKd/registry/pin-project-lite-0.2.13/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='A lightweight version of pin-project written with declarative macros. 186s ' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=pin-project-lite CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/taiki-e/pin-project-lite' CARGO_PKG_RUST_VERSION=1.37 CARGO_PKG_VERSION=0.2.13 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=13 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.PIv8cIzOKd/target/debug/deps rustc --crate-name pin_project_lite --edition=2018 /tmp/tmp.PIv8cIzOKd/registry/pin-project-lite-0.2.13/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=5dc815523e98d889 -C extra-filename=-5dc815523e98d889 --out-dir /tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.PIv8cIzOKd/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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.PIv8cIzOKd/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 186s warning: unstable feature specified for `-Ctarget-feature`: `backchain` 186s | 186s = note: this feature is not stably supported; its behavior can change in the future 186s 186s warning: `pin-project-lite` (lib) generated 1 warning 186s Compiling crossbeam-utils v0.8.19 186s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.PIv8cIzOKd/registry/crossbeam-utils-0.8.19 CARGO_MANIFEST_PATH=/tmp/tmp.PIv8cIzOKd/registry/crossbeam-utils-0.8.19/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='Utilities for concurrent programming' CARGO_PKG_HOMEPAGE='https://github.com/crossbeam-rs/crossbeam/tree/master/crossbeam-utils' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=crossbeam-utils CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/crossbeam-rs/crossbeam' CARGO_PKG_RUST_VERSION=1.60 CARGO_PKG_VERSION=0.8.19 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=8 CARGO_PKG_VERSION_PATCH=19 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.PIv8cIzOKd/target/debug/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.PIv8cIzOKd/registry/crossbeam-utils-0.8.19/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "nightly", "std"))' -C metadata=481d5baddd087d3b -C extra-filename=-481d5baddd087d3b --out-dir /tmp/tmp.PIv8cIzOKd/target/debug/build/crossbeam-utils-481d5baddd087d3b -L dependency=/tmp/tmp.PIv8cIzOKd/target/debug/deps --cap-lints warn` 187s 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.PIv8cIzOKd/registry/proc-macro2-1.0.92 CARGO_MANIFEST_PATH=/tmp/tmp.PIv8cIzOKd/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.PIv8cIzOKd/target/debug/deps:/tmp/tmp.PIv8cIzOKd/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.PIv8cIzOKd/target/debug/build/proc-macro2-b8c68c67c59c8657/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.PIv8cIzOKd/target/debug/build/proc-macro2-3832f39696f3f5db/build-script-build` 187s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(fuzzing) 187s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(no_is_available) 187s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(no_literal_byte_character) 187s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(no_literal_c_string) 187s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(no_source_text) 187s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(proc_macro_span) 187s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(procmacro2_backtrace) 187s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(procmacro2_nightly_testing) 187s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(procmacro2_semver_exempt) 187s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(randomize_layout) 187s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(span_locations) 187s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(super_unstable) 187s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(wrap_proc_macro) 187s [proc-macro2 1.0.92] cargo:rerun-if-changed=build/probe.rs 187s Compiling libc v0.2.169 187s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.PIv8cIzOKd/registry/libc-0.2.169 CARGO_MANIFEST_PATH=/tmp/tmp.PIv8cIzOKd/registry/libc-0.2.169/Cargo.toml CARGO_PKG_AUTHORS='The Rust Project Developers' CARGO_PKG_DESCRIPTION='Raw FFI bindings to platform libraries like libc. 187s ' CARGO_PKG_HOMEPAGE='https://github.com/rust-lang/libc' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=libc CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/libc' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=0.2.169 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=169 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.PIv8cIzOKd/target/debug/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.PIv8cIzOKd/registry/libc-0.2.169/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="extra_traits"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("align", "const-extern-fn", "default", "extra_traits", "rustc-dep-of-std", "rustc-std-workspace-core", "std", "use_std"))' -C metadata=dc781cb7c1ee5a21 -C extra-filename=-dc781cb7c1ee5a21 --out-dir /tmp/tmp.PIv8cIzOKd/target/debug/build/libc-dc781cb7c1ee5a21 -L dependency=/tmp/tmp.PIv8cIzOKd/target/debug/deps --cap-lints warn` 187s [proc-macro2 1.0.92] cargo:rustc-cfg=wrap_proc_macro 187s [proc-macro2 1.0.92] cargo:rerun-if-env-changed=RUSTC_BOOTSTRAP 187s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=proc_macro2 CARGO_MANIFEST_DIR=/tmp/tmp.PIv8cIzOKd/registry/proc-macro2-1.0.92 CARGO_MANIFEST_PATH=/tmp/tmp.PIv8cIzOKd/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.PIv8cIzOKd/target/debug/deps OUT_DIR=/tmp/tmp.PIv8cIzOKd/target/debug/build/proc-macro2-b8c68c67c59c8657/out rustc --crate-name proc_macro2 --edition=2021 /tmp/tmp.PIv8cIzOKd/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.PIv8cIzOKd/target/debug/deps -L dependency=/tmp/tmp.PIv8cIzOKd/target/debug/deps --extern unicode_ident=/tmp/tmp.PIv8cIzOKd/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)'` 187s Compiling quote v1.0.37 187s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=quote CARGO_MANIFEST_DIR=/tmp/tmp.PIv8cIzOKd/registry/quote-1.0.37 CARGO_MANIFEST_PATH=/tmp/tmp.PIv8cIzOKd/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.PIv8cIzOKd/target/debug/deps rustc --crate-name quote --edition=2018 /tmp/tmp.PIv8cIzOKd/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.PIv8cIzOKd/target/debug/deps -L dependency=/tmp/tmp.PIv8cIzOKd/target/debug/deps --extern proc_macro2=/tmp/tmp.PIv8cIzOKd/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rmeta --cap-lints warn` 187s Compiling syn v2.0.96 187s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=syn CARGO_MANIFEST_DIR=/tmp/tmp.PIv8cIzOKd/registry/syn-2.0.96 CARGO_MANIFEST_PATH=/tmp/tmp.PIv8cIzOKd/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.PIv8cIzOKd/target/debug/deps rustc --crate-name syn --edition=2021 /tmp/tmp.PIv8cIzOKd/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="fold"' --cfg 'feature="full"' --cfg 'feature="parsing"' --cfg 'feature="printing"' --cfg 'feature="proc-macro"' --cfg 'feature="visit-mut"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("clone-impls", "default", "derive", "extra-traits", "fold", "full", "parsing", "printing", "proc-macro", "visit", "visit-mut"))' -C metadata=0167beed9e699402 -C extra-filename=-0167beed9e699402 --out-dir /tmp/tmp.PIv8cIzOKd/target/debug/deps -L dependency=/tmp/tmp.PIv8cIzOKd/target/debug/deps --extern proc_macro2=/tmp/tmp.PIv8cIzOKd/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rmeta --extern quote=/tmp/tmp.PIv8cIzOKd/target/debug/deps/libquote-dc92c6f25ee0f0c6.rmeta --extern unicode_ident=/tmp/tmp.PIv8cIzOKd/target/debug/deps/libunicode_ident-5d182fe9243248fe.rmeta --cap-lints warn` 187s 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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0--remap-path-prefix/tmp/tmp.PIv8cIzOKd/registry=/usr/share/cargo/registry-Ctarget-feature=+backchain' CARGO_FEATURE_DEFAULT=1 CARGO_FEATURE_EXTRA_TRAITS=1 CARGO_FEATURE_STD=1 CARGO_MANIFEST_DIR=/tmp/tmp.PIv8cIzOKd/registry/libc-0.2.169 CARGO_MANIFEST_PATH=/tmp/tmp.PIv8cIzOKd/registry/libc-0.2.169/Cargo.toml CARGO_PKG_AUTHORS='The Rust Project Developers' CARGO_PKG_DESCRIPTION='Raw FFI bindings to platform libraries like libc. 187s ' CARGO_PKG_HOMEPAGE='https://github.com/rust-lang/libc' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=libc CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/libc' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=0.2.169 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=169 CARGO_PKG_VERSION_PRE='' DEBUG=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.PIv8cIzOKd/target/debug/deps:/tmp/tmp.PIv8cIzOKd/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/build/libc-bd02b9c7a9cce7ac/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.PIv8cIzOKd/target/debug/build/libc-dc781cb7c1ee5a21/build-script-build` 187s [libc 0.2.169] cargo:rerun-if-changed=build.rs 187s [libc 0.2.169] cargo:rerun-if-env-changed=RUST_LIBC_UNSTABLE_FREEBSD_VERSION 187s [libc 0.2.169] cargo:rustc-cfg=freebsd11 187s [libc 0.2.169] cargo:rustc-cfg=libc_const_extern_fn 187s [libc 0.2.169] cargo:rustc-check-cfg=cfg(emscripten_new_stat_abi) 187s [libc 0.2.169] cargo:rustc-check-cfg=cfg(espidf_time32) 187s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd10) 187s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd11) 187s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd12) 187s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd13) 187s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd14) 187s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd15) 187s [libc 0.2.169] cargo:rustc-check-cfg=cfg(gnu_time64_abi) 187s [libc 0.2.169] cargo:rustc-check-cfg=cfg(libc_const_extern_fn) 187s [libc 0.2.169] cargo:rustc-check-cfg=cfg(libc_deny_warnings) 187s [libc 0.2.169] cargo:rustc-check-cfg=cfg(libc_thread_local) 187s [libc 0.2.169] cargo:rustc-check-cfg=cfg(libc_ctest) 187s [libc 0.2.169] cargo:rustc-check-cfg=cfg(target_os,values("switch","aix","ohos","hurd","rtems","visionos","nuttx")) 187s [libc 0.2.169] cargo:rustc-check-cfg=cfg(target_env,values("illumos","wasi","aix","ohos")) 187s [libc 0.2.169] cargo:rustc-check-cfg=cfg(target_arch,values("loongarch64","mips32r6","mips64r6","csky")) 187s 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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0--remap-path-prefix/tmp/tmp.PIv8cIzOKd/registry=/usr/share/cargo/registry-Ctarget-feature=+backchain' CARGO_MANIFEST_DIR=/tmp/tmp.PIv8cIzOKd/registry/crossbeam-utils-0.8.19 CARGO_MANIFEST_PATH=/tmp/tmp.PIv8cIzOKd/registry/crossbeam-utils-0.8.19/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='Utilities for concurrent programming' CARGO_PKG_HOMEPAGE='https://github.com/crossbeam-rs/crossbeam/tree/master/crossbeam-utils' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=crossbeam-utils CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/crossbeam-rs/crossbeam' CARGO_PKG_RUST_VERSION=1.60 CARGO_PKG_VERSION=0.8.19 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=8 CARGO_PKG_VERSION_PATCH=19 CARGO_PKG_VERSION_PRE='' DEBUG=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.PIv8cIzOKd/target/debug/deps:/tmp/tmp.PIv8cIzOKd/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/build/crossbeam-utils-41ced09745ce2d1e/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.PIv8cIzOKd/target/debug/build/crossbeam-utils-481d5baddd087d3b/build-script-build` 187s [crossbeam-utils 0.8.19] cargo:rerun-if-changed=no_atomic.rs 187s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=crossbeam_utils CARGO_MANIFEST_DIR=/tmp/tmp.PIv8cIzOKd/registry/crossbeam-utils-0.8.19 CARGO_MANIFEST_PATH=/tmp/tmp.PIv8cIzOKd/registry/crossbeam-utils-0.8.19/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='Utilities for concurrent programming' CARGO_PKG_HOMEPAGE='https://github.com/crossbeam-rs/crossbeam/tree/master/crossbeam-utils' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=crossbeam-utils CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/crossbeam-rs/crossbeam' CARGO_PKG_RUST_VERSION=1.60 CARGO_PKG_VERSION=0.8.19 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=8 CARGO_PKG_VERSION_PATCH=19 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.PIv8cIzOKd/target/debug/deps OUT_DIR=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/build/crossbeam-utils-41ced09745ce2d1e/out rustc --crate-name crossbeam_utils --edition=2021 /tmp/tmp.PIv8cIzOKd/registry/crossbeam-utils-0.8.19/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "nightly", "std"))' -C metadata=bcaf20eecaf4c1fc -C extra-filename=-bcaf20eecaf4c1fc --out-dir /tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.PIv8cIzOKd/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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.PIv8cIzOKd/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 187s warning: unexpected `cfg` condition name: `crossbeam_loom` 187s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/lib.rs:42:7 187s | 187s 42 | #[cfg(crossbeam_loom)] 187s | ^^^^^^^^^^^^^^ 187s | 187s = help: expected names are: `clippy`, `debug_assertions`, `doc`, `docsrs`, `doctest`, `feature`, `fmt_debug`, `miri`, `overflow_checks`, `panic`, `proc_macro`, `relocation_model`, `rustfmt`, `sanitize`, `sanitizer_cfi_generalize_pointers`, `sanitizer_cfi_normalize_integers`, `target_abi`, `target_arch`, `target_endian`, `target_env`, `target_family`, `target_feature`, `target_has_atomic`, `target_has_atomic_equal_alignment`, `target_has_atomic_load_store`, `target_os`, `target_pointer_width`, `target_thread_local`, `target_vendor`, `test`, `ub_checks`, `unix`, and `windows` 187s = help: consider using a Cargo feature instead 187s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 187s [lints.rust] 187s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 187s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 187s = note: see for more information about checking conditional configuration 187s = note: `#[warn(unexpected_cfgs)]` on by default 187s 187s warning: unexpected `cfg` condition name: `crossbeam_loom` 187s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/lib.rs:65:11 187s | 187s 65 | #[cfg(not(crossbeam_loom))] 187s | ^^^^^^^^^^^^^^ 187s | 187s = help: consider using a Cargo feature instead 187s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 187s [lints.rust] 187s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 187s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 187s = note: see for more information about checking conditional configuration 187s 187s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 187s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/lib.rs:74:23 187s | 187s 74 | #[cfg(not(crossbeam_no_atomic))] 187s | ^^^^^^^^^^^^^^^^^^^ 187s | 187s = help: consider using a Cargo feature instead 187s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 187s [lints.rust] 187s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 187s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 187s = note: see for more information about checking conditional configuration 187s 187s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 187s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/lib.rs:78:23 187s | 187s 78 | #[cfg(not(crossbeam_no_atomic))] 187s | ^^^^^^^^^^^^^^^^^^^ 187s | 187s = help: consider using a Cargo feature instead 187s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 187s [lints.rust] 187s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 187s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 187s = note: see for more information about checking conditional configuration 187s 187s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 187s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/lib.rs:81:23 187s | 187s 81 | #[cfg(not(crossbeam_no_atomic))] 187s | ^^^^^^^^^^^^^^^^^^^ 187s | 187s = help: consider using a Cargo feature instead 187s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 187s [lints.rust] 187s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 187s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 187s = note: see for more information about checking conditional configuration 187s 187s warning: unexpected `cfg` condition name: `crossbeam_loom` 187s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/mod.rs:7:11 187s | 187s 7 | #[cfg(not(crossbeam_loom))] 187s | ^^^^^^^^^^^^^^ 187s | 187s = help: consider using a Cargo feature instead 187s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 187s [lints.rust] 187s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 187s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 187s = note: see for more information about checking conditional configuration 187s 187s warning: unexpected `cfg` condition name: `crossbeam_loom` 187s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/mod.rs:25:11 187s | 187s 25 | #[cfg(not(crossbeam_loom))] 187s | ^^^^^^^^^^^^^^ 187s | 187s = help: consider using a Cargo feature instead 187s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 187s [lints.rust] 187s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 187s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 187s = note: see for more information about checking conditional configuration 187s 187s warning: unexpected `cfg` condition name: `crossbeam_loom` 187s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/mod.rs:28:11 187s | 187s 28 | #[cfg(not(crossbeam_loom))] 187s | ^^^^^^^^^^^^^^ 187s | 187s = help: consider using a Cargo feature instead 187s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 187s [lints.rust] 187s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 187s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 187s = note: see for more information about checking conditional configuration 187s 187s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 187s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:1:11 187s | 187s 1 | #[cfg(not(crossbeam_no_atomic))] 187s | ^^^^^^^^^^^^^^^^^^^ 187s | 187s = help: consider using a Cargo feature instead 187s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 187s [lints.rust] 187s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 187s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 187s = note: see for more information about checking conditional configuration 187s 187s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 187s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:27:11 187s | 187s 27 | #[cfg(not(crossbeam_no_atomic))] 187s | ^^^^^^^^^^^^^^^^^^^ 187s | 187s = help: consider using a Cargo feature instead 187s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 187s [lints.rust] 187s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 187s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 187s = note: see for more information about checking conditional configuration 187s 187s warning: unexpected `cfg` condition name: `crossbeam_loom` 187s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:36:19 187s | 187s 36 | not(any(miri, crossbeam_loom, crossbeam_sanitize_thread)), 187s | ^^^^^^^^^^^^^^ 187s | 187s = help: consider using a Cargo feature instead 187s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 187s [lints.rust] 187s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 187s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 187s = note: see for more information about checking conditional configuration 187s 187s warning: unexpected `cfg` condition name: `crossbeam_sanitize_thread` 187s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:36:35 187s | 187s 36 | not(any(miri, crossbeam_loom, crossbeam_sanitize_thread)), 187s | ^^^^^^^^^^^^^^^^^^^^^^^^^ 187s | 187s = help: consider using a Cargo feature instead 187s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 187s [lints.rust] 187s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_sanitize_thread)'] } 187s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_sanitize_thread)");` to the top of the `build.rs` 187s = note: see for more information about checking conditional configuration 187s 187s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 187s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:50:11 187s | 187s 50 | #[cfg(not(crossbeam_no_atomic))] 187s | ^^^^^^^^^^^^^^^^^^^ 187s | 187s = help: consider using a Cargo feature instead 187s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 187s [lints.rust] 187s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 187s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 187s = note: see for more information about checking conditional configuration 187s 187s warning: unexpected `cfg` condition name: `crossbeam_loom` 187s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:53:19 187s | 187s 53 | not(any(miri, crossbeam_loom, crossbeam_sanitize_thread)), 187s | ^^^^^^^^^^^^^^ 187s | 187s = help: consider using a Cargo feature instead 187s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 187s [lints.rust] 187s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 187s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 187s = note: see for more information about checking conditional configuration 187s 187s warning: unexpected `cfg` condition name: `crossbeam_sanitize_thread` 187s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:53:35 187s | 187s 53 | not(any(miri, crossbeam_loom, crossbeam_sanitize_thread)), 187s | ^^^^^^^^^^^^^^^^^^^^^^^^^ 187s | 187s = help: consider using a Cargo feature instead 187s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 187s [lints.rust] 187s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_sanitize_thread)'] } 187s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_sanitize_thread)");` to the top of the `build.rs` 187s = note: see for more information about checking conditional configuration 187s 187s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 187s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:101:11 187s | 187s 101 | #[cfg(not(crossbeam_no_atomic))] 187s | ^^^^^^^^^^^^^^^^^^^ 187s | 187s = help: consider using a Cargo feature instead 187s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 187s [lints.rust] 187s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 187s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 187s = note: see for more information about checking conditional configuration 187s 188s warning: unexpected `cfg` condition name: `crossbeam_loom` 188s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:107:7 188s | 188s 107 | #[cfg(crossbeam_loom)] 188s | ^^^^^^^^^^^^^^ 188s | 188s = help: consider using a Cargo feature instead 188s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 188s [lints.rust] 188s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 188s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 188s = note: see for more information about checking conditional configuration 188s 188s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 188s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:66:19 188s | 188s 66 | #[cfg(not(crossbeam_no_atomic))] 188s | ^^^^^^^^^^^^^^^^^^^ 188s ... 188s 79 | impl_atomic!(AtomicBool, bool); 188s | ------------------------------ in this macro invocation 188s | 188s = help: consider using a Cargo feature instead 188s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 188s [lints.rust] 188s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 188s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 188s = note: see for more information about checking conditional configuration 188s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 188s 188s warning: unexpected `cfg` condition name: `crossbeam_loom` 188s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:71:15 188s | 188s 71 | #[cfg(crossbeam_loom)] 188s | ^^^^^^^^^^^^^^ 188s ... 188s 79 | impl_atomic!(AtomicBool, bool); 188s | ------------------------------ in this macro invocation 188s | 188s = help: consider using a Cargo feature instead 188s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 188s [lints.rust] 188s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 188s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 188s = note: see for more information about checking conditional configuration 188s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 188s 188s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 188s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:66:19 188s | 188s 66 | #[cfg(not(crossbeam_no_atomic))] 188s | ^^^^^^^^^^^^^^^^^^^ 188s ... 188s 80 | impl_atomic!(AtomicUsize, usize); 188s | -------------------------------- in this macro invocation 188s | 188s = help: consider using a Cargo feature instead 188s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 188s [lints.rust] 188s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 188s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 188s = note: see for more information about checking conditional configuration 188s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 188s 188s warning: unexpected `cfg` condition name: `crossbeam_loom` 188s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:71:15 188s | 188s 71 | #[cfg(crossbeam_loom)] 188s | ^^^^^^^^^^^^^^ 188s ... 188s 80 | impl_atomic!(AtomicUsize, usize); 188s | -------------------------------- in this macro invocation 188s | 188s = help: consider using a Cargo feature instead 188s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 188s [lints.rust] 188s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 188s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 188s = note: see for more information about checking conditional configuration 188s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 188s 188s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 188s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:66:19 188s | 188s 66 | #[cfg(not(crossbeam_no_atomic))] 188s | ^^^^^^^^^^^^^^^^^^^ 188s ... 188s 81 | impl_atomic!(AtomicIsize, isize); 188s | -------------------------------- in this macro invocation 188s | 188s = help: consider using a Cargo feature instead 188s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 188s [lints.rust] 188s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 188s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 188s = note: see for more information about checking conditional configuration 188s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 188s 188s warning: unexpected `cfg` condition name: `crossbeam_loom` 188s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:71:15 188s | 188s 71 | #[cfg(crossbeam_loom)] 188s | ^^^^^^^^^^^^^^ 188s ... 188s 81 | impl_atomic!(AtomicIsize, isize); 188s | -------------------------------- in this macro invocation 188s | 188s = help: consider using a Cargo feature instead 188s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 188s [lints.rust] 188s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 188s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 188s = note: see for more information about checking conditional configuration 188s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 188s 188s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 188s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:66:19 188s | 188s 66 | #[cfg(not(crossbeam_no_atomic))] 188s | ^^^^^^^^^^^^^^^^^^^ 188s ... 188s 82 | impl_atomic!(AtomicU8, u8); 188s | -------------------------- in this macro invocation 188s | 188s = help: consider using a Cargo feature instead 188s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 188s [lints.rust] 188s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 188s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 188s = note: see for more information about checking conditional configuration 188s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 188s 188s warning: unexpected `cfg` condition name: `crossbeam_loom` 188s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:71:15 188s | 188s 71 | #[cfg(crossbeam_loom)] 188s | ^^^^^^^^^^^^^^ 188s ... 188s 82 | impl_atomic!(AtomicU8, u8); 188s | -------------------------- in this macro invocation 188s | 188s = help: consider using a Cargo feature instead 188s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 188s [lints.rust] 188s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 188s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 188s = note: see for more information about checking conditional configuration 188s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 188s 188s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 188s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:66:19 188s | 188s 66 | #[cfg(not(crossbeam_no_atomic))] 188s | ^^^^^^^^^^^^^^^^^^^ 188s ... 188s 83 | impl_atomic!(AtomicI8, i8); 188s | -------------------------- in this macro invocation 188s | 188s = help: consider using a Cargo feature instead 188s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 188s [lints.rust] 188s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 188s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 188s = note: see for more information about checking conditional configuration 188s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 188s 188s warning: unexpected `cfg` condition name: `crossbeam_loom` 188s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:71:15 188s | 188s 71 | #[cfg(crossbeam_loom)] 188s | ^^^^^^^^^^^^^^ 188s ... 188s 83 | impl_atomic!(AtomicI8, i8); 188s | -------------------------- in this macro invocation 188s | 188s = help: consider using a Cargo feature instead 188s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 188s [lints.rust] 188s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 188s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 188s = note: see for more information about checking conditional configuration 188s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 188s 188s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 188s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:66:19 188s | 188s 66 | #[cfg(not(crossbeam_no_atomic))] 188s | ^^^^^^^^^^^^^^^^^^^ 188s ... 188s 84 | impl_atomic!(AtomicU16, u16); 188s | ---------------------------- in this macro invocation 188s | 188s = help: consider using a Cargo feature instead 188s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 188s [lints.rust] 188s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 188s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 188s = note: see for more information about checking conditional configuration 188s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 188s 188s warning: unexpected `cfg` condition name: `crossbeam_loom` 188s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:71:15 188s | 188s 71 | #[cfg(crossbeam_loom)] 188s | ^^^^^^^^^^^^^^ 188s ... 188s 84 | impl_atomic!(AtomicU16, u16); 188s | ---------------------------- in this macro invocation 188s | 188s = help: consider using a Cargo feature instead 188s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 188s [lints.rust] 188s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 188s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 188s = note: see for more information about checking conditional configuration 188s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 188s 188s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 188s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:66:19 188s | 188s 66 | #[cfg(not(crossbeam_no_atomic))] 188s | ^^^^^^^^^^^^^^^^^^^ 188s ... 188s 85 | impl_atomic!(AtomicI16, i16); 188s | ---------------------------- in this macro invocation 188s | 188s = help: consider using a Cargo feature instead 188s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 188s [lints.rust] 188s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 188s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 188s = note: see for more information about checking conditional configuration 188s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 188s 188s warning: unexpected `cfg` condition name: `crossbeam_loom` 188s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:71:15 188s | 188s 71 | #[cfg(crossbeam_loom)] 188s | ^^^^^^^^^^^^^^ 188s ... 188s 85 | impl_atomic!(AtomicI16, i16); 188s | ---------------------------- in this macro invocation 188s | 188s = help: consider using a Cargo feature instead 188s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 188s [lints.rust] 188s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 188s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 188s = note: see for more information about checking conditional configuration 188s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 188s 188s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 188s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:66:19 188s | 188s 66 | #[cfg(not(crossbeam_no_atomic))] 188s | ^^^^^^^^^^^^^^^^^^^ 188s ... 188s 87 | impl_atomic!(AtomicU32, u32); 188s | ---------------------------- in this macro invocation 188s | 188s = help: consider using a Cargo feature instead 188s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 188s [lints.rust] 188s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 188s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 188s = note: see for more information about checking conditional configuration 188s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 188s 188s warning: unexpected `cfg` condition name: `crossbeam_loom` 188s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:71:15 188s | 188s 71 | #[cfg(crossbeam_loom)] 188s | ^^^^^^^^^^^^^^ 188s ... 188s 87 | impl_atomic!(AtomicU32, u32); 188s | ---------------------------- in this macro invocation 188s | 188s = help: consider using a Cargo feature instead 188s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 188s [lints.rust] 188s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 188s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 188s = note: see for more information about checking conditional configuration 188s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 188s 188s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 188s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:66:19 188s | 188s 66 | #[cfg(not(crossbeam_no_atomic))] 188s | ^^^^^^^^^^^^^^^^^^^ 188s ... 188s 89 | impl_atomic!(AtomicI32, i32); 188s | ---------------------------- in this macro invocation 188s | 188s = help: consider using a Cargo feature instead 188s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 188s [lints.rust] 188s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 188s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 188s = note: see for more information about checking conditional configuration 188s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 188s 188s warning: unexpected `cfg` condition name: `crossbeam_loom` 188s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:71:15 188s | 188s 71 | #[cfg(crossbeam_loom)] 188s | ^^^^^^^^^^^^^^ 188s ... 188s 89 | impl_atomic!(AtomicI32, i32); 188s | ---------------------------- in this macro invocation 188s | 188s = help: consider using a Cargo feature instead 188s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 188s [lints.rust] 188s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 188s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 188s = note: see for more information about checking conditional configuration 188s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 188s 188s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 188s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:66:19 188s | 188s 66 | #[cfg(not(crossbeam_no_atomic))] 188s | ^^^^^^^^^^^^^^^^^^^ 188s ... 188s 94 | impl_atomic!(AtomicU64, u64); 188s | ---------------------------- in this macro invocation 188s | 188s = help: consider using a Cargo feature instead 188s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 188s [lints.rust] 188s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 188s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 188s = note: see for more information about checking conditional configuration 188s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 188s 188s warning: unexpected `cfg` condition name: `crossbeam_loom` 188s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:71:15 188s | 188s 71 | #[cfg(crossbeam_loom)] 188s | ^^^^^^^^^^^^^^ 188s ... 188s 94 | impl_atomic!(AtomicU64, u64); 188s | ---------------------------- in this macro invocation 188s | 188s = help: consider using a Cargo feature instead 188s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 188s [lints.rust] 188s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 188s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 188s = note: see for more information about checking conditional configuration 188s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 188s 188s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 188s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:66:19 188s | 188s 66 | #[cfg(not(crossbeam_no_atomic))] 188s | ^^^^^^^^^^^^^^^^^^^ 188s ... 188s 99 | impl_atomic!(AtomicI64, i64); 188s | ---------------------------- in this macro invocation 188s | 188s = help: consider using a Cargo feature instead 188s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 188s [lints.rust] 188s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 188s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 188s = note: see for more information about checking conditional configuration 188s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 188s 188s warning: unexpected `cfg` condition name: `crossbeam_loom` 188s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:71:15 188s | 188s 71 | #[cfg(crossbeam_loom)] 188s | ^^^^^^^^^^^^^^ 188s ... 188s 99 | impl_atomic!(AtomicI64, i64); 188s | ---------------------------- in this macro invocation 188s | 188s = help: consider using a Cargo feature instead 188s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 188s [lints.rust] 188s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 188s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 188s = note: see for more information about checking conditional configuration 188s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 188s 188s warning: `crossbeam-utils` (lib) generated 40 warnings (1 duplicate) 188s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=libc CARGO_MANIFEST_DIR=/tmp/tmp.PIv8cIzOKd/registry/libc-0.2.169 CARGO_MANIFEST_PATH=/tmp/tmp.PIv8cIzOKd/registry/libc-0.2.169/Cargo.toml CARGO_PKG_AUTHORS='The Rust Project Developers' CARGO_PKG_DESCRIPTION='Raw FFI bindings to platform libraries like libc. 188s ' CARGO_PKG_HOMEPAGE='https://github.com/rust-lang/libc' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=libc CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/libc' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=0.2.169 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=169 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.PIv8cIzOKd/target/debug/deps OUT_DIR=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/build/libc-bd02b9c7a9cce7ac/out rustc --crate-name libc --edition=2021 /tmp/tmp.PIv8cIzOKd/registry/libc-0.2.169/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="extra_traits"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("align", "const-extern-fn", "default", "extra_traits", "rustc-dep-of-std", "rustc-std-workspace-core", "std", "use_std"))' -C metadata=cf2521928ac070dc -C extra-filename=-cf2521928ac070dc --out-dir /tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.PIv8cIzOKd/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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.PIv8cIzOKd/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain --cfg freebsd11 --cfg libc_const_extern_fn --check-cfg 'cfg(emscripten_new_stat_abi)' --check-cfg 'cfg(espidf_time32)' --check-cfg 'cfg(freebsd10)' --check-cfg 'cfg(freebsd11)' --check-cfg 'cfg(freebsd12)' --check-cfg 'cfg(freebsd13)' --check-cfg 'cfg(freebsd14)' --check-cfg 'cfg(freebsd15)' --check-cfg 'cfg(gnu_time64_abi)' --check-cfg 'cfg(libc_const_extern_fn)' --check-cfg 'cfg(libc_deny_warnings)' --check-cfg 'cfg(libc_thread_local)' --check-cfg 'cfg(libc_ctest)' --check-cfg 'cfg(target_os,values("switch","aix","ohos","hurd","rtems","visionos","nuttx"))' --check-cfg 'cfg(target_env,values("illumos","wasi","aix","ohos"))' --check-cfg 'cfg(target_arch,values("loongarch64","mips32r6","mips64r6","csky"))'` 188s warning: unused import: `crate::ntptimeval` 188s --> /usr/share/cargo/registry/libc-0.2.169/src/unix/linux_like/linux/gnu/b64/mod.rs:5:5 188s | 188s 5 | use crate::ntptimeval; 188s | ^^^^^^^^^^^^^^^^^ 188s | 188s = note: `#[warn(unused_imports)]` on by default 188s 189s warning: `libc` (lib) generated 2 warnings (1 duplicate) 189s Compiling futures-core v0.3.31 189s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=futures_core CARGO_MANIFEST_DIR=/tmp/tmp.PIv8cIzOKd/registry/futures-core-0.3.31 CARGO_MANIFEST_PATH=/tmp/tmp.PIv8cIzOKd/registry/futures-core-0.3.31/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='The core traits and types in for the `futures` library. 189s ' CARGO_PKG_HOMEPAGE='https://rust-lang.github.io/futures-rs' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=futures-core CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/futures-rs' CARGO_PKG_RUST_VERSION=1.36 CARGO_PKG_VERSION=0.3.31 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=31 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.PIv8cIzOKd/target/debug/deps rustc --crate-name futures_core --edition=2018 /tmp/tmp.PIv8cIzOKd/registry/futures-core-0.3.31/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --warn=unreachable_pub --warn=unexpected_cfgs --warn=single_use_lifetimes --warn=rust_2018_idioms --warn=missing_debug_implementations --check-cfg 'cfg(futures_sanitizer)' --cfg 'feature="alloc"' --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "cfg-target-has-atomic", "default", "portable-atomic", "std", "unstable"))' -C metadata=8d305950da6bf5c8 -C extra-filename=-8d305950da6bf5c8 --out-dir /tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.PIv8cIzOKd/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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.PIv8cIzOKd/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 189s warning: `futures-core` (lib) generated 1 warning (1 duplicate) 189s Compiling parking v2.2.0 189s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=parking CARGO_MANIFEST_DIR=/tmp/tmp.PIv8cIzOKd/registry/parking-2.2.0 CARGO_MANIFEST_PATH=/tmp/tmp.PIv8cIzOKd/registry/parking-2.2.0/Cargo.toml CARGO_PKG_AUTHORS='Stjepan Glavina :The Rust Project Developers' CARGO_PKG_DESCRIPTION='Thread parking and unparking' CARGO_PKG_HOMEPAGE='https://github.com/smol-rs/parking' CARGO_PKG_LICENSE='Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=parking CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/smol-rs/parking' CARGO_PKG_RUST_VERSION=1.51 CARGO_PKG_VERSION=2.2.0 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.PIv8cIzOKd/target/debug/deps rustc --crate-name parking --edition=2018 /tmp/tmp.PIv8cIzOKd/registry/parking-2.2.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=0a38dc17b1bc33e2 -C extra-filename=-0a38dc17b1bc33e2 --out-dir /tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.PIv8cIzOKd/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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.PIv8cIzOKd/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 189s warning: unexpected `cfg` condition name: `loom` 189s --> /usr/share/cargo/registry/parking-2.2.0/src/lib.rs:41:15 189s | 189s 41 | #[cfg(not(all(loom, feature = "loom")))] 189s | ^^^^ 189s | 189s = help: expected names are: `clippy`, `debug_assertions`, `doc`, `docsrs`, `doctest`, `feature`, `fmt_debug`, `miri`, `overflow_checks`, `panic`, `proc_macro`, `relocation_model`, `rustfmt`, `sanitize`, `sanitizer_cfi_generalize_pointers`, `sanitizer_cfi_normalize_integers`, `target_abi`, `target_arch`, `target_endian`, `target_env`, `target_family`, `target_feature`, `target_has_atomic`, `target_has_atomic_equal_alignment`, `target_has_atomic_load_store`, `target_os`, `target_pointer_width`, `target_thread_local`, `target_vendor`, `test`, `ub_checks`, `unix`, and `windows` 189s = help: consider using a Cargo feature instead 189s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 189s [lints.rust] 189s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(loom)'] } 189s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(loom)");` to the top of the `build.rs` 189s = note: see for more information about checking conditional configuration 189s = note: `#[warn(unexpected_cfgs)]` on by default 189s 189s warning: unexpected `cfg` condition value: `loom` 189s --> /usr/share/cargo/registry/parking-2.2.0/src/lib.rs:41:21 189s | 189s 41 | #[cfg(not(all(loom, feature = "loom")))] 189s | ^^^^^^^^^^^^^^^^ help: remove the condition 189s | 189s = note: no expected values for `feature` 189s = help: consider adding `loom` as a feature in `Cargo.toml` 189s = note: see for more information about checking conditional configuration 189s 189s warning: unexpected `cfg` condition name: `loom` 189s --> /usr/share/cargo/registry/parking-2.2.0/src/lib.rs:44:11 189s | 189s 44 | #[cfg(all(loom, feature = "loom"))] 189s | ^^^^ 189s | 189s = help: consider using a Cargo feature instead 189s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 189s [lints.rust] 189s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(loom)'] } 189s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(loom)");` to the top of the `build.rs` 189s = note: see for more information about checking conditional configuration 189s 189s warning: unexpected `cfg` condition value: `loom` 189s --> /usr/share/cargo/registry/parking-2.2.0/src/lib.rs:44:17 189s | 189s 44 | #[cfg(all(loom, feature = "loom"))] 189s | ^^^^^^^^^^^^^^^^ help: remove the condition 189s | 189s = note: no expected values for `feature` 189s = help: consider adding `loom` as a feature in `Cargo.toml` 189s = note: see for more information about checking conditional configuration 189s 189s warning: unexpected `cfg` condition name: `loom` 189s --> /usr/share/cargo/registry/parking-2.2.0/src/lib.rs:54:15 189s | 189s 54 | #[cfg(not(all(loom, feature = "loom")))] 189s | ^^^^ 189s | 189s = help: consider using a Cargo feature instead 189s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 189s [lints.rust] 189s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(loom)'] } 189s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(loom)");` to the top of the `build.rs` 189s = note: see for more information about checking conditional configuration 189s 189s warning: unexpected `cfg` condition value: `loom` 189s --> /usr/share/cargo/registry/parking-2.2.0/src/lib.rs:54:21 189s | 189s 54 | #[cfg(not(all(loom, feature = "loom")))] 189s | ^^^^^^^^^^^^^^^^ help: remove the condition 189s | 189s = note: no expected values for `feature` 189s = help: consider adding `loom` as a feature in `Cargo.toml` 189s = note: see for more information about checking conditional configuration 189s 189s warning: unexpected `cfg` condition name: `loom` 189s --> /usr/share/cargo/registry/parking-2.2.0/src/lib.rs:140:15 189s | 189s 140 | #[cfg(not(loom))] 189s | ^^^^ 189s | 189s = help: consider using a Cargo feature instead 189s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 189s [lints.rust] 189s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(loom)'] } 189s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(loom)");` to the top of the `build.rs` 189s = note: see for more information about checking conditional configuration 189s 189s warning: unexpected `cfg` condition name: `loom` 189s --> /usr/share/cargo/registry/parking-2.2.0/src/lib.rs:160:15 189s | 189s 160 | #[cfg(not(loom))] 189s | ^^^^ 189s | 189s = help: consider using a Cargo feature instead 189s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 189s [lints.rust] 189s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(loom)'] } 189s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(loom)");` to the top of the `build.rs` 189s = note: see for more information about checking conditional configuration 189s 189s warning: unexpected `cfg` condition name: `loom` 189s --> /usr/share/cargo/registry/parking-2.2.0/src/lib.rs:379:27 189s | 189s 379 | #[cfg(not(loom))] 189s | ^^^^ 189s | 189s = help: consider using a Cargo feature instead 189s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 189s [lints.rust] 189s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(loom)'] } 189s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(loom)");` to the top of the `build.rs` 189s = note: see for more information about checking conditional configuration 189s 189s warning: unexpected `cfg` condition name: `loom` 189s --> /usr/share/cargo/registry/parking-2.2.0/src/lib.rs:393:23 189s | 189s 393 | #[cfg(loom)] 189s | ^^^^ 189s | 189s = help: consider using a Cargo feature instead 189s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 189s [lints.rust] 189s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(loom)'] } 189s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(loom)");` to the top of the `build.rs` 189s = note: see for more information about checking conditional configuration 189s 189s warning: `parking` (lib) generated 11 warnings (1 duplicate) 189s Compiling autocfg v1.1.0 189s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=autocfg CARGO_MANIFEST_DIR=/tmp/tmp.PIv8cIzOKd/registry/autocfg-1.1.0 CARGO_MANIFEST_PATH=/tmp/tmp.PIv8cIzOKd/registry/autocfg-1.1.0/Cargo.toml CARGO_PKG_AUTHORS='Josh Stone ' CARGO_PKG_DESCRIPTION='Automatic cfg for Rust compiler features' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=autocfg CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/cuviper/autocfg' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=1.1.0 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.PIv8cIzOKd/target/debug/deps rustc --crate-name autocfg --edition=2015 /tmp/tmp.PIv8cIzOKd/registry/autocfg-1.1.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=9ebcd9511383083c -C extra-filename=-9ebcd9511383083c --out-dir /tmp/tmp.PIv8cIzOKd/target/debug/deps -L dependency=/tmp/tmp.PIv8cIzOKd/target/debug/deps --cap-lints warn` 189s Compiling concurrent-queue v2.5.0 189s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=concurrent_queue CARGO_MANIFEST_DIR=/tmp/tmp.PIv8cIzOKd/registry/concurrent-queue-2.5.0 CARGO_MANIFEST_PATH=/tmp/tmp.PIv8cIzOKd/registry/concurrent-queue-2.5.0/Cargo.toml CARGO_PKG_AUTHORS='Stjepan Glavina :Taiki Endo :John Nunley ' CARGO_PKG_DESCRIPTION='Concurrent multi-producer multi-consumer queue' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=concurrent-queue CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/smol-rs/concurrent-queue' CARGO_PKG_RUST_VERSION=1.60 CARGO_PKG_VERSION=2.5.0 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=5 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.PIv8cIzOKd/target/debug/deps rustc --crate-name concurrent_queue --edition=2021 /tmp/tmp.PIv8cIzOKd/registry/concurrent-queue-2.5.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "portable-atomic", "std"))' -C metadata=7e82393ecc7068db -C extra-filename=-7e82393ecc7068db --out-dir /tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.PIv8cIzOKd/target/debug/deps --extern crossbeam_utils=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps/libcrossbeam_utils-bcaf20eecaf4c1fc.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.PIv8cIzOKd/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 189s warning: unexpected `cfg` condition name: `loom` 189s --> /usr/share/cargo/registry/concurrent-queue-2.5.0/src/bounded.rs:209:23 189s | 189s 209 | #[cfg(loom)] 189s | ^^^^ 189s | 189s = help: expected names are: `clippy`, `debug_assertions`, `doc`, `docsrs`, `doctest`, `feature`, `fmt_debug`, `miri`, `overflow_checks`, `panic`, `proc_macro`, `relocation_model`, `rustfmt`, `sanitize`, `sanitizer_cfi_generalize_pointers`, `sanitizer_cfi_normalize_integers`, `target_abi`, `target_arch`, `target_endian`, `target_env`, `target_family`, `target_feature`, `target_has_atomic`, `target_has_atomic_equal_alignment`, `target_has_atomic_load_store`, `target_os`, `target_pointer_width`, `target_thread_local`, `target_vendor`, `test`, `ub_checks`, `unix`, and `windows` 189s = help: consider using a Cargo feature instead 189s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 189s [lints.rust] 189s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(loom)'] } 189s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(loom)");` to the top of the `build.rs` 189s = note: see for more information about checking conditional configuration 189s = note: `#[warn(unexpected_cfgs)]` on by default 189s 189s warning: unexpected `cfg` condition name: `loom` 189s --> /usr/share/cargo/registry/concurrent-queue-2.5.0/src/bounded.rs:281:23 189s | 189s 281 | #[cfg(loom)] 189s | ^^^^ 189s | 189s = help: consider using a Cargo feature instead 189s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 189s [lints.rust] 189s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(loom)'] } 189s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(loom)");` to the top of the `build.rs` 189s = note: see for more information about checking conditional configuration 189s 189s warning: unexpected `cfg` condition name: `loom` 189s --> /usr/share/cargo/registry/concurrent-queue-2.5.0/src/unbounded.rs:43:15 189s | 189s 43 | #[cfg(not(loom))] 189s | ^^^^ 189s | 189s = help: consider using a Cargo feature instead 189s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 189s [lints.rust] 189s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(loom)'] } 189s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(loom)");` to the top of the `build.rs` 189s = note: see for more information about checking conditional configuration 189s 189s warning: unexpected `cfg` condition name: `loom` 189s --> /usr/share/cargo/registry/concurrent-queue-2.5.0/src/unbounded.rs:49:15 189s | 189s 49 | #[cfg(not(loom))] 189s | ^^^^ 189s | 189s = help: consider using a Cargo feature instead 189s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 189s [lints.rust] 189s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(loom)'] } 189s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(loom)");` to the top of the `build.rs` 189s = note: see for more information about checking conditional configuration 189s 189s warning: unexpected `cfg` condition name: `loom` 189s --> /usr/share/cargo/registry/concurrent-queue-2.5.0/src/unbounded.rs:54:11 189s | 189s 54 | #[cfg(loom)] 189s | ^^^^ 189s | 189s = help: consider using a Cargo feature instead 189s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 189s [lints.rust] 189s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(loom)'] } 189s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(loom)");` to the top of the `build.rs` 189s = note: see for more information about checking conditional configuration 189s 189s warning: unexpected `cfg` condition name: `loom` 189s --> /usr/share/cargo/registry/concurrent-queue-2.5.0/src/unbounded.rs:153:29 189s | 189s 153 | const_if: #[cfg(not(loom))]; 189s | ^^^^ 189s | 189s = help: consider using a Cargo feature instead 189s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 189s [lints.rust] 189s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(loom)'] } 189s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(loom)");` to the top of the `build.rs` 189s = note: see for more information about checking conditional configuration 189s 189s warning: unexpected `cfg` condition name: `loom` 189s --> /usr/share/cargo/registry/concurrent-queue-2.5.0/src/sync.rs:3:44 189s | 189s 3 | #[cfg(all(feature = "portable-atomic", not(loom)))] 189s | ^^^^ 189s | 189s = help: consider using a Cargo feature instead 189s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 189s [lints.rust] 189s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(loom)'] } 189s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(loom)");` to the top of the `build.rs` 189s = note: see for more information about checking conditional configuration 189s 189s warning: unexpected `cfg` condition name: `loom` 189s --> /usr/share/cargo/registry/concurrent-queue-2.5.0/src/sync.rs:15:49 189s | 189s 15 | #[cfg(all(not(feature = "portable-atomic"), not(loom)))] 189s | ^^^^ 189s | 189s = help: consider using a Cargo feature instead 189s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 189s [lints.rust] 189s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(loom)'] } 189s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(loom)");` to the top of the `build.rs` 189s = note: see for more information about checking conditional configuration 189s 189s warning: unexpected `cfg` condition name: `loom` 189s --> /usr/share/cargo/registry/concurrent-queue-2.5.0/src/sync.rs:31:7 189s | 189s 31 | #[cfg(loom)] 189s | ^^^^ 189s | 189s = help: consider using a Cargo feature instead 189s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 189s [lints.rust] 189s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(loom)'] } 189s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(loom)");` to the top of the `build.rs` 189s = note: see for more information about checking conditional configuration 189s 189s warning: unexpected `cfg` condition name: `loom` 189s --> /usr/share/cargo/registry/concurrent-queue-2.5.0/src/sync.rs:57:7 189s | 189s 57 | #[cfg(loom)] 189s | ^^^^ 189s | 189s = help: consider using a Cargo feature instead 189s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 189s [lints.rust] 189s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(loom)'] } 189s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(loom)");` to the top of the `build.rs` 189s = note: see for more information about checking conditional configuration 189s 189s warning: unexpected `cfg` condition name: `loom` 189s --> /usr/share/cargo/registry/concurrent-queue-2.5.0/src/sync.rs:60:11 189s | 189s 60 | #[cfg(not(loom))] 189s | ^^^^ 189s | 189s = help: consider using a Cargo feature instead 189s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 189s [lints.rust] 189s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(loom)'] } 189s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(loom)");` to the top of the `build.rs` 189s = note: see for more information about checking conditional configuration 189s 189s warning: unexpected `cfg` condition name: `loom` 189s --> /usr/share/cargo/registry/concurrent-queue-2.5.0/src/lib.rs:153:29 189s | 189s 153 | const_if: #[cfg(not(loom))]; 189s | ^^^^ 189s | 189s = help: consider using a Cargo feature instead 189s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 189s [lints.rust] 189s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(loom)'] } 189s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(loom)");` to the top of the `build.rs` 189s = note: see for more information about checking conditional configuration 189s 189s warning: unexpected `cfg` condition name: `loom` 189s --> /usr/share/cargo/registry/concurrent-queue-2.5.0/src/lib.rs:633:80 189s | 189s 633 | #[cfg(all(any(target_arch = "x86", target_arch = "x86_64"), not(miri), not(loom)))] 189s | ^^^^ 189s | 189s = help: consider using a Cargo feature instead 189s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 189s [lints.rust] 189s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(loom)'] } 189s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(loom)");` to the top of the `build.rs` 189s = note: see for more information about checking conditional configuration 189s 190s warning: `concurrent-queue` (lib) generated 14 warnings (1 duplicate) 190s Compiling cfg-if v1.0.0 190s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=cfg_if CARGO_MANIFEST_DIR=/tmp/tmp.PIv8cIzOKd/registry/cfg-if-1.0.0 CARGO_MANIFEST_PATH=/tmp/tmp.PIv8cIzOKd/registry/cfg-if-1.0.0/Cargo.toml CARGO_PKG_AUTHORS='Alex Crichton ' CARGO_PKG_DESCRIPTION='A macro to ergonomically define an item depending on a large number of #[cfg] 190s parameters. Structured like an if-else chain, the first matching branch is the 190s item that gets emitted. 190s ' CARGO_PKG_HOMEPAGE='https://github.com/alexcrichton/cfg-if' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=cfg-if CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/alexcrichton/cfg-if' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=1.0.0 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.PIv8cIzOKd/target/debug/deps rustc --crate-name cfg_if --edition=2018 /tmp/tmp.PIv8cIzOKd/registry/cfg-if-1.0.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("core"))' -C metadata=ff3ff84a061de73f -C extra-filename=-ff3ff84a061de73f --out-dir /tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.PIv8cIzOKd/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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.PIv8cIzOKd/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 190s warning: `cfg-if` (lib) generated 1 warning (1 duplicate) 190s Compiling event-listener v5.4.0 190s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=event_listener CARGO_MANIFEST_DIR=/tmp/tmp.PIv8cIzOKd/registry/event-listener-5.4.0 CARGO_MANIFEST_PATH=/tmp/tmp.PIv8cIzOKd/registry/event-listener-5.4.0/Cargo.toml CARGO_PKG_AUTHORS='Stjepan Glavina :John Nunley ' CARGO_PKG_DESCRIPTION='Notify async tasks or threads' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=event-listener CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/smol-rs/event-listener' CARGO_PKG_RUST_VERSION=1.60 CARGO_PKG_VERSION=5.4.0 CARGO_PKG_VERSION_MAJOR=5 CARGO_PKG_VERSION_MINOR=4 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.PIv8cIzOKd/target/debug/deps rustc --crate-name event_listener --edition=2021 /tmp/tmp.PIv8cIzOKd/registry/event-listener-5.4.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --warn=unexpected_cfgs --check-cfg 'cfg(loom)' --cfg 'feature="default"' --cfg 'feature="parking"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("critical-section", "default", "parking", "std"))' -C metadata=4260d59234261e59 -C extra-filename=-4260d59234261e59 --out-dir /tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.PIv8cIzOKd/target/debug/deps --extern concurrent_queue=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps/libconcurrent_queue-7e82393ecc7068db.rmeta --extern parking=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps/libparking-0a38dc17b1bc33e2.rmeta --extern pin_project_lite=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps/libpin_project_lite-5dc815523e98d889.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.PIv8cIzOKd/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 190s warning: unexpected `cfg` condition value: `portable-atomic` 190s --> /usr/share/cargo/registry/event-listener-5.4.0/src/lib.rs:1362:15 190s | 190s 1362 | #[cfg(not(feature = "portable-atomic"))] 190s | ^^^^^^^^^^^^^^^^^^^^^^^^^^^ 190s | 190s = note: expected values for `feature` are: `critical-section`, `default`, `parking`, and `std` 190s = help: consider adding `portable-atomic` as a feature in `Cargo.toml` 190s = note: see for more information about checking conditional configuration 190s = note: requested on the command line with `-W unexpected-cfgs` 190s 190s warning: unexpected `cfg` condition value: `portable-atomic` 190s --> /usr/share/cargo/registry/event-listener-5.4.0/src/lib.rs:1364:15 190s | 190s 1364 | #[cfg(not(feature = "portable-atomic"))] 190s | ^^^^^^^^^^^^^^^^^^^^^^^^^^^ 190s | 190s = note: expected values for `feature` are: `critical-section`, `default`, `parking`, and `std` 190s = help: consider adding `portable-atomic` as a feature in `Cargo.toml` 190s = note: see for more information about checking conditional configuration 190s 190s warning: unexpected `cfg` condition value: `portable-atomic` 190s --> /usr/share/cargo/registry/event-listener-5.4.0/src/lib.rs:1367:11 190s | 190s 1367 | #[cfg(feature = "portable-atomic")] 190s | ^^^^^^^^^^^^^^^^^^^^^^^^^^^ 190s | 190s = note: expected values for `feature` are: `critical-section`, `default`, `parking`, and `std` 190s = help: consider adding `portable-atomic` as a feature in `Cargo.toml` 190s = note: see for more information about checking conditional configuration 190s 190s warning: unexpected `cfg` condition value: `portable-atomic` 190s --> /usr/share/cargo/registry/event-listener-5.4.0/src/lib.rs:1369:11 190s | 190s 1369 | #[cfg(feature = "portable-atomic")] 190s | ^^^^^^^^^^^^^^^^^^^^^^^^^^^ 190s | 190s = note: expected values for `feature` are: `critical-section`, `default`, `parking`, and `std` 190s = help: consider adding `portable-atomic` as a feature in `Cargo.toml` 190s = note: see for more information about checking conditional configuration 190s 190s warning: `event-listener` (lib) generated 5 warnings (1 duplicate) 190s Compiling equivalent v1.0.1 190s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=equivalent CARGO_MANIFEST_DIR=/tmp/tmp.PIv8cIzOKd/registry/equivalent-1.0.1 CARGO_MANIFEST_PATH=/tmp/tmp.PIv8cIzOKd/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.PIv8cIzOKd/target/debug/deps rustc --crate-name equivalent --edition=2015 /tmp/tmp.PIv8cIzOKd/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.PIv8cIzOKd/target/debug/deps -L dependency=/tmp/tmp.PIv8cIzOKd/target/debug/deps --cap-lints warn` 190s Compiling version_check v0.9.5 190s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=version_check CARGO_MANIFEST_DIR=/tmp/tmp.PIv8cIzOKd/registry/version_check-0.9.5 CARGO_MANIFEST_PATH=/tmp/tmp.PIv8cIzOKd/registry/version_check-0.9.5/Cargo.toml CARGO_PKG_AUTHORS='Sergio Benitez ' CARGO_PKG_DESCRIPTION='Tiny crate to check the version of the installed/running rustc.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=version_check CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/SergioBenitez/version_check' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.9.5 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=9 CARGO_PKG_VERSION_PATCH=5 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.PIv8cIzOKd/target/debug/deps rustc --crate-name version_check --edition=2015 /tmp/tmp.PIv8cIzOKd/registry/version_check-0.9.5/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=20e83cdf64ec3211 -C extra-filename=-20e83cdf64ec3211 --out-dir /tmp/tmp.PIv8cIzOKd/target/debug/deps -L dependency=/tmp/tmp.PIv8cIzOKd/target/debug/deps --cap-lints warn` 190s Compiling typenum v1.17.0 190s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_main CARGO_MANIFEST_DIR=/tmp/tmp.PIv8cIzOKd/registry/typenum-1.17.0 CARGO_MANIFEST_PATH=/tmp/tmp.PIv8cIzOKd/registry/typenum-1.17.0/Cargo.toml CARGO_PKG_AUTHORS='Paho Lurie-Gregg :Andre Bogus ' CARGO_PKG_DESCRIPTION='Typenum is a Rust library for type-level numbers evaluated at 190s compile time. It currently supports bits, unsigned integers, and signed 190s integers. It also provides a type-level array of type-level numbers, but its 190s implementation is incomplete.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=typenum CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/paholg/typenum' CARGO_PKG_RUST_VERSION=1.37.0 CARGO_PKG_VERSION=1.17.0 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=17 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.PIv8cIzOKd/target/debug/deps rustc --crate-name build_script_main --edition=2018 /tmp/tmp.PIv8cIzOKd/registry/typenum-1.17.0/build/main.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("const-generics", "force_unix_path_separator", "i128", "no_std", "strict"))' -C metadata=ef2812a6bded5202 -C extra-filename=-ef2812a6bded5202 --out-dir /tmp/tmp.PIv8cIzOKd/target/debug/build/typenum-ef2812a6bded5202 -L dependency=/tmp/tmp.PIv8cIzOKd/target/debug/deps --cap-lints warn` 191s Compiling hashbrown v0.14.5 191s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=hashbrown CARGO_MANIFEST_DIR=/tmp/tmp.PIv8cIzOKd/registry/hashbrown-0.14.5 CARGO_MANIFEST_PATH=/tmp/tmp.PIv8cIzOKd/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.PIv8cIzOKd/target/debug/deps rustc --crate-name hashbrown --edition=2021 /tmp/tmp.PIv8cIzOKd/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.PIv8cIzOKd/target/debug/deps -L dependency=/tmp/tmp.PIv8cIzOKd/target/debug/deps --cap-lints warn` 191s warning: unexpected `cfg` condition value: `nightly` 191s --> /tmp/tmp.PIv8cIzOKd/registry/hashbrown-0.14.5/src/lib.rs:14:5 191s | 191s 14 | feature = "nightly", 191s | ^^^^^^^^^^^^^^^^^^^ 191s | 191s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 191s = help: consider adding `nightly` as a feature in `Cargo.toml` 191s = note: see for more information about checking conditional configuration 191s = note: `#[warn(unexpected_cfgs)]` on by default 191s 191s warning: unexpected `cfg` condition value: `nightly` 191s --> /tmp/tmp.PIv8cIzOKd/registry/hashbrown-0.14.5/src/lib.rs:39:13 191s | 191s 39 | #![cfg_attr(feature = "nightly", warn(fuzzy_provenance_casts))] 191s | ^^^^^^^^^^^^^^^^^^^ 191s | 191s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 191s = help: consider adding `nightly` as a feature in `Cargo.toml` 191s = note: see for more information about checking conditional configuration 191s 191s warning: unexpected `cfg` condition value: `nightly` 191s --> /tmp/tmp.PIv8cIzOKd/registry/hashbrown-0.14.5/src/lib.rs:40:13 191s | 191s 40 | #![cfg_attr(feature = "nightly", allow(internal_features))] 191s | ^^^^^^^^^^^^^^^^^^^ 191s | 191s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 191s = help: consider adding `nightly` as a feature in `Cargo.toml` 191s = note: see for more information about checking conditional configuration 191s 191s warning: unexpected `cfg` condition value: `nightly` 191s --> /tmp/tmp.PIv8cIzOKd/registry/hashbrown-0.14.5/src/lib.rs:49:7 191s | 191s 49 | #[cfg(feature = "nightly")] 191s | ^^^^^^^^^^^^^^^^^^^ 191s | 191s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 191s = help: consider adding `nightly` as a feature in `Cargo.toml` 191s = note: see for more information about checking conditional configuration 191s 191s warning: unexpected `cfg` condition value: `nightly` 191s --> /tmp/tmp.PIv8cIzOKd/registry/hashbrown-0.14.5/src/macros.rs:59:7 191s | 191s 59 | #[cfg(feature = "nightly")] 191s | ^^^^^^^^^^^^^^^^^^^ 191s | 191s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 191s = help: consider adding `nightly` as a feature in `Cargo.toml` 191s = note: see for more information about checking conditional configuration 191s 191s warning: unexpected `cfg` condition value: `nightly` 191s --> /tmp/tmp.PIv8cIzOKd/registry/hashbrown-0.14.5/src/macros.rs:65:11 191s | 191s 65 | #[cfg(not(feature = "nightly"))] 191s | ^^^^^^^^^^^^^^^^^^^ 191s | 191s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 191s = help: consider adding `nightly` as a feature in `Cargo.toml` 191s = note: see for more information about checking conditional configuration 191s 191s warning: unexpected `cfg` condition value: `nightly` 191s --> /tmp/tmp.PIv8cIzOKd/registry/hashbrown-0.14.5/src/raw/mod.rs:53:11 191s | 191s 53 | #[cfg(not(feature = "nightly"))] 191s | ^^^^^^^^^^^^^^^^^^^ 191s | 191s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 191s = help: consider adding `nightly` as a feature in `Cargo.toml` 191s = note: see for more information about checking conditional configuration 191s 191s warning: unexpected `cfg` condition value: `nightly` 191s --> /tmp/tmp.PIv8cIzOKd/registry/hashbrown-0.14.5/src/raw/mod.rs:55:11 191s | 191s 55 | #[cfg(not(feature = "nightly"))] 191s | ^^^^^^^^^^^^^^^^^^^ 191s | 191s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 191s = help: consider adding `nightly` as a feature in `Cargo.toml` 191s = note: see for more information about checking conditional configuration 191s 191s warning: unexpected `cfg` condition value: `nightly` 191s --> /tmp/tmp.PIv8cIzOKd/registry/hashbrown-0.14.5/src/raw/mod.rs:57:7 191s | 191s 57 | #[cfg(feature = "nightly")] 191s | ^^^^^^^^^^^^^^^^^^^ 191s | 191s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 191s = help: consider adding `nightly` as a feature in `Cargo.toml` 191s = note: see for more information about checking conditional configuration 191s 191s warning: unexpected `cfg` condition value: `nightly` 191s --> /tmp/tmp.PIv8cIzOKd/registry/hashbrown-0.14.5/src/raw/mod.rs:3549:7 191s | 191s 3549 | #[cfg(feature = "nightly")] 191s | ^^^^^^^^^^^^^^^^^^^ 191s | 191s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 191s = help: consider adding `nightly` as a feature in `Cargo.toml` 191s = note: see for more information about checking conditional configuration 191s 191s warning: unexpected `cfg` condition value: `nightly` 191s --> /tmp/tmp.PIv8cIzOKd/registry/hashbrown-0.14.5/src/raw/mod.rs:3661:7 191s | 191s 3661 | #[cfg(feature = "nightly")] 191s | ^^^^^^^^^^^^^^^^^^^ 191s | 191s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 191s = help: consider adding `nightly` as a feature in `Cargo.toml` 191s = note: see for more information about checking conditional configuration 191s 191s warning: unexpected `cfg` condition value: `nightly` 191s --> /tmp/tmp.PIv8cIzOKd/registry/hashbrown-0.14.5/src/raw/mod.rs:3678:11 191s | 191s 3678 | #[cfg(not(feature = "nightly"))] 191s | ^^^^^^^^^^^^^^^^^^^ 191s | 191s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 191s = help: consider adding `nightly` as a feature in `Cargo.toml` 191s = note: see for more information about checking conditional configuration 191s 191s warning: unexpected `cfg` condition value: `nightly` 191s --> /tmp/tmp.PIv8cIzOKd/registry/hashbrown-0.14.5/src/raw/mod.rs:4304:7 191s | 191s 4304 | #[cfg(feature = "nightly")] 191s | ^^^^^^^^^^^^^^^^^^^ 191s | 191s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 191s = help: consider adding `nightly` as a feature in `Cargo.toml` 191s = note: see for more information about checking conditional configuration 191s 191s warning: unexpected `cfg` condition value: `nightly` 191s --> /tmp/tmp.PIv8cIzOKd/registry/hashbrown-0.14.5/src/raw/mod.rs:4319:11 191s | 191s 4319 | #[cfg(not(feature = "nightly"))] 191s | ^^^^^^^^^^^^^^^^^^^ 191s | 191s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 191s = help: consider adding `nightly` as a feature in `Cargo.toml` 191s = note: see for more information about checking conditional configuration 191s 191s warning: unexpected `cfg` condition value: `nightly` 191s --> /tmp/tmp.PIv8cIzOKd/registry/hashbrown-0.14.5/src/raw/alloc.rs:7:7 191s | 191s 7 | #[cfg(feature = "nightly")] 191s | ^^^^^^^^^^^^^^^^^^^ 191s | 191s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 191s = help: consider adding `nightly` as a feature in `Cargo.toml` 191s = note: see for more information about checking conditional configuration 191s 191s warning: unexpected `cfg` condition value: `nightly` 191s --> /tmp/tmp.PIv8cIzOKd/registry/hashbrown-0.14.5/src/raw/alloc.rs:28:15 191s | 191s 28 | #[cfg(all(not(feature = "nightly"), feature = "allocator-api2"))] 191s | ^^^^^^^^^^^^^^^^^^^ 191s | 191s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 191s = help: consider adding `nightly` as a feature in `Cargo.toml` 191s = note: see for more information about checking conditional configuration 191s 191s warning: unexpected `cfg` condition value: `nightly` 191s --> /tmp/tmp.PIv8cIzOKd/registry/hashbrown-0.14.5/src/raw/alloc.rs:51:15 191s | 191s 51 | #[cfg(not(any(feature = "nightly", feature = "allocator-api2")))] 191s | ^^^^^^^^^^^^^^^^^^^ 191s | 191s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 191s = help: consider adding `nightly` as a feature in `Cargo.toml` 191s = note: see for more information about checking conditional configuration 191s 191s warning: unexpected `cfg` condition value: `nightly` 191s --> /tmp/tmp.PIv8cIzOKd/registry/hashbrown-0.14.5/src/raw/mod.rs:944:32 191s | 191s 944 | #[cfg(any(feature = "raw", feature = "nightly"))] 191s | ^^^^^^^^^^^^^^^^^^^ 191s | 191s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 191s = help: consider adding `nightly` as a feature in `Cargo.toml` 191s = note: see for more information about checking conditional configuration 191s 191s warning: unexpected `cfg` condition value: `rkyv` 191s --> /tmp/tmp.PIv8cIzOKd/registry/hashbrown-0.14.5/src/external_trait_impls/mod.rs:3:7 191s | 191s 3 | #[cfg(feature = "rkyv")] 191s | ^^^^^^^^^^^^^^^^ 191s | 191s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 191s = help: consider adding `rkyv` as a feature in `Cargo.toml` 191s = note: see for more information about checking conditional configuration 191s 191s warning: unexpected `cfg` condition value: `nightly` 191s --> /tmp/tmp.PIv8cIzOKd/registry/hashbrown-0.14.5/src/map.rs:242:11 191s | 191s 242 | #[cfg(not(feature = "nightly"))] 191s | ^^^^^^^^^^^^^^^^^^^ 191s | 191s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 191s = help: consider adding `nightly` as a feature in `Cargo.toml` 191s = note: see for more information about checking conditional configuration 191s 191s warning: unexpected `cfg` condition value: `nightly` 191s --> /tmp/tmp.PIv8cIzOKd/registry/hashbrown-0.14.5/src/map.rs:255:7 191s | 191s 255 | #[cfg(feature = "nightly")] 191s | ^^^^^^^^^^^^^^^^^^^ 191s | 191s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 191s = help: consider adding `nightly` as a feature in `Cargo.toml` 191s = note: see for more information about checking conditional configuration 191s 191s warning: unexpected `cfg` condition value: `nightly` 191s --> /tmp/tmp.PIv8cIzOKd/registry/hashbrown-0.14.5/src/map.rs:6517:11 191s | 191s 6517 | #[cfg(feature = "nightly")] 191s | ^^^^^^^^^^^^^^^^^^^ 191s | 191s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 191s = help: consider adding `nightly` as a feature in `Cargo.toml` 191s = note: see for more information about checking conditional configuration 191s 191s warning: unexpected `cfg` condition value: `nightly` 191s --> /tmp/tmp.PIv8cIzOKd/registry/hashbrown-0.14.5/src/map.rs:6523:11 191s | 191s 6523 | #[cfg(feature = "nightly")] 191s | ^^^^^^^^^^^^^^^^^^^ 191s | 191s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 191s = help: consider adding `nightly` as a feature in `Cargo.toml` 191s = note: see for more information about checking conditional configuration 191s 191s warning: unexpected `cfg` condition value: `nightly` 191s --> /tmp/tmp.PIv8cIzOKd/registry/hashbrown-0.14.5/src/map.rs:6591:11 191s | 191s 6591 | #[cfg(feature = "nightly")] 191s | ^^^^^^^^^^^^^^^^^^^ 191s | 191s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 191s = help: consider adding `nightly` as a feature in `Cargo.toml` 191s = note: see for more information about checking conditional configuration 191s 191s warning: unexpected `cfg` condition value: `nightly` 191s --> /tmp/tmp.PIv8cIzOKd/registry/hashbrown-0.14.5/src/map.rs:6597:11 191s | 191s 6597 | #[cfg(feature = "nightly")] 191s | ^^^^^^^^^^^^^^^^^^^ 191s | 191s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 191s = help: consider adding `nightly` as a feature in `Cargo.toml` 191s = note: see for more information about checking conditional configuration 191s 191s warning: unexpected `cfg` condition value: `nightly` 191s --> /tmp/tmp.PIv8cIzOKd/registry/hashbrown-0.14.5/src/map.rs:6651:11 191s | 191s 6651 | #[cfg(feature = "nightly")] 191s | ^^^^^^^^^^^^^^^^^^^ 191s | 191s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 191s = help: consider adding `nightly` as a feature in `Cargo.toml` 191s = note: see for more information about checking conditional configuration 191s 191s warning: unexpected `cfg` condition value: `nightly` 191s --> /tmp/tmp.PIv8cIzOKd/registry/hashbrown-0.14.5/src/map.rs:6657:11 191s | 191s 6657 | #[cfg(feature = "nightly")] 191s | ^^^^^^^^^^^^^^^^^^^ 191s | 191s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 191s = help: consider adding `nightly` as a feature in `Cargo.toml` 191s = note: see for more information about checking conditional configuration 191s 191s warning: unexpected `cfg` condition value: `nightly` 191s --> /tmp/tmp.PIv8cIzOKd/registry/hashbrown-0.14.5/src/set.rs:1359:11 191s | 191s 1359 | #[cfg(feature = "nightly")] 191s | ^^^^^^^^^^^^^^^^^^^ 191s | 191s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 191s = help: consider adding `nightly` as a feature in `Cargo.toml` 191s = note: see for more information about checking conditional configuration 191s 191s warning: unexpected `cfg` condition value: `nightly` 191s --> /tmp/tmp.PIv8cIzOKd/registry/hashbrown-0.14.5/src/set.rs:1365:11 191s | 191s 1365 | #[cfg(feature = "nightly")] 191s | ^^^^^^^^^^^^^^^^^^^ 191s | 191s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 191s = help: consider adding `nightly` as a feature in `Cargo.toml` 191s = note: see for more information about checking conditional configuration 191s 191s warning: unexpected `cfg` condition value: `nightly` 191s --> /tmp/tmp.PIv8cIzOKd/registry/hashbrown-0.14.5/src/set.rs:1383:11 191s | 191s 1383 | #[cfg(feature = "nightly")] 191s | ^^^^^^^^^^^^^^^^^^^ 191s | 191s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 191s = help: consider adding `nightly` as a feature in `Cargo.toml` 191s = note: see for more information about checking conditional configuration 191s 191s warning: unexpected `cfg` condition value: `nightly` 191s --> /tmp/tmp.PIv8cIzOKd/registry/hashbrown-0.14.5/src/set.rs:1389:11 191s | 191s 1389 | #[cfg(feature = "nightly")] 191s | ^^^^^^^^^^^^^^^^^^^ 191s | 191s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 191s = help: consider adding `nightly` as a feature in `Cargo.toml` 191s = note: see for more information about checking conditional configuration 191s 191s warning: `hashbrown` (lib) generated 31 warnings 191s Compiling indexmap v2.7.0 191s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=indexmap CARGO_MANIFEST_DIR=/tmp/tmp.PIv8cIzOKd/registry/indexmap-2.7.0 CARGO_MANIFEST_PATH=/tmp/tmp.PIv8cIzOKd/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.PIv8cIzOKd/target/debug/deps rustc --crate-name indexmap --edition=2021 /tmp/tmp.PIv8cIzOKd/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.PIv8cIzOKd/target/debug/deps -L dependency=/tmp/tmp.PIv8cIzOKd/target/debug/deps --extern equivalent=/tmp/tmp.PIv8cIzOKd/target/debug/deps/libequivalent-a11b0a19a3bf2c19.rmeta --extern hashbrown=/tmp/tmp.PIv8cIzOKd/target/debug/deps/libhashbrown-e14e27c8ff208110.rmeta --cap-lints warn` 191s warning: unexpected `cfg` condition value: `borsh` 191s --> /tmp/tmp.PIv8cIzOKd/registry/indexmap-2.7.0/src/lib.rs:117:7 191s | 191s 117 | #[cfg(feature = "borsh")] 191s | ^^^^^^^^^^^^^^^^^ 191s | 191s = note: expected values for `feature` are: `arbitrary`, `default`, `rayon`, `serde`, `std`, and `test_debug` 191s = help: consider adding `borsh` as a feature in `Cargo.toml` 191s = note: see for more information about checking conditional configuration 191s = note: `#[warn(unexpected_cfgs)]` on by default 191s 191s warning: unexpected `cfg` condition value: `rustc-rayon` 191s --> /tmp/tmp.PIv8cIzOKd/registry/indexmap-2.7.0/src/lib.rs:131:7 191s | 191s 131 | #[cfg(feature = "rustc-rayon")] 191s | ^^^^^^^^^^^^^^^^^^^^^^^ 191s | 191s = note: expected values for `feature` are: `arbitrary`, `default`, `rayon`, `serde`, `std`, and `test_debug` 191s = help: consider adding `rustc-rayon` as a feature in `Cargo.toml` 191s = note: see for more information about checking conditional configuration 191s 191s warning: unexpected `cfg` condition value: `quickcheck` 191s --> /tmp/tmp.PIv8cIzOKd/registry/indexmap-2.7.0/src/arbitrary.rs:38:7 191s | 191s 38 | #[cfg(feature = "quickcheck")] 191s | ^^^^^^^^^^^^^^^^^^^^^^ 191s | 191s = note: expected values for `feature` are: `arbitrary`, `default`, `rayon`, `serde`, `std`, and `test_debug` 191s = help: consider adding `quickcheck` as a feature in `Cargo.toml` 191s = note: see for more information about checking conditional configuration 191s 191s warning: unexpected `cfg` condition value: `rustc-rayon` 191s --> /tmp/tmp.PIv8cIzOKd/registry/indexmap-2.7.0/src/macros.rs:128:30 191s | 191s 128 | #[cfg(any(feature = "rayon", feature = "rustc-rayon"))] 191s | ^^^^^^^^^^^^^^^^^^^^^^^ 191s | 191s = note: expected values for `feature` are: `arbitrary`, `default`, `rayon`, `serde`, `std`, and `test_debug` 191s = help: consider adding `rustc-rayon` as a feature in `Cargo.toml` 191s = note: see for more information about checking conditional configuration 191s 191s warning: unexpected `cfg` condition value: `rustc-rayon` 191s --> /tmp/tmp.PIv8cIzOKd/registry/indexmap-2.7.0/src/macros.rs:153:30 191s | 191s 153 | #[cfg(any(feature = "rayon", feature = "rustc-rayon"))] 191s | ^^^^^^^^^^^^^^^^^^^^^^^ 191s | 191s = note: expected values for `feature` are: `arbitrary`, `default`, `rayon`, `serde`, `std`, and `test_debug` 191s = help: consider adding `rustc-rayon` as a feature in `Cargo.toml` 191s = note: see for more information about checking conditional configuration 191s 192s warning: `indexmap` (lib) generated 5 warnings 192s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CFG_PANIC=unwind CARGO_CFG_TARGET_ABI='' CARGO_CFG_TARGET_ARCH=s390x CARGO_CFG_TARGET_ENDIAN=big CARGO_CFG_TARGET_ENV=gnu CARGO_CFG_TARGET_FAMILY=unix CARGO_CFG_TARGET_HAS_ATOMIC=128,16,32,64,8,ptr CARGO_CFG_TARGET_OS=linux CARGO_CFG_TARGET_POINTER_WIDTH=64 CARGO_CFG_TARGET_VENDOR=unknown CARGO_CFG_UNIX='' CARGO_ENCODED_RUSTFLAGS='-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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0--remap-path-prefix/tmp/tmp.PIv8cIzOKd/registry=/usr/share/cargo/registry-Ctarget-feature=+backchain' CARGO_MANIFEST_DIR=/tmp/tmp.PIv8cIzOKd/registry/typenum-1.17.0 CARGO_MANIFEST_PATH=/tmp/tmp.PIv8cIzOKd/registry/typenum-1.17.0/Cargo.toml CARGO_PKG_AUTHORS='Paho Lurie-Gregg :Andre Bogus ' CARGO_PKG_DESCRIPTION='Typenum is a Rust library for type-level numbers evaluated at 192s compile time. It currently supports bits, unsigned integers, and signed 192s integers. It also provides a type-level array of type-level numbers, but its 192s implementation is incomplete.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=typenum CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/paholg/typenum' CARGO_PKG_RUST_VERSION=1.37.0 CARGO_PKG_VERSION=1.17.0 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=17 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' DEBUG=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.PIv8cIzOKd/target/debug/deps:/tmp/tmp.PIv8cIzOKd/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/build/typenum-b1daa52c37018028/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.PIv8cIzOKd/target/debug/build/typenum-ef2812a6bded5202/build-script-main` 192s [typenum 1.17.0] cargo:rerun-if-changed=build/main.rs 192s Compiling generic-array v0.14.7 192s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.PIv8cIzOKd/registry/generic-array-0.14.7 CARGO_MANIFEST_PATH=/tmp/tmp.PIv8cIzOKd/registry/generic-array-0.14.7/Cargo.toml CARGO_PKG_AUTHORS='Bartłomiej Kamiński :Aaron Trent ' CARGO_PKG_DESCRIPTION='Generic types implementing functionality of arrays' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=generic-array CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/fizyk20/generic-array.git' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.14.7 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=14 CARGO_PKG_VERSION_PATCH=7 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.PIv8cIzOKd/target/debug/deps rustc --crate-name build_script_build --edition=2015 /tmp/tmp.PIv8cIzOKd/registry/generic-array-0.14.7/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="more_lengths"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("more_lengths", "serde", "zeroize"))' -C metadata=160edb9b35222b14 -C extra-filename=-160edb9b35222b14 --out-dir /tmp/tmp.PIv8cIzOKd/target/debug/build/generic-array-160edb9b35222b14 -L dependency=/tmp/tmp.PIv8cIzOKd/target/debug/deps --extern version_check=/tmp/tmp.PIv8cIzOKd/target/debug/deps/libversion_check-20e83cdf64ec3211.rlib --cap-lints warn` 192s Compiling event-listener-strategy v0.5.3 192s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=event_listener_strategy CARGO_MANIFEST_DIR=/tmp/tmp.PIv8cIzOKd/registry/event-listener-strategy-0.5.3 CARGO_MANIFEST_PATH=/tmp/tmp.PIv8cIzOKd/registry/event-listener-strategy-0.5.3/Cargo.toml CARGO_PKG_AUTHORS='John Nunley ' CARGO_PKG_DESCRIPTION='Block or poll on event_listener easily' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=event-listener-strategy CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/smol-rs/event-listener-strategy' CARGO_PKG_RUST_VERSION=1.60 CARGO_PKG_VERSION=0.5.3 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=5 CARGO_PKG_VERSION_PATCH=3 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.PIv8cIzOKd/target/debug/deps rustc --crate-name event_listener_strategy --edition=2021 /tmp/tmp.PIv8cIzOKd/registry/event-listener-strategy-0.5.3/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --warn=unexpected_cfgs --check-cfg 'cfg(wasm_bindgen_unstable_test_coverage)' --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "std"))' -C metadata=53ebcc1cb10a7931 -C extra-filename=-53ebcc1cb10a7931 --out-dir /tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.PIv8cIzOKd/target/debug/deps --extern event_listener=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps/libevent_listener-4260d59234261e59.rmeta --extern pin_project_lite=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps/libpin_project_lite-5dc815523e98d889.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.PIv8cIzOKd/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 192s warning: `event-listener-strategy` (lib) generated 1 warning (1 duplicate) 192s Compiling winnow v0.6.18 192s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=winnow CARGO_MANIFEST_DIR=/tmp/tmp.PIv8cIzOKd/registry/winnow-0.6.18 CARGO_MANIFEST_PATH=/tmp/tmp.PIv8cIzOKd/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.PIv8cIzOKd/target/debug/deps rustc --crate-name winnow --edition=2021 /tmp/tmp.PIv8cIzOKd/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.PIv8cIzOKd/target/debug/deps -L dependency=/tmp/tmp.PIv8cIzOKd/target/debug/deps --cap-lints warn` 192s warning: unexpected `cfg` condition value: `debug` 192s --> /tmp/tmp.PIv8cIzOKd/registry/winnow-0.6.18/src/combinator/debug/mod.rs:1:13 192s | 192s 1 | #![cfg_attr(feature = "debug", allow(clippy::std_instead_of_core))] 192s | ^^^^^^^^^^^^^^^^^ 192s | 192s = note: expected values for `feature` are: `alloc`, `default`, `simd`, `std`, `unstable-doc`, and `unstable-recover` 192s = help: consider adding `debug` as a feature in `Cargo.toml` 192s = note: see for more information about checking conditional configuration 192s = note: `#[warn(unexpected_cfgs)]` on by default 192s 192s warning: unexpected `cfg` condition value: `debug` 192s --> /tmp/tmp.PIv8cIzOKd/registry/winnow-0.6.18/src/combinator/debug/mod.rs:3:7 192s | 192s 3 | #[cfg(feature = "debug")] 192s | ^^^^^^^^^^^^^^^^^ 192s | 192s = note: expected values for `feature` are: `alloc`, `default`, `simd`, `std`, `unstable-doc`, and `unstable-recover` 192s = help: consider adding `debug` as a feature in `Cargo.toml` 192s = note: see for more information about checking conditional configuration 192s 192s warning: unexpected `cfg` condition value: `debug` 192s --> /tmp/tmp.PIv8cIzOKd/registry/winnow-0.6.18/src/combinator/debug/mod.rs:37:16 192s | 192s 37 | #[cfg_attr(not(feature = "debug"), allow(unused_variables))] 192s | ^^^^^^^^^^^^^^^^^ 192s | 192s = note: expected values for `feature` are: `alloc`, `default`, `simd`, `std`, `unstable-doc`, and `unstable-recover` 192s = help: consider adding `debug` as a feature in `Cargo.toml` 192s = note: see for more information about checking conditional configuration 192s 192s warning: unexpected `cfg` condition value: `debug` 192s --> /tmp/tmp.PIv8cIzOKd/registry/winnow-0.6.18/src/combinator/debug/mod.rs:38:16 192s | 192s 38 | #[cfg_attr(not(feature = "debug"), allow(unused_mut))] 192s | ^^^^^^^^^^^^^^^^^ 192s | 192s = note: expected values for `feature` are: `alloc`, `default`, `simd`, `std`, `unstable-doc`, and `unstable-recover` 192s = help: consider adding `debug` as a feature in `Cargo.toml` 192s = note: see for more information about checking conditional configuration 192s 192s warning: unexpected `cfg` condition value: `debug` 192s --> /tmp/tmp.PIv8cIzOKd/registry/winnow-0.6.18/src/combinator/debug/mod.rs:39:16 192s | 192s 39 | #[cfg_attr(not(feature = "debug"), inline(always))] 192s | ^^^^^^^^^^^^^^^^^ 192s | 192s = note: expected values for `feature` are: `alloc`, `default`, `simd`, `std`, `unstable-doc`, and `unstable-recover` 192s = help: consider adding `debug` as a feature in `Cargo.toml` 192s = note: see for more information about checking conditional configuration 192s 192s warning: unexpected `cfg` condition value: `debug` 192s --> /tmp/tmp.PIv8cIzOKd/registry/winnow-0.6.18/src/combinator/debug/mod.rs:54:16 192s | 192s 54 | #[cfg_attr(not(feature = "debug"), allow(unused_variables))] 192s | ^^^^^^^^^^^^^^^^^ 192s | 192s = note: expected values for `feature` are: `alloc`, `default`, `simd`, `std`, `unstable-doc`, and `unstable-recover` 192s = help: consider adding `debug` as a feature in `Cargo.toml` 192s = note: see for more information about checking conditional configuration 192s 192s warning: unexpected `cfg` condition value: `debug` 192s --> /tmp/tmp.PIv8cIzOKd/registry/winnow-0.6.18/src/combinator/debug/mod.rs:79:7 192s | 192s 79 | #[cfg(feature = "debug")] 192s | ^^^^^^^^^^^^^^^^^ 192s | 192s = note: expected values for `feature` are: `alloc`, `default`, `simd`, `std`, `unstable-doc`, and `unstable-recover` 192s = help: consider adding `debug` as a feature in `Cargo.toml` 192s = note: see for more information about checking conditional configuration 192s 192s warning: unexpected `cfg` condition value: `debug` 192s --> /tmp/tmp.PIv8cIzOKd/registry/winnow-0.6.18/src/combinator/debug/mod.rs:44:11 192s | 192s 44 | #[cfg(feature = "debug")] 192s | ^^^^^^^^^^^^^^^^^ 192s | 192s = note: expected values for `feature` are: `alloc`, `default`, `simd`, `std`, `unstable-doc`, and `unstable-recover` 192s = help: consider adding `debug` as a feature in `Cargo.toml` 192s = note: see for more information about checking conditional configuration 192s 192s warning: unexpected `cfg` condition value: `debug` 192s --> /tmp/tmp.PIv8cIzOKd/registry/winnow-0.6.18/src/combinator/debug/mod.rs:48:15 192s | 192s 48 | #[cfg(not(feature = "debug"))] 192s | ^^^^^^^^^^^^^^^^^ 192s | 192s = note: expected values for `feature` are: `alloc`, `default`, `simd`, `std`, `unstable-doc`, and `unstable-recover` 192s = help: consider adding `debug` as a feature in `Cargo.toml` 192s = note: see for more information about checking conditional configuration 192s 192s warning: unexpected `cfg` condition value: `debug` 192s --> /tmp/tmp.PIv8cIzOKd/registry/winnow-0.6.18/src/combinator/debug/mod.rs:59:11 192s | 192s 59 | #[cfg(feature = "debug")] 192s | ^^^^^^^^^^^^^^^^^ 192s | 192s = note: expected values for `feature` are: `alloc`, `default`, `simd`, `std`, `unstable-doc`, and `unstable-recover` 192s = help: consider adding `debug` as a feature in `Cargo.toml` 192s = note: see for more information about checking conditional configuration 192s 193s warning: `winnow` (lib) generated 10 warnings 193s Compiling toml_datetime v0.6.8 193s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=toml_datetime CARGO_MANIFEST_DIR=/tmp/tmp.PIv8cIzOKd/registry/toml_datetime-0.6.8 CARGO_MANIFEST_PATH=/tmp/tmp.PIv8cIzOKd/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.PIv8cIzOKd/target/debug/deps rustc --crate-name toml_datetime --edition=2021 /tmp/tmp.PIv8cIzOKd/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.PIv8cIzOKd/target/debug/deps -L dependency=/tmp/tmp.PIv8cIzOKd/target/debug/deps --cap-lints warn` 193s Compiling futures-io v0.3.31 193s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=futures_io CARGO_MANIFEST_DIR=/tmp/tmp.PIv8cIzOKd/registry/futures-io-0.3.31 CARGO_MANIFEST_PATH=/tmp/tmp.PIv8cIzOKd/registry/futures-io-0.3.31/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='The `AsyncRead`, `AsyncWrite`, `AsyncSeek`, and `AsyncBufRead` traits for the futures-rs library. 193s ' CARGO_PKG_HOMEPAGE='https://rust-lang.github.io/futures-rs' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=futures-io CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/futures-rs' CARGO_PKG_RUST_VERSION=1.36 CARGO_PKG_VERSION=0.3.31 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=31 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.PIv8cIzOKd/target/debug/deps rustc --crate-name futures_io --edition=2018 /tmp/tmp.PIv8cIzOKd/registry/futures-io-0.3.31/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --warn=unreachable_pub --warn=unexpected_cfgs --warn=single_use_lifetimes --warn=rust_2018_idioms --warn=missing_debug_implementations --check-cfg 'cfg(futures_sanitizer)' --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "std", "unstable"))' -C metadata=1a4387591f8b2b95 -C extra-filename=-1a4387591f8b2b95 --out-dir /tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.PIv8cIzOKd/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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.PIv8cIzOKd/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 193s warning: `futures-io` (lib) generated 1 warning (1 duplicate) 193s Compiling toml_edit v0.22.20 193s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=toml_edit CARGO_MANIFEST_DIR=/tmp/tmp.PIv8cIzOKd/registry/toml_edit-0.22.20 CARGO_MANIFEST_PATH=/tmp/tmp.PIv8cIzOKd/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.PIv8cIzOKd/target/debug/deps rustc --crate-name toml_edit --edition=2021 /tmp/tmp.PIv8cIzOKd/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.PIv8cIzOKd/target/debug/deps -L dependency=/tmp/tmp.PIv8cIzOKd/target/debug/deps --extern indexmap=/tmp/tmp.PIv8cIzOKd/target/debug/deps/libindexmap-1e18ac9265fbd6ac.rmeta --extern toml_datetime=/tmp/tmp.PIv8cIzOKd/target/debug/deps/libtoml_datetime-df29d6121930b5d6.rmeta --extern winnow=/tmp/tmp.PIv8cIzOKd/target/debug/deps/libwinnow-0f17435733cfc3dc.rmeta --cap-lints warn` 194s 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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0--remap-path-prefix/tmp/tmp.PIv8cIzOKd/registry=/usr/share/cargo/registry-Ctarget-feature=+backchain' CARGO_FEATURE_MORE_LENGTHS=1 CARGO_MANIFEST_DIR=/tmp/tmp.PIv8cIzOKd/registry/generic-array-0.14.7 CARGO_MANIFEST_PATH=/tmp/tmp.PIv8cIzOKd/registry/generic-array-0.14.7/Cargo.toml CARGO_PKG_AUTHORS='Bartłomiej Kamiński :Aaron Trent ' CARGO_PKG_DESCRIPTION='Generic types implementing functionality of arrays' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=generic-array CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/fizyk20/generic-array.git' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.14.7 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=14 CARGO_PKG_VERSION_PATCH=7 CARGO_PKG_VERSION_PRE='' DEBUG=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.PIv8cIzOKd/target/debug/deps:/tmp/tmp.PIv8cIzOKd/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/build/generic-array-da8fba9a25807be8/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.PIv8cIzOKd/target/debug/build/generic-array-160edb9b35222b14/build-script-build` 194s [generic-array 0.14.7] cargo:rustc-cfg=relaxed_coherence 194s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=typenum CARGO_MANIFEST_DIR=/tmp/tmp.PIv8cIzOKd/registry/typenum-1.17.0 CARGO_MANIFEST_PATH=/tmp/tmp.PIv8cIzOKd/registry/typenum-1.17.0/Cargo.toml CARGO_PKG_AUTHORS='Paho Lurie-Gregg :Andre Bogus ' CARGO_PKG_DESCRIPTION='Typenum is a Rust library for type-level numbers evaluated at 194s compile time. It currently supports bits, unsigned integers, and signed 194s integers. It also provides a type-level array of type-level numbers, but its 194s implementation is incomplete.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=typenum CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/paholg/typenum' CARGO_PKG_RUST_VERSION=1.37.0 CARGO_PKG_VERSION=1.17.0 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=17 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.PIv8cIzOKd/target/debug/deps OUT_DIR=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/build/typenum-b1daa52c37018028/out rustc --crate-name typenum --edition=2018 /tmp/tmp.PIv8cIzOKd/registry/typenum-1.17.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("const-generics", "force_unix_path_separator", "i128", "no_std", "strict"))' -C metadata=c66037e8139405ff -C extra-filename=-c66037e8139405ff --out-dir /tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.PIv8cIzOKd/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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.PIv8cIzOKd/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 194s warning: unexpected `cfg` condition value: `cargo-clippy` 194s --> /usr/share/cargo/registry/typenum-1.17.0/src/lib.rs:50:5 194s | 194s 50 | feature = "cargo-clippy", 194s | ^^^^^^^^^^^^^^^^^^^^^^^^ 194s | 194s = note: expected values for `feature` are: `const-generics`, `force_unix_path_separator`, `i128`, `no_std`, and `strict` 194s = help: consider adding `cargo-clippy` as a feature in `Cargo.toml` 194s = note: see for more information about checking conditional configuration 194s = note: `#[warn(unexpected_cfgs)]` on by default 194s 194s warning: unexpected `cfg` condition value: `cargo-clippy` 194s --> /usr/share/cargo/registry/typenum-1.17.0/src/lib.rs:60:13 194s | 194s 60 | #![cfg_attr(feature = "cargo-clippy", deny(clippy::missing_inline_in_public_items))] 194s | ^^^^^^^^^^^^^^^^^^^^^^^^ 194s | 194s = note: expected values for `feature` are: `const-generics`, `force_unix_path_separator`, `i128`, `no_std`, and `strict` 194s = help: consider adding `cargo-clippy` as a feature in `Cargo.toml` 194s = note: see for more information about checking conditional configuration 194s 194s warning: unexpected `cfg` condition value: `scale_info` 194s --> /usr/share/cargo/registry/typenum-1.17.0/src/lib.rs:119:12 194s | 194s 119 | #[cfg_attr(feature = "scale_info", derive(scale_info::TypeInfo))] 194s | ^^^^^^^^^^^^^^^^^^^^^^ 194s | 194s = note: expected values for `feature` are: `const-generics`, `force_unix_path_separator`, `i128`, `no_std`, and `strict` 194s = help: consider adding `scale_info` as a feature in `Cargo.toml` 194s = note: see for more information about checking conditional configuration 194s 194s warning: unexpected `cfg` condition value: `scale_info` 194s --> /usr/share/cargo/registry/typenum-1.17.0/src/lib.rs:125:12 194s | 194s 125 | #[cfg_attr(feature = "scale_info", derive(scale_info::TypeInfo))] 194s | ^^^^^^^^^^^^^^^^^^^^^^ 194s | 194s = note: expected values for `feature` are: `const-generics`, `force_unix_path_separator`, `i128`, `no_std`, and `strict` 194s = help: consider adding `scale_info` as a feature in `Cargo.toml` 194s = note: see for more information about checking conditional configuration 194s 194s warning: unexpected `cfg` condition value: `scale_info` 194s --> /usr/share/cargo/registry/typenum-1.17.0/src/lib.rs:131:12 194s | 194s 131 | #[cfg_attr(feature = "scale_info", derive(scale_info::TypeInfo))] 194s | ^^^^^^^^^^^^^^^^^^^^^^ 194s | 194s = note: expected values for `feature` are: `const-generics`, `force_unix_path_separator`, `i128`, `no_std`, and `strict` 194s = help: consider adding `scale_info` as a feature in `Cargo.toml` 194s = note: see for more information about checking conditional configuration 194s 194s warning: unexpected `cfg` condition value: `scale_info` 194s --> /usr/share/cargo/registry/typenum-1.17.0/src/bit.rs:19:12 194s | 194s 19 | #[cfg_attr(feature = "scale_info", derive(scale_info::TypeInfo))] 194s | ^^^^^^^^^^^^^^^^^^^^^^ 194s | 194s = note: expected values for `feature` are: `const-generics`, `force_unix_path_separator`, `i128`, `no_std`, and `strict` 194s = help: consider adding `scale_info` as a feature in `Cargo.toml` 194s = note: see for more information about checking conditional configuration 194s 194s warning: unexpected `cfg` condition value: `scale_info` 194s --> /usr/share/cargo/registry/typenum-1.17.0/src/bit.rs:32:12 194s | 194s 32 | #[cfg_attr(feature = "scale_info", derive(scale_info::TypeInfo))] 194s | ^^^^^^^^^^^^^^^^^^^^^^ 194s | 194s = note: expected values for `feature` are: `const-generics`, `force_unix_path_separator`, `i128`, `no_std`, and `strict` 194s = help: consider adding `scale_info` as a feature in `Cargo.toml` 194s = note: see for more information about checking conditional configuration 194s 194s warning: unexpected `cfg` condition name: `tests` 194s --> /usr/share/cargo/registry/typenum-1.17.0/src/bit.rs:187:7 194s | 194s 187 | #[cfg(tests)] 194s | ^^^^^ help: there is a config with a similar name: `test` 194s | 194s = help: consider using a Cargo feature instead 194s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 194s [lints.rust] 194s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tests)'] } 194s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tests)");` to the top of the `build.rs` 194s = note: see for more information about checking conditional configuration 194s 194s warning: unexpected `cfg` condition value: `scale_info` 194s --> /usr/share/cargo/registry/typenum-1.17.0/src/int.rs:41:12 194s | 194s 41 | #[cfg_attr(feature = "scale_info", derive(scale_info::TypeInfo))] 194s | ^^^^^^^^^^^^^^^^^^^^^^ 194s | 194s = note: expected values for `feature` are: `const-generics`, `force_unix_path_separator`, `i128`, `no_std`, and `strict` 194s = help: consider adding `scale_info` as a feature in `Cargo.toml` 194s = note: see for more information about checking conditional configuration 194s 194s warning: unexpected `cfg` condition value: `scale_info` 194s --> /usr/share/cargo/registry/typenum-1.17.0/src/int.rs:48:12 194s | 194s 48 | #[cfg_attr(feature = "scale_info", derive(scale_info::TypeInfo))] 194s | ^^^^^^^^^^^^^^^^^^^^^^ 194s | 194s = note: expected values for `feature` are: `const-generics`, `force_unix_path_separator`, `i128`, `no_std`, and `strict` 194s = help: consider adding `scale_info` as a feature in `Cargo.toml` 194s = note: see for more information about checking conditional configuration 194s 194s warning: unexpected `cfg` condition value: `scale_info` 194s --> /usr/share/cargo/registry/typenum-1.17.0/src/int.rs:71:12 194s | 194s 71 | #[cfg_attr(feature = "scale_info", derive(scale_info::TypeInfo))] 194s | ^^^^^^^^^^^^^^^^^^^^^^ 194s | 194s = note: expected values for `feature` are: `const-generics`, `force_unix_path_separator`, `i128`, `no_std`, and `strict` 194s = help: consider adding `scale_info` as a feature in `Cargo.toml` 194s = note: see for more information about checking conditional configuration 194s 194s warning: unexpected `cfg` condition value: `scale_info` 194s --> /usr/share/cargo/registry/typenum-1.17.0/src/uint.rs:49:12 194s | 194s 49 | #[cfg_attr(feature = "scale_info", derive(scale_info::TypeInfo))] 194s | ^^^^^^^^^^^^^^^^^^^^^^ 194s | 194s = note: expected values for `feature` are: `const-generics`, `force_unix_path_separator`, `i128`, `no_std`, and `strict` 194s = help: consider adding `scale_info` as a feature in `Cargo.toml` 194s = note: see for more information about checking conditional configuration 194s 194s warning: unexpected `cfg` condition value: `scale_info` 194s --> /usr/share/cargo/registry/typenum-1.17.0/src/uint.rs:147:12 194s | 194s 147 | #[cfg_attr(feature = "scale_info", derive(scale_info::TypeInfo))] 194s | ^^^^^^^^^^^^^^^^^^^^^^ 194s | 194s = note: expected values for `feature` are: `const-generics`, `force_unix_path_separator`, `i128`, `no_std`, and `strict` 194s = help: consider adding `scale_info` as a feature in `Cargo.toml` 194s = note: see for more information about checking conditional configuration 194s 194s warning: unexpected `cfg` condition name: `tests` 194s --> /usr/share/cargo/registry/typenum-1.17.0/src/uint.rs:1656:7 194s | 194s 1656 | #[cfg(tests)] 194s | ^^^^^ help: there is a config with a similar name: `test` 194s | 194s = help: consider using a Cargo feature instead 194s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 194s [lints.rust] 194s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tests)'] } 194s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tests)");` to the top of the `build.rs` 194s = note: see for more information about checking conditional configuration 194s 194s warning: unexpected `cfg` condition value: `cargo-clippy` 194s --> /usr/share/cargo/registry/typenum-1.17.0/src/uint.rs:1709:16 194s | 194s 1709 | #[cfg_attr(feature = "cargo-clippy", allow(clippy::suspicious_arithmetic_impl))] 194s | ^^^^^^^^^^^^^^^^^^^^^^^^ 194s | 194s = note: expected values for `feature` are: `const-generics`, `force_unix_path_separator`, `i128`, `no_std`, and `strict` 194s = help: consider adding `cargo-clippy` as a feature in `Cargo.toml` 194s = note: see for more information about checking conditional configuration 194s 194s warning: unexpected `cfg` condition value: `scale_info` 194s --> /usr/share/cargo/registry/typenum-1.17.0/src/array.rs:11:12 194s | 194s 11 | #[cfg_attr(feature = "scale_info", derive(scale_info::TypeInfo))] 194s | ^^^^^^^^^^^^^^^^^^^^^^ 194s | 194s = note: expected values for `feature` are: `const-generics`, `force_unix_path_separator`, `i128`, `no_std`, and `strict` 194s = help: consider adding `scale_info` as a feature in `Cargo.toml` 194s = note: see for more information about checking conditional configuration 194s 194s warning: unexpected `cfg` condition value: `scale_info` 194s --> /usr/share/cargo/registry/typenum-1.17.0/src/array.rs:23:12 194s | 194s 23 | #[cfg_attr(feature = "scale_info", derive(scale_info::TypeInfo))] 194s | ^^^^^^^^^^^^^^^^^^^^^^ 194s | 194s = note: expected values for `feature` are: `const-generics`, `force_unix_path_separator`, `i128`, `no_std`, and `strict` 194s = help: consider adding `scale_info` as a feature in `Cargo.toml` 194s = note: see for more information about checking conditional configuration 194s 194s warning: unused import: `*` 194s --> /usr/share/cargo/registry/typenum-1.17.0/src/lib.rs:106:25 194s | 194s 106 | N1, N2, Z0, P1, P2, *, 194s | ^ 194s | 194s = note: `#[warn(unused_imports)]` on by default 194s 194s warning: `typenum` (lib) generated 19 warnings (1 duplicate) 194s Compiling slab v0.4.9 194s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.PIv8cIzOKd/registry/slab-0.4.9 CARGO_MANIFEST_PATH=/tmp/tmp.PIv8cIzOKd/registry/slab-0.4.9/Cargo.toml CARGO_PKG_AUTHORS='Carl Lerche ' CARGO_PKG_DESCRIPTION='Pre-allocated storage for a uniform data type' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=slab CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/tokio-rs/slab' CARGO_PKG_RUST_VERSION=1.31 CARGO_PKG_VERSION=0.4.9 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=4 CARGO_PKG_VERSION_PATCH=9 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.PIv8cIzOKd/target/debug/deps rustc --crate-name build_script_build --edition=2018 /tmp/tmp.PIv8cIzOKd/registry/slab-0.4.9/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "serde", "std"))' -C metadata=95cba3e02497b263 -C extra-filename=-95cba3e02497b263 --out-dir /tmp/tmp.PIv8cIzOKd/target/debug/build/slab-95cba3e02497b263 -L dependency=/tmp/tmp.PIv8cIzOKd/target/debug/deps --extern autocfg=/tmp/tmp.PIv8cIzOKd/target/debug/deps/libautocfg-9ebcd9511383083c.rlib --cap-lints warn` 194s Compiling fastrand v2.1.1 194s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=fastrand CARGO_MANIFEST_DIR=/tmp/tmp.PIv8cIzOKd/registry/fastrand-2.1.1 CARGO_MANIFEST_PATH=/tmp/tmp.PIv8cIzOKd/registry/fastrand-2.1.1/Cargo.toml CARGO_PKG_AUTHORS='Stjepan Glavina ' CARGO_PKG_DESCRIPTION='A simple and fast random number generator' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=fastrand CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/smol-rs/fastrand' CARGO_PKG_RUST_VERSION=1.36 CARGO_PKG_VERSION=2.1.1 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.PIv8cIzOKd/target/debug/deps rustc --crate-name fastrand --edition=2018 /tmp/tmp.PIv8cIzOKd/registry/fastrand-2.1.1/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="alloc"' --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "default", "std"))' -C metadata=b0f30b63d6f103db -C extra-filename=-b0f30b63d6f103db --out-dir /tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.PIv8cIzOKd/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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.PIv8cIzOKd/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 194s warning: unexpected `cfg` condition value: `js` 194s --> /usr/share/cargo/registry/fastrand-2.1.1/src/global_rng.rs:202:5 194s | 194s 202 | feature = "js" 194s | ^^^^^^^^^^^^^^ 194s | 194s = note: expected values for `feature` are: `alloc`, `default`, and `std` 194s = help: consider adding `js` as a feature in `Cargo.toml` 194s = note: see for more information about checking conditional configuration 194s = note: `#[warn(unexpected_cfgs)]` on by default 194s 194s warning: unexpected `cfg` condition value: `js` 194s --> /usr/share/cargo/registry/fastrand-2.1.1/src/global_rng.rs:214:9 194s | 194s 214 | not(feature = "js") 194s | ^^^^^^^^^^^^^^ 194s | 194s = note: expected values for `feature` are: `alloc`, `default`, and `std` 194s = help: consider adding `js` as a feature in `Cargo.toml` 194s = note: see for more information about checking conditional configuration 194s 194s warning: `fastrand` (lib) generated 3 warnings (1 duplicate) 194s Compiling serde v1.0.217 194s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.PIv8cIzOKd/registry/serde-1.0.217 CARGO_MANIFEST_PATH=/tmp/tmp.PIv8cIzOKd/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.PIv8cIzOKd/target/debug/deps rustc --crate-name build_script_build --edition=2018 /tmp/tmp.PIv8cIzOKd/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.PIv8cIzOKd/target/debug/build/serde-c22c8603f1f999ec -L dependency=/tmp/tmp.PIv8cIzOKd/target/debug/deps --cap-lints warn` 195s 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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0--remap-path-prefix/tmp/tmp.PIv8cIzOKd/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.PIv8cIzOKd/registry/serde-1.0.217 CARGO_MANIFEST_PATH=/tmp/tmp.PIv8cIzOKd/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.PIv8cIzOKd/target/debug/deps:/tmp/tmp.PIv8cIzOKd/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/build/serde-c08ea6899e623ec6/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.PIv8cIzOKd/target/debug/build/serde-c22c8603f1f999ec/build-script-build` 195s [serde 1.0.217] cargo:rerun-if-changed=build.rs 195s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_core_cstr) 195s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_core_error) 195s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_core_net) 195s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_core_num_saturating) 195s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_core_try_from) 195s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_diagnostic_namespace) 195s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_float_copysign) 195s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_num_nonzero_signed) 195s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_relaxed_trait_bounds) 195s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_serde_derive) 195s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_std_atomic) 195s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_std_atomic64) 195s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_systemtime_checked_add) 195s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_target_has_atomic) 195s Compiling proc-macro-crate v3.2.0 195s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=proc_macro_crate CARGO_MANIFEST_DIR=/tmp/tmp.PIv8cIzOKd/registry/proc-macro-crate-3.2.0 CARGO_MANIFEST_PATH=/tmp/tmp.PIv8cIzOKd/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 195s ' 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.PIv8cIzOKd/target/debug/deps rustc --crate-name proc_macro_crate --edition=2021 /tmp/tmp.PIv8cIzOKd/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.PIv8cIzOKd/target/debug/deps -L dependency=/tmp/tmp.PIv8cIzOKd/target/debug/deps --extern toml_edit=/tmp/tmp.PIv8cIzOKd/target/debug/deps/libtoml_edit-89b547630831cc85.rmeta --cap-lints warn` 195s Compiling futures-lite v2.3.0 195s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=futures_lite CARGO_MANIFEST_DIR=/tmp/tmp.PIv8cIzOKd/registry/futures-lite-2.3.0 CARGO_MANIFEST_PATH=/tmp/tmp.PIv8cIzOKd/registry/futures-lite-2.3.0/Cargo.toml CARGO_PKG_AUTHORS='Stjepan Glavina :Contributors to futures-rs' CARGO_PKG_DESCRIPTION='Futures, streams, and async I/O combinators' CARGO_PKG_HOMEPAGE='https://github.com/smol-rs/futures-lite' CARGO_PKG_LICENSE='Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=futures-lite CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/smol-rs/futures-lite' CARGO_PKG_RUST_VERSION=1.60 CARGO_PKG_VERSION=2.3.0 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.PIv8cIzOKd/target/debug/deps rustc --crate-name futures_lite --edition=2021 /tmp/tmp.PIv8cIzOKd/registry/futures-lite-2.3.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="alloc"' --cfg 'feature="default"' --cfg 'feature="fastrand"' --cfg 'feature="futures-io"' --cfg 'feature="parking"' --cfg 'feature="race"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "default", "fastrand", "futures-io", "memchr", "parking", "race", "std"))' -C metadata=b3966bcb93a5ad2f -C extra-filename=-b3966bcb93a5ad2f --out-dir /tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.PIv8cIzOKd/target/debug/deps --extern fastrand=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps/libfastrand-b0f30b63d6f103db.rmeta --extern futures_core=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps/libfutures_core-8d305950da6bf5c8.rmeta --extern futures_io=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps/libfutures_io-1a4387591f8b2b95.rmeta --extern parking=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps/libparking-0a38dc17b1bc33e2.rmeta --extern pin_project_lite=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps/libpin_project_lite-5dc815523e98d889.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.PIv8cIzOKd/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 196s warning: elided lifetime has a name 196s --> /usr/share/cargo/registry/futures-lite-2.3.0/src/io.rs:1625:88 196s | 196s 1625 | fn read_until<'a>(&'a mut self, byte: u8, buf: &'a mut Vec) -> ReadUntilFuture<'_, Self> 196s | -- lifetime `'a` declared here ^^ this elided lifetime gets resolved as `'a` 196s | 196s = note: `#[warn(elided_named_lifetimes)]` on by default 196s 196s warning: elided lifetime has a name 196s --> /usr/share/cargo/registry/futures-lite-2.3.0/src/io.rs:1658:75 196s | 196s 1658 | fn read_line<'a>(&'a mut self, buf: &'a mut String) -> ReadLineFuture<'_, Self> 196s | -- lifetime `'a` declared here ^^ this elided lifetime gets resolved as `'a` 196s 196s warning: `futures-lite` (lib) generated 3 warnings (1 duplicate) 196s 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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0--remap-path-prefix/tmp/tmp.PIv8cIzOKd/registry=/usr/share/cargo/registry-Ctarget-feature=+backchain' CARGO_FEATURE_DEFAULT=1 CARGO_FEATURE_STD=1 CARGO_MANIFEST_DIR=/tmp/tmp.PIv8cIzOKd/registry/slab-0.4.9 CARGO_MANIFEST_PATH=/tmp/tmp.PIv8cIzOKd/registry/slab-0.4.9/Cargo.toml CARGO_PKG_AUTHORS='Carl Lerche ' CARGO_PKG_DESCRIPTION='Pre-allocated storage for a uniform data type' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=slab CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/tokio-rs/slab' CARGO_PKG_RUST_VERSION=1.31 CARGO_PKG_VERSION=0.4.9 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=4 CARGO_PKG_VERSION_PATCH=9 CARGO_PKG_VERSION_PRE='' DEBUG=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.PIv8cIzOKd/target/debug/deps:/tmp/tmp.PIv8cIzOKd/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/build/slab-2c89ee66d35953a1/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.PIv8cIzOKd/target/debug/build/slab-95cba3e02497b263/build-script-build` 196s [slab 0.4.9] warning: unstable feature specified for `-Ctarget-feature`: `backchain` 196s [slab 0.4.9] | 196s [slab 0.4.9] = note: this feature is not stably supported; its behavior can change in the future 196s [slab 0.4.9] 196s [slab 0.4.9] warning: 1 warning emitted 196s [slab 0.4.9] 196s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=generic_array CARGO_MANIFEST_DIR=/tmp/tmp.PIv8cIzOKd/registry/generic-array-0.14.7 CARGO_MANIFEST_PATH=/tmp/tmp.PIv8cIzOKd/registry/generic-array-0.14.7/Cargo.toml CARGO_PKG_AUTHORS='Bartłomiej Kamiński :Aaron Trent ' CARGO_PKG_DESCRIPTION='Generic types implementing functionality of arrays' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=generic-array CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/fizyk20/generic-array.git' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.14.7 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=14 CARGO_PKG_VERSION_PATCH=7 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.PIv8cIzOKd/target/debug/deps OUT_DIR=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/build/generic-array-da8fba9a25807be8/out rustc --crate-name generic_array --edition=2015 /tmp/tmp.PIv8cIzOKd/registry/generic-array-0.14.7/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="more_lengths"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("more_lengths", "serde", "zeroize"))' -C metadata=d02d059964c7aee0 -C extra-filename=-d02d059964c7aee0 --out-dir /tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.PIv8cIzOKd/target/debug/deps --extern typenum=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps/libtypenum-c66037e8139405ff.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.PIv8cIzOKd/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain --cfg relaxed_coherence` 196s warning: unexpected `cfg` condition name: `relaxed_coherence` 196s --> /usr/share/cargo/registry/generic-array-0.14.7/src/impls.rs:136:19 196s | 196s 136 | #[cfg(relaxed_coherence)] 196s | ^^^^^^^^^^^^^^^^^ 196s ... 196s 183 | / impl_from! { 196s 184 | | 1 => ::typenum::U1, 196s 185 | | 2 => ::typenum::U2, 196s 186 | | 3 => ::typenum::U3, 196s ... | 196s 215 | | 32 => ::typenum::U32 196s 216 | | } 196s | |_- in this macro invocation 196s | 196s = help: expected names are: `clippy`, `debug_assertions`, `doc`, `docsrs`, `doctest`, `feature`, `fmt_debug`, `miri`, `overflow_checks`, `panic`, `proc_macro`, `relocation_model`, `rustfmt`, `sanitize`, `sanitizer_cfi_generalize_pointers`, `sanitizer_cfi_normalize_integers`, `target_abi`, `target_arch`, `target_endian`, `target_env`, `target_family`, `target_feature`, `target_has_atomic`, `target_has_atomic_equal_alignment`, `target_has_atomic_load_store`, `target_os`, `target_pointer_width`, `target_thread_local`, `target_vendor`, `test`, `ub_checks`, `unix`, and `windows` 196s = help: consider using a Cargo feature instead 196s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 196s [lints.rust] 196s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(relaxed_coherence)'] } 196s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(relaxed_coherence)");` to the top of the `build.rs` 196s = note: see for more information about checking conditional configuration 196s = note: `#[warn(unexpected_cfgs)]` on by default 196s = note: this warning originates in the macro `impl_from` (in Nightly builds, run with -Z macro-backtrace for more info) 196s 196s warning: unexpected `cfg` condition name: `relaxed_coherence` 196s --> /usr/share/cargo/registry/generic-array-0.14.7/src/impls.rs:158:23 196s | 196s 158 | #[cfg(not(relaxed_coherence))] 196s | ^^^^^^^^^^^^^^^^^ 196s ... 196s 183 | / impl_from! { 196s 184 | | 1 => ::typenum::U1, 196s 185 | | 2 => ::typenum::U2, 196s 186 | | 3 => ::typenum::U3, 196s ... | 196s 215 | | 32 => ::typenum::U32 196s 216 | | } 196s | |_- in this macro invocation 196s | 196s = help: consider using a Cargo feature instead 196s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 196s [lints.rust] 196s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(relaxed_coherence)'] } 196s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(relaxed_coherence)");` to the top of the `build.rs` 196s = note: see for more information about checking conditional configuration 196s = note: this warning originates in the macro `impl_from` (in Nightly builds, run with -Z macro-backtrace for more info) 196s 196s warning: unexpected `cfg` condition name: `relaxed_coherence` 196s --> /usr/share/cargo/registry/generic-array-0.14.7/src/impls.rs:136:19 196s | 196s 136 | #[cfg(relaxed_coherence)] 196s | ^^^^^^^^^^^^^^^^^ 196s ... 196s 219 | / impl_from! { 196s 220 | | 33 => ::typenum::U33, 196s 221 | | 34 => ::typenum::U34, 196s 222 | | 35 => ::typenum::U35, 196s ... | 196s 268 | | 1024 => ::typenum::U1024 196s 269 | | } 196s | |_- in this macro invocation 196s | 196s = help: consider using a Cargo feature instead 196s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 196s [lints.rust] 196s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(relaxed_coherence)'] } 196s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(relaxed_coherence)");` to the top of the `build.rs` 196s = note: see for more information about checking conditional configuration 196s = note: this warning originates in the macro `impl_from` (in Nightly builds, run with -Z macro-backtrace for more info) 196s 196s warning: unexpected `cfg` condition name: `relaxed_coherence` 196s --> /usr/share/cargo/registry/generic-array-0.14.7/src/impls.rs:158:23 196s | 196s 158 | #[cfg(not(relaxed_coherence))] 196s | ^^^^^^^^^^^^^^^^^ 196s ... 196s 219 | / impl_from! { 196s 220 | | 33 => ::typenum::U33, 196s 221 | | 34 => ::typenum::U34, 196s 222 | | 35 => ::typenum::U35, 196s ... | 196s 268 | | 1024 => ::typenum::U1024 196s 269 | | } 196s | |_- in this macro invocation 196s | 196s = help: consider using a Cargo feature instead 196s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 196s [lints.rust] 196s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(relaxed_coherence)'] } 196s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(relaxed_coherence)");` to the top of the `build.rs` 196s = note: see for more information about checking conditional configuration 196s = note: this warning originates in the macro `impl_from` (in Nightly builds, run with -Z macro-backtrace for more info) 196s 197s warning: `generic-array` (lib) generated 5 warnings (1 duplicate) 197s Compiling serde_derive v1.0.217 197s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=serde_derive CARGO_MANIFEST_DIR=/tmp/tmp.PIv8cIzOKd/registry/serde_derive-1.0.217 CARGO_MANIFEST_PATH=/tmp/tmp.PIv8cIzOKd/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.PIv8cIzOKd/target/debug/deps rustc --crate-name serde_derive --edition=2015 /tmp/tmp.PIv8cIzOKd/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=85fb19fec9ccb150 -C extra-filename=-85fb19fec9ccb150 --out-dir /tmp/tmp.PIv8cIzOKd/target/debug/deps -L dependency=/tmp/tmp.PIv8cIzOKd/target/debug/deps --extern proc_macro2=/tmp/tmp.PIv8cIzOKd/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rlib --extern quote=/tmp/tmp.PIv8cIzOKd/target/debug/deps/libquote-dc92c6f25ee0f0c6.rlib --extern syn=/tmp/tmp.PIv8cIzOKd/target/debug/deps/libsyn-0167beed9e699402.rlib --extern proc_macro --cap-lints warn` 197s Compiling zerocopy-derive v0.7.34 197s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=zerocopy_derive CARGO_MANIFEST_DIR=/tmp/tmp.PIv8cIzOKd/registry/zerocopy-derive-0.7.34 CARGO_MANIFEST_PATH=/tmp/tmp.PIv8cIzOKd/registry/zerocopy-derive-0.7.34/Cargo.toml CARGO_PKG_AUTHORS='Joshua Liebow-Feeser ' CARGO_PKG_DESCRIPTION='Custom derive for traits from the zerocopy crate' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='BSD-2-Clause OR Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=zerocopy-derive CARGO_PKG_README='' CARGO_PKG_REPOSITORY='https://github.com/google/zerocopy' CARGO_PKG_RUST_VERSION=1.60.0 CARGO_PKG_VERSION=0.7.34 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=7 CARGO_PKG_VERSION_PATCH=34 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.PIv8cIzOKd/target/debug/deps rustc --crate-name zerocopy_derive --edition=2018 /tmp/tmp.PIv8cIzOKd/registry/zerocopy-derive-0.7.34/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type proc-macro --emit=dep-info,link -C prefer-dynamic -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=676bad9287e184ca -C extra-filename=-676bad9287e184ca --out-dir /tmp/tmp.PIv8cIzOKd/target/debug/deps -L dependency=/tmp/tmp.PIv8cIzOKd/target/debug/deps --extern proc_macro2=/tmp/tmp.PIv8cIzOKd/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rlib --extern quote=/tmp/tmp.PIv8cIzOKd/target/debug/deps/libquote-dc92c6f25ee0f0c6.rlib --extern syn=/tmp/tmp.PIv8cIzOKd/target/debug/deps/libsyn-0167beed9e699402.rlib --extern proc_macro --cap-lints warn` 198s Compiling zvariant_utils v2.1.0 198s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=zvariant_utils CARGO_MANIFEST_DIR=/tmp/tmp.PIv8cIzOKd/registry/zvariant_utils-2.1.0 CARGO_MANIFEST_PATH=/tmp/tmp.PIv8cIzOKd/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.PIv8cIzOKd/target/debug/deps rustc --crate-name zvariant_utils --edition=2021 /tmp/tmp.PIv8cIzOKd/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=555d90bad4acf190 -C extra-filename=-555d90bad4acf190 --out-dir /tmp/tmp.PIv8cIzOKd/target/debug/deps -L dependency=/tmp/tmp.PIv8cIzOKd/target/debug/deps --extern proc_macro2=/tmp/tmp.PIv8cIzOKd/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rmeta --extern quote=/tmp/tmp.PIv8cIzOKd/target/debug/deps/libquote-dc92c6f25ee0f0c6.rmeta --extern syn=/tmp/tmp.PIv8cIzOKd/target/debug/deps/libsyn-0167beed9e699402.rmeta --cap-lints warn` 198s Compiling once_cell v1.20.2 198s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=once_cell CARGO_MANIFEST_DIR=/tmp/tmp.PIv8cIzOKd/registry/once_cell-1.20.2 CARGO_MANIFEST_PATH=/tmp/tmp.PIv8cIzOKd/registry/once_cell-1.20.2/Cargo.toml CARGO_PKG_AUTHORS='Aleksey Kladov ' CARGO_PKG_DESCRIPTION='Single assignment cells and lazy values.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=once_cell CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/matklad/once_cell' CARGO_PKG_RUST_VERSION=1.60 CARGO_PKG_VERSION=1.20.2 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=20 CARGO_PKG_VERSION_PATCH=2 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.PIv8cIzOKd/target/debug/deps rustc --crate-name once_cell --edition=2021 /tmp/tmp.PIv8cIzOKd/registry/once_cell-1.20.2/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="alloc"' --cfg 'feature="default"' --cfg 'feature="race"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "atomic-polyfill", "critical-section", "default", "parking_lot", "portable-atomic", "race", "std", "unstable"))' -C metadata=f9b984852945e4ac -C extra-filename=-f9b984852945e4ac --out-dir /tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.PIv8cIzOKd/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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.PIv8cIzOKd/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 199s warning: `once_cell` (lib) generated 1 warning (1 duplicate) 199s Compiling byteorder v1.5.0 199s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=byteorder CARGO_MANIFEST_DIR=/tmp/tmp.PIv8cIzOKd/registry/byteorder-1.5.0 CARGO_MANIFEST_PATH=/tmp/tmp.PIv8cIzOKd/registry/byteorder-1.5.0/Cargo.toml CARGO_PKG_AUTHORS='Andrew Gallant ' CARGO_PKG_DESCRIPTION='Library for reading/writing numbers in big-endian and little-endian.' CARGO_PKG_HOMEPAGE='https://github.com/BurntSushi/byteorder' CARGO_PKG_LICENSE='Unlicense OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=byteorder CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/BurntSushi/byteorder' CARGO_PKG_RUST_VERSION=1.60 CARGO_PKG_VERSION=1.5.0 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=5 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.PIv8cIzOKd/target/debug/deps rustc --crate-name byteorder --edition=2021 /tmp/tmp.PIv8cIzOKd/registry/byteorder-1.5.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "i128", "std"))' -C metadata=89ebf31d1f97ee77 -C extra-filename=-89ebf31d1f97ee77 --out-dir /tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.PIv8cIzOKd/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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.PIv8cIzOKd/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 199s warning: `byteorder` (lib) generated 1 warning (1 duplicate) 199s Compiling rustix v0.38.37 199s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.PIv8cIzOKd/registry/rustix-0.38.37 CARGO_MANIFEST_PATH=/tmp/tmp.PIv8cIzOKd/registry/rustix-0.38.37/Cargo.toml CARGO_PKG_AUTHORS='Dan Gohman :Jakub Konka ' CARGO_PKG_DESCRIPTION='Safe Rust bindings to POSIX/Unix/Linux/Winsock-like syscalls' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=rustix CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/bytecodealliance/rustix' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=0.38.37 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=38 CARGO_PKG_VERSION_PATCH=37 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.PIv8cIzOKd/target/debug/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.PIv8cIzOKd/registry/rustix-0.38.37/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --warn=unexpected_cfgs --check-cfg 'cfg(alloc_c_string)' --check-cfg 'cfg(alloc_ffi)' --check-cfg 'cfg(apple)' --check-cfg 'cfg(asm_experimental_arch)' --check-cfg 'cfg(bsd)' --check-cfg 'cfg(core_c_str)' --check-cfg 'cfg(core_ffi_c)' --check-cfg 'cfg(core_intrinsics)' --check-cfg 'cfg(criterion)' --check-cfg 'cfg(document_experimental_runtime_api)' --check-cfg 'cfg(fix_y2038)' --check-cfg 'cfg(freebsdlike)' --check-cfg 'cfg(libc)' --check-cfg 'cfg(linux_kernel)' --check-cfg 'cfg(linux_like)' --check-cfg 'cfg(linux_raw)' --check-cfg 'cfg(netbsdlike)' --check-cfg 'cfg(rustc_attrs)' --check-cfg 'cfg(solarish)' --check-cfg 'cfg(staged_api)' --check-cfg 'cfg(static_assertions)' --check-cfg 'cfg(thumb_mode)' --check-cfg 'cfg(wasi)' --check-cfg 'cfg(wasi_ext)' --check-cfg 'cfg(target_arch, values("xtensa"))' --cfg 'feature="alloc"' --cfg 'feature="event"' --cfg 'feature="fs"' --cfg 'feature="libc-extra-traits"' --cfg 'feature="net"' --cfg 'feature="pipe"' --cfg 'feature="process"' --cfg 'feature="std"' --cfg 'feature="time"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("all-apis", "alloc", "cc", "compiler_builtins", "core", "default", "event", "fs", "io_uring", "itoa", "libc", "libc-extra-traits", "libc_errno", "linux_4_11", "linux_latest", "mm", "mount", "net", "once_cell", "param", "pipe", "process", "procfs", "pty", "rand", "runtime", "rustc-dep-of-std", "shm", "std", "stdio", "system", "termios", "thread", "time", "try_close", "use-explicitly-provided-auxv", "use-libc", "use-libc-auxv"))' -C metadata=8b93b51d2d94d594 -C extra-filename=-8b93b51d2d94d594 --out-dir /tmp/tmp.PIv8cIzOKd/target/debug/build/rustix-8b93b51d2d94d594 -L dependency=/tmp/tmp.PIv8cIzOKd/target/debug/deps --cap-lints warn` 199s Compiling bitflags v2.8.0 199s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=bitflags CARGO_MANIFEST_DIR=/tmp/tmp.PIv8cIzOKd/registry/bitflags-2.8.0 CARGO_MANIFEST_PATH=/tmp/tmp.PIv8cIzOKd/registry/bitflags-2.8.0/Cargo.toml CARGO_PKG_AUTHORS='The Rust Project Developers' CARGO_PKG_DESCRIPTION='A macro to generate structures which behave like bitflags. 199s ' CARGO_PKG_HOMEPAGE='https://github.com/bitflags/bitflags' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=bitflags CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/bitflags/bitflags' CARGO_PKG_RUST_VERSION=1.56.0 CARGO_PKG_VERSION=2.8.0 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=8 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.PIv8cIzOKd/target/debug/deps rustc --crate-name bitflags --edition=2021 /tmp/tmp.PIv8cIzOKd/registry/bitflags-2.8.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("arbitrary", "bytemuck", "compiler_builtins", "core", "example_generated", "rustc-dep-of-std", "serde", "std"))' -C metadata=65f3f529c7b65778 -C extra-filename=-65f3f529c7b65778 --out-dir /tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.PIv8cIzOKd/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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.PIv8cIzOKd/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 199s warning: `bitflags` (lib) generated 1 warning (1 duplicate) 199s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CFG_PANIC=unwind CARGO_CFG_TARGET_ABI='' CARGO_CFG_TARGET_ARCH=s390x CARGO_CFG_TARGET_ENDIAN=big CARGO_CFG_TARGET_ENV=gnu CARGO_CFG_TARGET_FAMILY=unix CARGO_CFG_TARGET_HAS_ATOMIC=128,16,32,64,8,ptr CARGO_CFG_TARGET_OS=linux CARGO_CFG_TARGET_POINTER_WIDTH=64 CARGO_CFG_TARGET_VENDOR=unknown CARGO_CFG_UNIX='' CARGO_ENCODED_RUSTFLAGS='-Cdebuginfo=2-Cstrip=none--cap-lintswarn-Clinker=s390x-linux-gnu-gcc-Clink-arg=-Wl,-Bsymbolic-functions-Clink-arg=-flto=auto-Clink-arg=-ffat-lto-objects-Clink-arg=-Wl,-z,relro--remap-path-prefix/usr/share/cargo/registry/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0--remap-path-prefix/tmp/tmp.PIv8cIzOKd/registry=/usr/share/cargo/registry-Ctarget-feature=+backchain' CARGO_FEATURE_ALLOC=1 CARGO_FEATURE_EVENT=1 CARGO_FEATURE_FS=1 CARGO_FEATURE_LIBC_EXTRA_TRAITS=1 CARGO_FEATURE_NET=1 CARGO_FEATURE_PIPE=1 CARGO_FEATURE_PROCESS=1 CARGO_FEATURE_STD=1 CARGO_FEATURE_TIME=1 CARGO_MANIFEST_DIR=/tmp/tmp.PIv8cIzOKd/registry/rustix-0.38.37 CARGO_MANIFEST_PATH=/tmp/tmp.PIv8cIzOKd/registry/rustix-0.38.37/Cargo.toml CARGO_PKG_AUTHORS='Dan Gohman :Jakub Konka ' CARGO_PKG_DESCRIPTION='Safe Rust bindings to POSIX/Unix/Linux/Winsock-like syscalls' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=rustix CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/bytecodealliance/rustix' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=0.38.37 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=38 CARGO_PKG_VERSION_PATCH=37 CARGO_PKG_VERSION_PRE='' DEBUG=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.PIv8cIzOKd/target/debug/deps:/tmp/tmp.PIv8cIzOKd/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/build/rustix-bc16aac95f297369/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.PIv8cIzOKd/target/debug/build/rustix-8b93b51d2d94d594/build-script-build` 199s [rustix 0.38.37] cargo:rerun-if-changed=build.rs 199s [rustix 0.38.37] cargo:rustc-cfg=static_assertions 199s [rustix 0.38.37] cargo:rustc-cfg=libc 199s [rustix 0.38.37] cargo:rustc-cfg=linux_like 199s [rustix 0.38.37] cargo:rustc-cfg=linux_kernel 199s [rustix 0.38.37] cargo:rerun-if-env-changed=CARGO_CFG_RUSTIX_USE_EXPERIMENTAL_ASM 199s [rustix 0.38.37] cargo:rerun-if-env-changed=CARGO_CFG_RUSTIX_USE_LIBC 199s [rustix 0.38.37] cargo:rerun-if-env-changed=CARGO_FEATURE_USE_LIBC 199s [rustix 0.38.37] cargo:rerun-if-env-changed=CARGO_FEATURE_RUSTC_DEP_OF_STD 199s [rustix 0.38.37] cargo:rerun-if-env-changed=CARGO_CFG_MIRI 199s Compiling zerocopy v0.7.34 199s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=zerocopy CARGO_MANIFEST_DIR=/tmp/tmp.PIv8cIzOKd/registry/zerocopy-0.7.34 CARGO_MANIFEST_PATH=/tmp/tmp.PIv8cIzOKd/registry/zerocopy-0.7.34/Cargo.toml CARGO_PKG_AUTHORS='Joshua Liebow-Feeser ' CARGO_PKG_DESCRIPTION='Utilities for zero-copy parsing and serialization' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='BSD-2-Clause OR Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=zerocopy CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/google/zerocopy' CARGO_PKG_RUST_VERSION=1.60.0 CARGO_PKG_VERSION=0.7.34 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=7 CARGO_PKG_VERSION_PATCH=34 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.PIv8cIzOKd/target/debug/deps rustc --crate-name zerocopy --edition=2018 /tmp/tmp.PIv8cIzOKd/registry/zerocopy-0.7.34/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="byteorder"' --cfg 'feature="default"' --cfg 'feature="derive"' --cfg 'feature="simd"' --cfg 'feature="zerocopy-derive"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("__internal_use_only_features_that_work_on_stable", "alloc", "byteorder", "default", "derive", "simd", "simd-nightly", "zerocopy-derive"))' -C metadata=777d8c6c10ffcfc6 -C extra-filename=-777d8c6c10ffcfc6 --out-dir /tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.PIv8cIzOKd/target/debug/deps --extern byteorder=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps/libbyteorder-89ebf31d1f97ee77.rmeta --extern zerocopy_derive=/tmp/tmp.PIv8cIzOKd/target/debug/deps/libzerocopy_derive-676bad9287e184ca.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.PIv8cIzOKd/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 199s warning: unnecessary qualification 199s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/util.rs:597:32 199s | 199s 597 | let remainder = t.addr() % mem::align_of::(); 199s | ^^^^^^^^^^^^^^^^^^ 199s | 199s note: the lint level is defined here 199s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:174:5 199s | 199s 174 | unused_qualifications, 199s | ^^^^^^^^^^^^^^^^^^^^^ 199s help: remove the unnecessary path segments 199s | 199s 597 - let remainder = t.addr() % mem::align_of::(); 199s 597 + let remainder = t.addr() % align_of::(); 199s | 199s 199s warning: unnecessary qualification 199s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:333:35 199s | 199s 333 | const POINTER_WIDTH_BITS: usize = mem::size_of::() * 8; 199s | ^^^^^^^^^^^^^^^^^^^^^ 199s | 199s help: remove the unnecessary path segments 199s | 199s 333 - const POINTER_WIDTH_BITS: usize = mem::size_of::() * 8; 199s 333 + const POINTER_WIDTH_BITS: usize = size_of::() * 8; 199s | 199s 199s warning: unnecessary qualification 199s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:488:44 199s | 199s 488 | align: match NonZeroUsize::new(mem::align_of::()) { 199s | ^^^^^^^^^^^^^^^^^^ 199s | 199s help: remove the unnecessary path segments 199s | 199s 488 - align: match NonZeroUsize::new(mem::align_of::()) { 199s 488 + align: match NonZeroUsize::new(align_of::()) { 199s | 199s 199s warning: unnecessary qualification 199s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:492:49 199s | 199s 492 | size_info: SizeInfo::Sized { _size: mem::size_of::() }, 200s | ^^^^^^^^^^^^^^^^^ 200s | 200s help: remove the unnecessary path segments 200s | 200s 492 - size_info: SizeInfo::Sized { _size: mem::size_of::() }, 200s 492 + size_info: SizeInfo::Sized { _size: size_of::() }, 200s | 200s 200s warning: unnecessary qualification 200s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:511:44 200s | 200s 511 | align: match NonZeroUsize::new(mem::align_of::()) { 200s | ^^^^^^^^^^^^^^^^^^ 200s | 200s help: remove the unnecessary path segments 200s | 200s 511 - align: match NonZeroUsize::new(mem::align_of::()) { 200s 511 + align: match NonZeroUsize::new(align_of::()) { 200s | 200s 200s warning: unnecessary qualification 200s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:517:29 200s | 200s 517 | _elem_size: mem::size_of::(), 200s | ^^^^^^^^^^^^^^^^^ 200s | 200s help: remove the unnecessary path segments 200s | 200s 517 - _elem_size: mem::size_of::(), 200s 517 + _elem_size: size_of::(), 200s | 200s 200s warning: unnecessary qualification 200s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:1418:19 200s | 200s 1418 | let len = mem::size_of_val(self); 200s | ^^^^^^^^^^^^^^^^ 200s | 200s help: remove the unnecessary path segments 200s | 200s 1418 - let len = mem::size_of_val(self); 200s 1418 + let len = size_of_val(self); 200s | 200s 200s warning: unnecessary qualification 200s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:2714:19 200s | 200s 2714 | let len = mem::size_of_val(self); 200s | ^^^^^^^^^^^^^^^^ 200s | 200s help: remove the unnecessary path segments 200s | 200s 2714 - let len = mem::size_of_val(self); 200s 2714 + let len = size_of_val(self); 200s | 200s 200s warning: unnecessary qualification 200s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:2789:19 200s | 200s 2789 | let len = mem::size_of_val(self); 200s | ^^^^^^^^^^^^^^^^ 200s | 200s help: remove the unnecessary path segments 200s | 200s 2789 - let len = mem::size_of_val(self); 200s 2789 + let len = size_of_val(self); 200s | 200s 200s warning: unnecessary qualification 200s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:2863:27 200s | 200s 2863 | if bytes.len() != mem::size_of_val(self) { 200s | ^^^^^^^^^^^^^^^^ 200s | 200s help: remove the unnecessary path segments 200s | 200s 2863 - if bytes.len() != mem::size_of_val(self) { 200s 2863 + if bytes.len() != size_of_val(self) { 200s | 200s 200s warning: unnecessary qualification 200s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:2920:20 200s | 200s 2920 | let size = mem::size_of_val(self); 200s | ^^^^^^^^^^^^^^^^ 200s | 200s help: remove the unnecessary path segments 200s | 200s 2920 - let size = mem::size_of_val(self); 200s 2920 + let size = size_of_val(self); 200s | 200s 200s warning: unnecessary qualification 200s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:2981:45 200s | 200s 2981 | let start = bytes.len().checked_sub(mem::size_of_val(self))?; 200s | ^^^^^^^^^^^^^^^^ 200s | 200s help: remove the unnecessary path segments 200s | 200s 2981 - let start = bytes.len().checked_sub(mem::size_of_val(self))?; 200s 2981 + let start = bytes.len().checked_sub(size_of_val(self))?; 200s | 200s 200s warning: unnecessary qualification 200s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:4161:27 200s | 200s 4161 | if bytes.len() != mem::size_of::() || !util::aligned_to::<_, T>(bytes.deref()) { 200s | ^^^^^^^^^^^^^^^^^ 200s | 200s help: remove the unnecessary path segments 200s | 200s 4161 - if bytes.len() != mem::size_of::() || !util::aligned_to::<_, T>(bytes.deref()) { 200s 4161 + if bytes.len() != size_of::() || !util::aligned_to::<_, T>(bytes.deref()) { 200s | 200s 200s warning: unnecessary qualification 200s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:4176:26 200s | 200s 4176 | if bytes.len() < mem::size_of::() || !util::aligned_to::<_, T>(bytes.deref()) { 200s | ^^^^^^^^^^^^^^^^^ 200s | 200s help: remove the unnecessary path segments 200s | 200s 4176 - if bytes.len() < mem::size_of::() || !util::aligned_to::<_, T>(bytes.deref()) { 200s 4176 + if bytes.len() < size_of::() || !util::aligned_to::<_, T>(bytes.deref()) { 200s | 200s 200s warning: unnecessary qualification 200s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:4179:46 200s | 200s 4179 | let (bytes, suffix) = bytes.split_at(mem::size_of::()); 200s | ^^^^^^^^^^^^^^^^^ 200s | 200s help: remove the unnecessary path segments 200s | 200s 4179 - let (bytes, suffix) = bytes.split_at(mem::size_of::()); 200s 4179 + let (bytes, suffix) = bytes.split_at(size_of::()); 200s | 200s 200s warning: unnecessary qualification 200s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:4194:46 200s | 200s 4194 | let split_at = bytes_len.checked_sub(mem::size_of::())?; 200s | ^^^^^^^^^^^^^^^^^ 200s | 200s help: remove the unnecessary path segments 200s | 200s 4194 - let split_at = bytes_len.checked_sub(mem::size_of::())?; 200s 4194 + let split_at = bytes_len.checked_sub(size_of::())?; 200s | 200s 200s warning: unnecessary qualification 200s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:4221:26 200s | 200s 4221 | .checked_rem(mem::size_of::()) 200s | ^^^^^^^^^^^^^^^^^ 200s | 200s help: remove the unnecessary path segments 200s | 200s 4221 - .checked_rem(mem::size_of::()) 200s 4221 + .checked_rem(size_of::()) 200s | 200s 200s warning: unnecessary qualification 200s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:4243:34 200s | 200s 4243 | let expected_len = match mem::size_of::().checked_mul(count) { 200s | ^^^^^^^^^^^^^^^^^ 200s | 200s help: remove the unnecessary path segments 200s | 200s 4243 - let expected_len = match mem::size_of::().checked_mul(count) { 200s 4243 + let expected_len = match size_of::().checked_mul(count) { 200s | 200s 200s warning: unnecessary qualification 200s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:4268:34 200s | 200s 4268 | let expected_len = match mem::size_of::().checked_mul(count) { 200s | ^^^^^^^^^^^^^^^^^ 200s | 200s help: remove the unnecessary path segments 200s | 200s 4268 - let expected_len = match mem::size_of::().checked_mul(count) { 200s 4268 + let expected_len = match size_of::().checked_mul(count) { 200s | 200s 200s warning: unnecessary qualification 200s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:4795:25 200s | 200s 4795 | let elem_size = mem::size_of::(); 200s | ^^^^^^^^^^^^^^^^^ 200s | 200s help: remove the unnecessary path segments 200s | 200s 4795 - let elem_size = mem::size_of::(); 200s 4795 + let elem_size = size_of::(); 200s | 200s 200s warning: unnecessary qualification 200s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:4825:25 200s | 200s 4825 | let elem_size = mem::size_of::(); 200s | ^^^^^^^^^^^^^^^^^ 200s | 200s help: remove the unnecessary path segments 200s | 200s 4825 - let elem_size = mem::size_of::(); 200s 4825 + let elem_size = size_of::(); 200s | 200s 200s warning: `zerocopy` (lib) generated 22 warnings (1 duplicate) 200s Compiling tracing-core v0.1.32 200s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=tracing_core CARGO_MANIFEST_DIR=/tmp/tmp.PIv8cIzOKd/registry/tracing-core-0.1.32 CARGO_MANIFEST_PATH=/tmp/tmp.PIv8cIzOKd/registry/tracing-core-0.1.32/Cargo.toml CARGO_PKG_AUTHORS='Tokio Contributors ' CARGO_PKG_DESCRIPTION='Core primitives for application-level tracing. 200s ' CARGO_PKG_HOMEPAGE='https://tokio.rs' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=tracing-core CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/tokio-rs/tracing' CARGO_PKG_RUST_VERSION=1.56.0 CARGO_PKG_VERSION=0.1.32 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=32 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.PIv8cIzOKd/target/debug/deps rustc --crate-name tracing_core --edition=2018 /tmp/tmp.PIv8cIzOKd/registry/tracing-core-0.1.32/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="once_cell"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "once_cell", "std", "valuable"))' -C metadata=4c8af7279fad1469 -C extra-filename=-4c8af7279fad1469 --out-dir /tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.PIv8cIzOKd/target/debug/deps --extern once_cell=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps/libonce_cell-f9b984852945e4ac.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.PIv8cIzOKd/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 200s warning: lint `private_in_public` has been removed: replaced with another group of lints, see RFC for more information 200s --> /usr/share/cargo/registry/tracing-core-0.1.32/src/lib.rs:138:5 200s | 200s 138 | private_in_public, 200s | ^^^^^^^^^^^^^^^^^ 200s | 200s = note: `#[warn(renamed_and_removed_lints)]` on by default 200s 200s warning: unexpected `cfg` condition value: `alloc` 200s --> /usr/share/cargo/registry/tracing-core-0.1.32/src/dispatcher.rs:147:7 200s | 200s 147 | #[cfg(feature = "alloc")] 200s | ^^^^^^^^^^^^^^^^^ 200s | 200s = note: expected values for `feature` are: `default`, `once_cell`, `std`, and `valuable` 200s = help: consider adding `alloc` as a feature in `Cargo.toml` 200s = note: see for more information about checking conditional configuration 200s = note: `#[warn(unexpected_cfgs)]` on by default 200s 200s warning: unexpected `cfg` condition value: `alloc` 200s --> /usr/share/cargo/registry/tracing-core-0.1.32/src/dispatcher.rs:150:7 200s | 200s 150 | #[cfg(feature = "alloc")] 200s | ^^^^^^^^^^^^^^^^^ 200s | 200s = note: expected values for `feature` are: `default`, `once_cell`, `std`, and `valuable` 200s = help: consider adding `alloc` as a feature in `Cargo.toml` 200s = note: see for more information about checking conditional configuration 200s 200s warning: unexpected `cfg` condition name: `tracing_unstable` 200s --> /usr/share/cargo/registry/tracing-core-0.1.32/src/field.rs:374:11 200s | 200s 374 | #[cfg(all(tracing_unstable, feature = "valuable"))] 200s | ^^^^^^^^^^^^^^^^ 200s | 200s = help: expected names are: `clippy`, `debug_assertions`, `doc`, `docsrs`, `doctest`, `feature`, `fmt_debug`, `miri`, `overflow_checks`, `panic`, `proc_macro`, `relocation_model`, `rustfmt`, `sanitize`, `sanitizer_cfi_generalize_pointers`, `sanitizer_cfi_normalize_integers`, `target_abi`, `target_arch`, `target_endian`, `target_env`, `target_family`, `target_feature`, `target_has_atomic`, `target_has_atomic_equal_alignment`, `target_has_atomic_load_store`, `target_os`, `target_pointer_width`, `target_thread_local`, `target_vendor`, `test`, `ub_checks`, `unix`, and `windows` 200s = help: consider using a Cargo feature instead 200s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 200s [lints.rust] 200s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tracing_unstable)'] } 200s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tracing_unstable)");` to the top of the `build.rs` 200s = note: see for more information about checking conditional configuration 200s 200s warning: unexpected `cfg` condition name: `tracing_unstable` 200s --> /usr/share/cargo/registry/tracing-core-0.1.32/src/field.rs:719:11 200s | 200s 719 | #[cfg(all(tracing_unstable, feature = "valuable"))] 200s | ^^^^^^^^^^^^^^^^ 200s | 200s = help: consider using a Cargo feature instead 200s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 200s [lints.rust] 200s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tracing_unstable)'] } 200s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tracing_unstable)");` to the top of the `build.rs` 200s = note: see for more information about checking conditional configuration 200s 200s warning: unexpected `cfg` condition name: `tracing_unstable` 200s --> /usr/share/cargo/registry/tracing-core-0.1.32/src/field.rs:722:11 200s | 200s 722 | #[cfg(all(tracing_unstable, feature = "valuable"))] 200s | ^^^^^^^^^^^^^^^^ 200s | 200s = help: consider using a Cargo feature instead 200s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 200s [lints.rust] 200s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tracing_unstable)'] } 200s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tracing_unstable)");` to the top of the `build.rs` 200s = note: see for more information about checking conditional configuration 200s 200s warning: unexpected `cfg` condition name: `tracing_unstable` 200s --> /usr/share/cargo/registry/tracing-core-0.1.32/src/field.rs:730:11 200s | 200s 730 | #[cfg(all(tracing_unstable, feature = "valuable"))] 200s | ^^^^^^^^^^^^^^^^ 200s | 200s = help: consider using a Cargo feature instead 200s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 200s [lints.rust] 200s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tracing_unstable)'] } 200s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tracing_unstable)");` to the top of the `build.rs` 200s = note: see for more information about checking conditional configuration 200s 200s warning: unexpected `cfg` condition name: `tracing_unstable` 200s --> /usr/share/cargo/registry/tracing-core-0.1.32/src/field.rs:733:11 200s | 200s 733 | #[cfg(all(tracing_unstable, feature = "valuable"))] 200s | ^^^^^^^^^^^^^^^^ 200s | 200s = help: consider using a Cargo feature instead 200s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 200s [lints.rust] 200s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tracing_unstable)'] } 200s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tracing_unstable)");` to the top of the `build.rs` 200s = note: see for more information about checking conditional configuration 200s 200s warning: unexpected `cfg` condition name: `tracing_unstable` 200s --> /usr/share/cargo/registry/tracing-core-0.1.32/src/field.rs:270:15 200s | 200s 270 | #[cfg(all(tracing_unstable, feature = "valuable"))] 200s | ^^^^^^^^^^^^^^^^ 200s | 200s = help: consider using a Cargo feature instead 200s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 200s [lints.rust] 200s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tracing_unstable)'] } 200s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tracing_unstable)");` to the top of the `build.rs` 200s = note: see for more information about checking conditional configuration 200s 200s warning: creating a shared reference to mutable static is discouraged 200s --> /usr/share/cargo/registry/tracing-core-0.1.32/src/dispatcher.rs:458:9 200s | 200s 458 | &GLOBAL_DISPATCH 200s | ^^^^^^^^^^^^^^^^ shared reference to mutable static 200s | 200s = note: for more information, see 200s = note: shared references to mutable statics are dangerous; it's undefined behavior if the static is mutated or if a mutable reference is created for it while the shared reference lives 200s = note: `#[warn(static_mut_refs)]` on by default 200s help: use `&raw const` instead to create a raw pointer 200s | 200s 458 | &raw const GLOBAL_DISPATCH 200s | ~~~~~~~~~~ 200s 200s warning: `tracing-core` (lib) generated 11 warnings (1 duplicate) 200s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=slab CARGO_MANIFEST_DIR=/tmp/tmp.PIv8cIzOKd/registry/slab-0.4.9 CARGO_MANIFEST_PATH=/tmp/tmp.PIv8cIzOKd/registry/slab-0.4.9/Cargo.toml CARGO_PKG_AUTHORS='Carl Lerche ' CARGO_PKG_DESCRIPTION='Pre-allocated storage for a uniform data type' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=slab CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/tokio-rs/slab' CARGO_PKG_RUST_VERSION=1.31 CARGO_PKG_VERSION=0.4.9 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=4 CARGO_PKG_VERSION_PATCH=9 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.PIv8cIzOKd/target/debug/deps OUT_DIR=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/build/slab-2c89ee66d35953a1/out rustc --crate-name slab --edition=2018 /tmp/tmp.PIv8cIzOKd/registry/slab-0.4.9/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "serde", "std"))' -C metadata=36320af34be0827b -C extra-filename=-36320af34be0827b --out-dir /tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.PIv8cIzOKd/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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.PIv8cIzOKd/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 200s warning: unexpected `cfg` condition name: `slab_no_const_vec_new` 200s --> /usr/share/cargo/registry/slab-0.4.9/src/lib.rs:250:15 200s | 200s 250 | #[cfg(not(slab_no_const_vec_new))] 200s | ^^^^^^^^^^^^^^^^^^^^^ 200s | 200s = help: expected names are: `clippy`, `debug_assertions`, `doc`, `docsrs`, `doctest`, `feature`, `fmt_debug`, `miri`, `overflow_checks`, `panic`, `proc_macro`, `relocation_model`, `rustfmt`, `sanitize`, `sanitizer_cfi_generalize_pointers`, `sanitizer_cfi_normalize_integers`, `target_abi`, `target_arch`, `target_endian`, `target_env`, `target_family`, `target_feature`, `target_has_atomic`, `target_has_atomic_equal_alignment`, `target_has_atomic_load_store`, `target_os`, `target_pointer_width`, `target_thread_local`, `target_vendor`, `test`, `ub_checks`, `unix`, and `windows` 200s = help: consider using a Cargo feature instead 200s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 200s [lints.rust] 200s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(slab_no_const_vec_new)'] } 200s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(slab_no_const_vec_new)");` to the top of the `build.rs` 200s = note: see for more information about checking conditional configuration 200s = note: `#[warn(unexpected_cfgs)]` on by default 200s 200s warning: unexpected `cfg` condition name: `slab_no_const_vec_new` 200s --> /usr/share/cargo/registry/slab-0.4.9/src/lib.rs:264:11 200s | 200s 264 | #[cfg(slab_no_const_vec_new)] 200s | ^^^^^^^^^^^^^^^^^^^^^ 200s | 200s = help: consider using a Cargo feature instead 200s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 200s [lints.rust] 200s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(slab_no_const_vec_new)'] } 200s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(slab_no_const_vec_new)");` to the top of the `build.rs` 200s = note: see for more information about checking conditional configuration 200s 200s warning: unexpected `cfg` condition name: `slab_no_track_caller` 200s --> /usr/share/cargo/registry/slab-0.4.9/src/lib.rs:929:20 200s | 200s 929 | #[cfg_attr(not(slab_no_track_caller), track_caller)] 200s | ^^^^^^^^^^^^^^^^^^^^ 200s | 200s = help: consider using a Cargo feature instead 200s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 200s [lints.rust] 200s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(slab_no_track_caller)'] } 200s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(slab_no_track_caller)");` to the top of the `build.rs` 200s = note: see for more information about checking conditional configuration 200s 200s warning: unexpected `cfg` condition name: `slab_no_track_caller` 200s --> /usr/share/cargo/registry/slab-0.4.9/src/lib.rs:1098:20 200s | 200s 1098 | #[cfg_attr(not(slab_no_track_caller), track_caller)] 200s | ^^^^^^^^^^^^^^^^^^^^ 200s | 200s = help: consider using a Cargo feature instead 200s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 200s [lints.rust] 200s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(slab_no_track_caller)'] } 200s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(slab_no_track_caller)");` to the top of the `build.rs` 200s = note: see for more information about checking conditional configuration 200s 200s warning: unexpected `cfg` condition name: `slab_no_track_caller` 200s --> /usr/share/cargo/registry/slab-0.4.9/src/lib.rs:1206:20 200s | 200s 1206 | #[cfg_attr(not(slab_no_track_caller), track_caller)] 200s | ^^^^^^^^^^^^^^^^^^^^ 200s | 200s = help: consider using a Cargo feature instead 200s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 200s [lints.rust] 200s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(slab_no_track_caller)'] } 200s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(slab_no_track_caller)");` to the top of the `build.rs` 200s = note: see for more information about checking conditional configuration 200s 200s warning: unexpected `cfg` condition name: `slab_no_track_caller` 200s --> /usr/share/cargo/registry/slab-0.4.9/src/lib.rs:1216:20 200s | 200s 1216 | #[cfg_attr(not(slab_no_track_caller), track_caller)] 200s | ^^^^^^^^^^^^^^^^^^^^ 200s | 200s = help: consider using a Cargo feature instead 200s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 200s [lints.rust] 200s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(slab_no_track_caller)'] } 200s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(slab_no_track_caller)");` to the top of the `build.rs` 200s = note: see for more information about checking conditional configuration 200s 200s warning: `slab` (lib) generated 7 warnings (1 duplicate) 200s Compiling enumflags2_derive v0.7.10 200s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=enumflags2_derive CARGO_MANIFEST_DIR=/tmp/tmp.PIv8cIzOKd/registry/enumflags2_derive-0.7.10 CARGO_MANIFEST_PATH=/tmp/tmp.PIv8cIzOKd/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.PIv8cIzOKd/target/debug/deps rustc --crate-name enumflags2_derive --edition=2018 /tmp/tmp.PIv8cIzOKd/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=588090abb48fd7e4 -C extra-filename=-588090abb48fd7e4 --out-dir /tmp/tmp.PIv8cIzOKd/target/debug/deps -L dependency=/tmp/tmp.PIv8cIzOKd/target/debug/deps --extern proc_macro2=/tmp/tmp.PIv8cIzOKd/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rlib --extern quote=/tmp/tmp.PIv8cIzOKd/target/debug/deps/libquote-dc92c6f25ee0f0c6.rlib --extern syn=/tmp/tmp.PIv8cIzOKd/target/debug/deps/libsyn-0167beed9e699402.rlib --extern proc_macro --cap-lints warn` 201s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=serde CARGO_MANIFEST_DIR=/tmp/tmp.PIv8cIzOKd/registry/serde-1.0.217 CARGO_MANIFEST_PATH=/tmp/tmp.PIv8cIzOKd/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.PIv8cIzOKd/target/debug/deps OUT_DIR=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/build/serde-c08ea6899e623ec6/out rustc --crate-name serde --edition=2018 /tmp/tmp.PIv8cIzOKd/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=0e7dff716e38da0d -C extra-filename=-0e7dff716e38da0d --out-dir /tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.PIv8cIzOKd/target/debug/deps --extern serde_derive=/tmp/tmp.PIv8cIzOKd/target/debug/deps/libserde_derive-85fb19fec9ccb150.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.PIv8cIzOKd/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)'` 201s Compiling tracing-attributes v0.1.27 201s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=tracing_attributes CARGO_MANIFEST_DIR=/tmp/tmp.PIv8cIzOKd/registry/tracing-attributes-0.1.27 CARGO_MANIFEST_PATH=/tmp/tmp.PIv8cIzOKd/registry/tracing-attributes-0.1.27/Cargo.toml CARGO_PKG_AUTHORS='Tokio Contributors :Eliza Weisman :David Barsky ' CARGO_PKG_DESCRIPTION='Procedural macro attributes for automatically instrumenting functions. 201s ' CARGO_PKG_HOMEPAGE='https://tokio.rs' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=tracing-attributes CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/tokio-rs/tracing' CARGO_PKG_RUST_VERSION=1.56.0 CARGO_PKG_VERSION=0.1.27 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=27 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.PIv8cIzOKd/target/debug/deps rustc --crate-name tracing_attributes --edition=2018 /tmp/tmp.PIv8cIzOKd/registry/tracing-attributes-0.1.27/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("async-await"))' -C metadata=7f00f49c1aac99bb -C extra-filename=-7f00f49c1aac99bb --out-dir /tmp/tmp.PIv8cIzOKd/target/debug/deps -L dependency=/tmp/tmp.PIv8cIzOKd/target/debug/deps --extern proc_macro2=/tmp/tmp.PIv8cIzOKd/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rlib --extern quote=/tmp/tmp.PIv8cIzOKd/target/debug/deps/libquote-dc92c6f25ee0f0c6.rlib --extern syn=/tmp/tmp.PIv8cIzOKd/target/debug/deps/libsyn-0167beed9e699402.rlib --extern proc_macro --cap-lints warn` 201s warning: lint `private_in_public` has been removed: replaced with another group of lints, see RFC for more information 201s --> /tmp/tmp.PIv8cIzOKd/registry/tracing-attributes-0.1.27/src/lib.rs:73:5 201s | 201s 73 | private_in_public, 201s | ^^^^^^^^^^^^^^^^^ 201s | 201s = note: `#[warn(renamed_and_removed_lints)]` on by default 201s 203s warning: `serde` (lib) generated 1 warning (1 duplicate) 203s Compiling getrandom v0.2.15 203s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=getrandom CARGO_MANIFEST_DIR=/tmp/tmp.PIv8cIzOKd/registry/getrandom-0.2.15 CARGO_MANIFEST_PATH=/tmp/tmp.PIv8cIzOKd/registry/getrandom-0.2.15/Cargo.toml CARGO_PKG_AUTHORS='The Rand Project Developers' CARGO_PKG_DESCRIPTION='A small cross-platform library for retrieving random data from system source' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=getrandom CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-random/getrandom' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.2.15 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=15 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.PIv8cIzOKd/target/debug/deps rustc --crate-name getrandom --edition=2018 /tmp/tmp.PIv8cIzOKd/registry/getrandom-0.2.15/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("compiler_builtins", "core", "custom", "linux_disable_fallback", "rdrand", "rustc-dep-of-std", "std", "test-in-browser"))' -C metadata=ed47f71499f7e17d -C extra-filename=-ed47f71499f7e17d --out-dir /tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.PIv8cIzOKd/target/debug/deps --extern cfg_if=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps/libcfg_if-ff3ff84a061de73f.rmeta --extern libc=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps/liblibc-cf2521928ac070dc.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.PIv8cIzOKd/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 203s warning: unexpected `cfg` condition value: `js` 203s --> /usr/share/cargo/registry/getrandom-0.2.15/src/lib.rs:334:25 203s | 203s 334 | } else if #[cfg(all(feature = "js", 203s | ^^^^^^^^^^^^^^ 203s | 203s = note: expected values for `feature` are: `compiler_builtins`, `core`, `custom`, `linux_disable_fallback`, `rdrand`, `rustc-dep-of-std`, `std`, and `test-in-browser` 203s = help: consider adding `js` as a feature in `Cargo.toml` 203s = note: see for more information about checking conditional configuration 203s = note: `#[warn(unexpected_cfgs)]` on by default 203s 203s warning: `getrandom` (lib) generated 2 warnings (1 duplicate) 203s Compiling memoffset v0.8.0 203s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.PIv8cIzOKd/registry/memoffset-0.8.0 CARGO_MANIFEST_PATH=/tmp/tmp.PIv8cIzOKd/registry/memoffset-0.8.0/Cargo.toml CARGO_PKG_AUTHORS='Gilad Naaman ' CARGO_PKG_DESCRIPTION='offset_of functionality for Rust structs.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=memoffset CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/Gilnaa/memoffset' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.8.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=8 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.PIv8cIzOKd/target/debug/deps rustc --crate-name build_script_build --edition=2015 /tmp/tmp.PIv8cIzOKd/registry/memoffset-0.8.0/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "unstable_const"))' -C metadata=b637076bbed49000 -C extra-filename=-b637076bbed49000 --out-dir /tmp/tmp.PIv8cIzOKd/target/debug/build/memoffset-b637076bbed49000 -L dependency=/tmp/tmp.PIv8cIzOKd/target/debug/deps --extern autocfg=/tmp/tmp.PIv8cIzOKd/target/debug/deps/libautocfg-9ebcd9511383083c.rlib --cap-lints warn` 203s warning: `tracing-attributes` (lib) generated 1 warning 203s Compiling errno v0.3.8 203s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=errno CARGO_MANIFEST_DIR=/tmp/tmp.PIv8cIzOKd/registry/errno-0.3.8 CARGO_MANIFEST_PATH=/tmp/tmp.PIv8cIzOKd/registry/errno-0.3.8/Cargo.toml CARGO_PKG_AUTHORS='Chris Wong ' CARGO_PKG_DESCRIPTION='Cross-platform interface to the `errno` variable.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=errno CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/lambda-fairy/rust-errno' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=0.3.8 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=8 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.PIv8cIzOKd/target/debug/deps rustc --crate-name errno --edition=2018 /tmp/tmp.PIv8cIzOKd/registry/errno-0.3.8/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "std"))' -C metadata=a511b7e92317ca2a -C extra-filename=-a511b7e92317ca2a --out-dir /tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.PIv8cIzOKd/target/debug/deps --extern libc=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps/liblibc-cf2521928ac070dc.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.PIv8cIzOKd/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 203s warning: unexpected `cfg` condition value: `bitrig` 203s --> /usr/share/cargo/registry/errno-0.3.8/src/unix.rs:77:13 203s | 203s 77 | target_os = "bitrig", 203s | ^^^^^^^^^^^^^^^^^^^^ 203s | 203s = note: expected values for `target_os` are: `aix`, `android`, `cuda`, `dragonfly`, `emscripten`, `espidf`, `freebsd`, `fuchsia`, `haiku`, `hermit`, `horizon`, `hurd`, `illumos`, `ios`, `l4re`, `linux`, `macos`, `netbsd`, `none`, `nto`, `nuttx`, `openbsd`, `psp`, `psx`, `redox`, `rtems`, `solaris`, `solid_asp3`, `teeos`, `trusty`, `tvos`, `uefi`, `unknown`, `visionos`, and `vita` and 6 more 203s = note: see for more information about checking conditional configuration 203s = note: `#[warn(unexpected_cfgs)]` on by default 203s 203s warning: `errno` (lib) generated 2 warnings (1 duplicate) 203s Compiling linux-raw-sys v0.4.14 203s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=linux_raw_sys CARGO_MANIFEST_DIR=/tmp/tmp.PIv8cIzOKd/registry/linux-raw-sys-0.4.14 CARGO_MANIFEST_PATH=/tmp/tmp.PIv8cIzOKd/registry/linux-raw-sys-0.4.14/Cargo.toml CARGO_PKG_AUTHORS='Dan Gohman ' CARGO_PKG_DESCRIPTION='Generated bindings for Linux'\''s userspace API' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=linux-raw-sys CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/sunfishcode/linux-raw-sys' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=0.4.14 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=4 CARGO_PKG_VERSION_PATCH=14 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.PIv8cIzOKd/target/debug/deps rustc --crate-name linux_raw_sys --edition=2021 /tmp/tmp.PIv8cIzOKd/registry/linux-raw-sys-0.4.14/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="general"' --cfg 'feature="if_ether"' --cfg 'feature="ioctl"' --cfg 'feature="net"' --cfg 'feature="netlink"' --cfg 'feature="no_std"' --cfg 'feature="prctl"' --cfg 'feature="xdp"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("bootparam", "compiler_builtins", "core", "default", "elf", "errno", "general", "if_arp", "if_ether", "if_packet", "io_uring", "ioctl", "loop_device", "mempolicy", "net", "netlink", "no_std", "prctl", "rustc-dep-of-std", "std", "system", "xdp"))' -C metadata=df2e18974a94e4e2 -C extra-filename=-df2e18974a94e4e2 --out-dir /tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.PIv8cIzOKd/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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.PIv8cIzOKd/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 203s Compiling cfg_aliases v0.2.1 203s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=cfg_aliases CARGO_MANIFEST_DIR=/tmp/tmp.PIv8cIzOKd/registry/cfg_aliases-0.2.1 CARGO_MANIFEST_PATH=/tmp/tmp.PIv8cIzOKd/registry/cfg_aliases-0.2.1/Cargo.toml CARGO_PKG_AUTHORS='Zicklag ' CARGO_PKG_DESCRIPTION='A tiny utility to help save you a lot of effort with long winded `#[cfg()]` checks.' CARGO_PKG_HOMEPAGE='https://github.com/katharostech/cfg_aliases' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=cfg_aliases CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/katharostech/cfg_aliases' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.2.1 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.PIv8cIzOKd/target/debug/deps rustc --crate-name cfg_aliases --edition=2018 /tmp/tmp.PIv8cIzOKd/registry/cfg_aliases-0.2.1/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 '--deny=clippy::str_to_string' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=8701cbe9ff8ee006 -C extra-filename=-8701cbe9ff8ee006 --out-dir /tmp/tmp.PIv8cIzOKd/target/debug/deps -L dependency=/tmp/tmp.PIv8cIzOKd/target/debug/deps --cap-lints warn` 203s Compiling async-task v4.7.1 203s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=async_task CARGO_MANIFEST_DIR=/tmp/tmp.PIv8cIzOKd/registry/async-task-4.7.1 CARGO_MANIFEST_PATH=/tmp/tmp.PIv8cIzOKd/registry/async-task-4.7.1/Cargo.toml CARGO_PKG_AUTHORS='Stjepan Glavina ' CARGO_PKG_DESCRIPTION='Task abstraction for building executors' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=async-task CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/smol-rs/async-task' CARGO_PKG_RUST_VERSION=1.57 CARGO_PKG_VERSION=4.7.1 CARGO_PKG_VERSION_MAJOR=4 CARGO_PKG_VERSION_MINOR=7 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.PIv8cIzOKd/target/debug/deps rustc --crate-name async_task --edition=2021 /tmp/tmp.PIv8cIzOKd/registry/async-task-4.7.1/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "portable-atomic", "std"))' -C metadata=18059860e85d74b4 -C extra-filename=-18059860e85d74b4 --out-dir /tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.PIv8cIzOKd/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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.PIv8cIzOKd/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 204s warning: `async-task` (lib) generated 1 warning (1 duplicate) 204s Compiling nix v0.29.0 204s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.PIv8cIzOKd/registry/nix-0.29.0 CARGO_MANIFEST_PATH=/tmp/tmp.PIv8cIzOKd/registry/nix-0.29.0/Cargo.toml CARGO_PKG_AUTHORS='The nix-rust Project Developers' CARGO_PKG_DESCRIPTION='Rust friendly bindings to *nix APIs' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=nix CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/nix-rust/nix' CARGO_PKG_RUST_VERSION=1.69 CARGO_PKG_VERSION=0.29.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=29 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.PIv8cIzOKd/target/debug/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.PIv8cIzOKd/registry/nix-0.29.0/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="feature"' --cfg 'feature="memoffset"' --cfg 'feature="socket"' --cfg 'feature="uio"' --cfg 'feature="user"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("acct", "aio", "default", "dir", "env", "event", "fanotify", "feature", "fs", "hostname", "inotify", "ioctl", "kmod", "memoffset", "mman", "mount", "mqueue", "net", "personality", "pin-utils", "poll", "process", "pthread", "ptrace", "quota", "reboot", "resource", "sched", "signal", "socket", "term", "time", "ucontext", "uio", "user", "zerocopy"))' -C metadata=9cc97a3a2fcb749b -C extra-filename=-9cc97a3a2fcb749b --out-dir /tmp/tmp.PIv8cIzOKd/target/debug/build/nix-9cc97a3a2fcb749b -L dependency=/tmp/tmp.PIv8cIzOKd/target/debug/deps --extern cfg_aliases=/tmp/tmp.PIv8cIzOKd/target/debug/deps/libcfg_aliases-8701cbe9ff8ee006.rlib --cap-lints warn` 204s 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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0--remap-path-prefix/tmp/tmp.PIv8cIzOKd/registry=/usr/share/cargo/registry-Ctarget-feature=+backchain' CARGO_FEATURE_DEFAULT=1 CARGO_MANIFEST_DIR=/tmp/tmp.PIv8cIzOKd/registry/memoffset-0.8.0 CARGO_MANIFEST_PATH=/tmp/tmp.PIv8cIzOKd/registry/memoffset-0.8.0/Cargo.toml CARGO_PKG_AUTHORS='Gilad Naaman ' CARGO_PKG_DESCRIPTION='offset_of functionality for Rust structs.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=memoffset CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/Gilnaa/memoffset' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.8.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=8 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' DEBUG=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.PIv8cIzOKd/target/debug/deps:/tmp/tmp.PIv8cIzOKd/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/build/memoffset-b32fed70cf81e31f/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.PIv8cIzOKd/target/debug/build/memoffset-b637076bbed49000/build-script-build` 204s [memoffset 0.8.0] warning: unstable feature specified for `-Ctarget-feature`: `backchain` 204s [memoffset 0.8.0] | 204s [memoffset 0.8.0] = note: this feature is not stably supported; its behavior can change in the future 204s [memoffset 0.8.0] 204s [memoffset 0.8.0] warning: 1 warning emitted 204s [memoffset 0.8.0] 204s [memoffset 0.8.0] cargo:rustc-cfg=tuple_ty 204s [memoffset 0.8.0] cargo:rustc-cfg=allow_clippy 204s [memoffset 0.8.0] cargo:rustc-cfg=maybe_uninit 204s [memoffset 0.8.0] cargo:rustc-cfg=doctests 204s [memoffset 0.8.0] cargo:rustc-cfg=raw_ref_macros 204s [memoffset 0.8.0] cargo:rustc-cfg=stable_const 204s Compiling tracing v0.1.40 204s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=tracing CARGO_MANIFEST_DIR=/tmp/tmp.PIv8cIzOKd/registry/tracing-0.1.40 CARGO_MANIFEST_PATH=/tmp/tmp.PIv8cIzOKd/registry/tracing-0.1.40/Cargo.toml CARGO_PKG_AUTHORS='Eliza Weisman :Tokio Contributors ' CARGO_PKG_DESCRIPTION='Application-level tracing for Rust. 204s ' CARGO_PKG_HOMEPAGE='https://tokio.rs' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=tracing CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/tokio-rs/tracing' CARGO_PKG_RUST_VERSION=1.56.0 CARGO_PKG_VERSION=0.1.40 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=40 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.PIv8cIzOKd/target/debug/deps rustc --crate-name tracing --edition=2018 /tmp/tmp.PIv8cIzOKd/registry/tracing-0.1.40/src/lib.rs --error-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="attributes"' --cfg 'feature="default"' --cfg 'feature="std"' --cfg 'feature="tracing-attributes"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("async-await", "attributes", "default", "log", "log-always", "max_level_debug", "max_level_error", "max_level_info", "max_level_off", "max_level_trace", "max_level_warn", "release_max_level_debug", "release_max_level_error", "release_max_level_info", "release_max_level_off", "release_max_level_trace", "release_max_level_warn", "std", "tracing-attributes"))' -C metadata=5f8a2432d30b4ef1 -C extra-filename=-5f8a2432d30b4ef1 --out-dir /tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.PIv8cIzOKd/target/debug/deps --extern pin_project_lite=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps/libpin_project_lite-5dc815523e98d889.rmeta --extern tracing_attributes=/tmp/tmp.PIv8cIzOKd/target/debug/deps/libtracing_attributes-7f00f49c1aac99bb.so --extern tracing_core=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps/libtracing_core-4c8af7279fad1469.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.PIv8cIzOKd/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 204s warning: lint `private_in_public` has been removed: replaced with another group of lints, see RFC for more information 204s --> /usr/share/cargo/registry/tracing-0.1.40/src/lib.rs:932:5 204s | 204s 932 | private_in_public, 204s | ^^^^^^^^^^^^^^^^^ 204s | 204s = note: `#[warn(renamed_and_removed_lints)]` on by default 204s 204s warning: `linux-raw-sys` (lib) generated 1 warning (1 duplicate) 204s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=rustix CARGO_MANIFEST_DIR=/tmp/tmp.PIv8cIzOKd/registry/rustix-0.38.37 CARGO_MANIFEST_PATH=/tmp/tmp.PIv8cIzOKd/registry/rustix-0.38.37/Cargo.toml CARGO_PKG_AUTHORS='Dan Gohman :Jakub Konka ' CARGO_PKG_DESCRIPTION='Safe Rust bindings to POSIX/Unix/Linux/Winsock-like syscalls' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=rustix CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/bytecodealliance/rustix' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=0.38.37 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=38 CARGO_PKG_VERSION_PATCH=37 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.PIv8cIzOKd/target/debug/deps OUT_DIR=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/build/rustix-bc16aac95f297369/out rustc --crate-name rustix --edition=2021 /tmp/tmp.PIv8cIzOKd/registry/rustix-0.38.37/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --warn=unexpected_cfgs --check-cfg 'cfg(alloc_c_string)' --check-cfg 'cfg(alloc_ffi)' --check-cfg 'cfg(apple)' --check-cfg 'cfg(asm_experimental_arch)' --check-cfg 'cfg(bsd)' --check-cfg 'cfg(core_c_str)' --check-cfg 'cfg(core_ffi_c)' --check-cfg 'cfg(core_intrinsics)' --check-cfg 'cfg(criterion)' --check-cfg 'cfg(document_experimental_runtime_api)' --check-cfg 'cfg(fix_y2038)' --check-cfg 'cfg(freebsdlike)' --check-cfg 'cfg(libc)' --check-cfg 'cfg(linux_kernel)' --check-cfg 'cfg(linux_like)' --check-cfg 'cfg(linux_raw)' --check-cfg 'cfg(netbsdlike)' --check-cfg 'cfg(rustc_attrs)' --check-cfg 'cfg(solarish)' --check-cfg 'cfg(staged_api)' --check-cfg 'cfg(static_assertions)' --check-cfg 'cfg(thumb_mode)' --check-cfg 'cfg(wasi)' --check-cfg 'cfg(wasi_ext)' --check-cfg 'cfg(target_arch, values("xtensa"))' --cfg 'feature="alloc"' --cfg 'feature="event"' --cfg 'feature="fs"' --cfg 'feature="libc-extra-traits"' --cfg 'feature="net"' --cfg 'feature="pipe"' --cfg 'feature="process"' --cfg 'feature="std"' --cfg 'feature="time"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("all-apis", "alloc", "cc", "compiler_builtins", "core", "default", "event", "fs", "io_uring", "itoa", "libc", "libc-extra-traits", "libc_errno", "linux_4_11", "linux_latest", "mm", "mount", "net", "once_cell", "param", "pipe", "process", "procfs", "pty", "rand", "runtime", "rustc-dep-of-std", "shm", "std", "stdio", "system", "termios", "thread", "time", "try_close", "use-explicitly-provided-auxv", "use-libc", "use-libc-auxv"))' -C metadata=c5174677adcec892 -C extra-filename=-c5174677adcec892 --out-dir /tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.PIv8cIzOKd/target/debug/deps --extern bitflags=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps/libbitflags-65f3f529c7b65778.rmeta --extern libc_errno=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps/liberrno-a511b7e92317ca2a.rmeta --extern libc=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps/liblibc-cf2521928ac070dc.rmeta --extern linux_raw_sys=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps/liblinux_raw_sys-df2e18974a94e4e2.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.PIv8cIzOKd/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain --cfg static_assertions --cfg libc --cfg linux_like --cfg linux_kernel` 204s warning: `tracing` (lib) generated 2 warnings (1 duplicate) 204s Compiling rand_core v0.6.4 204s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=rand_core CARGO_MANIFEST_DIR=/tmp/tmp.PIv8cIzOKd/registry/rand_core-0.6.4 CARGO_MANIFEST_PATH=/tmp/tmp.PIv8cIzOKd/registry/rand_core-0.6.4/Cargo.toml CARGO_PKG_AUTHORS='The Rand Project Developers:The Rust Project Developers' CARGO_PKG_DESCRIPTION='Core random number generator traits and tools for implementation. 204s ' CARGO_PKG_HOMEPAGE='https://rust-random.github.io/book' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=rand_core CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-random/rand' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.6.4 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=6 CARGO_PKG_VERSION_PATCH=4 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.PIv8cIzOKd/target/debug/deps rustc --crate-name rand_core --edition=2018 /tmp/tmp.PIv8cIzOKd/registry/rand_core-0.6.4/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="alloc"' --cfg 'feature="getrandom"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "getrandom", "serde", "serde1", "std"))' -C metadata=3c7246ca3f419bbc -C extra-filename=-3c7246ca3f419bbc --out-dir /tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.PIv8cIzOKd/target/debug/deps --extern getrandom=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps/libgetrandom-ed47f71499f7e17d.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.PIv8cIzOKd/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /usr/share/cargo/registry/rand_core-0.6.4/src/lib.rs:38:13 204s | 204s 38 | #![cfg_attr(doc_cfg, feature(doc_cfg))] 204s | ^^^^^^^ 204s | 204s = help: expected names are: `clippy`, `debug_assertions`, `doc`, `docsrs`, `doctest`, `feature`, `fmt_debug`, `miri`, `overflow_checks`, `panic`, `proc_macro`, `relocation_model`, `rustfmt`, `sanitize`, `sanitizer_cfi_generalize_pointers`, `sanitizer_cfi_normalize_integers`, `target_abi`, `target_arch`, `target_endian`, `target_env`, `target_family`, `target_feature`, `target_has_atomic`, `target_has_atomic_equal_alignment`, `target_has_atomic_load_store`, `target_os`, `target_pointer_width`, `target_thread_local`, `target_vendor`, `test`, `ub_checks`, `unix`, and `windows` 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s = note: `#[warn(unexpected_cfgs)]` on by default 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /usr/share/cargo/registry/rand_core-0.6.4/src/error.rs:50:16 204s | 204s 50 | #[cfg_attr(doc_cfg, doc(cfg(feature = "std")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /usr/share/cargo/registry/rand_core-0.6.4/src/error.rs:64:16 204s | 204s 64 | #[cfg_attr(doc_cfg, doc(cfg(feature = "std")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /usr/share/cargo/registry/rand_core-0.6.4/src/error.rs:75:16 204s | 204s 75 | #[cfg_attr(doc_cfg, doc(cfg(feature = "std")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /usr/share/cargo/registry/rand_core-0.6.4/src/os.rs:46:12 204s | 204s 46 | #[cfg_attr(doc_cfg, doc(cfg(feature = "getrandom")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /usr/share/cargo/registry/rand_core-0.6.4/src/lib.rs:411:16 204s | 204s 411 | #[cfg_attr(doc_cfg, doc(cfg(feature = "getrandom")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: `rand_core` (lib) generated 7 warnings (1 duplicate) 204s Compiling enumflags2 v0.7.10 204s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=enumflags2 CARGO_MANIFEST_DIR=/tmp/tmp.PIv8cIzOKd/registry/enumflags2-0.7.10 CARGO_MANIFEST_PATH=/tmp/tmp.PIv8cIzOKd/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.PIv8cIzOKd/target/debug/deps rustc --crate-name enumflags2 --edition=2018 /tmp/tmp.PIv8cIzOKd/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=2867d32c4b4f39e8 -C extra-filename=-2867d32c4b4f39e8 --out-dir /tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.PIv8cIzOKd/target/debug/deps --extern enumflags2_derive=/tmp/tmp.PIv8cIzOKd/target/debug/deps/libenumflags2_derive-588090abb48fd7e4.so --extern serde=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps/libserde-0e7dff716e38da0d.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.PIv8cIzOKd/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 205s warning: `enumflags2` (lib) generated 1 warning (1 duplicate) 205s Compiling ppv-lite86 v0.2.20 205s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=ppv_lite86 CARGO_MANIFEST_DIR=/tmp/tmp.PIv8cIzOKd/registry/ppv-lite86-0.2.20 CARGO_MANIFEST_PATH=/tmp/tmp.PIv8cIzOKd/registry/ppv-lite86-0.2.20/Cargo.toml CARGO_PKG_AUTHORS='The CryptoCorrosion Contributors' CARGO_PKG_DESCRIPTION='Implementation of the crypto-simd API for x86' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=ppv-lite86 CARGO_PKG_README='' CARGO_PKG_REPOSITORY='https://github.com/cryptocorrosion/cryptocorrosion' CARGO_PKG_RUST_VERSION=1.61 CARGO_PKG_VERSION=0.2.20 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=20 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.PIv8cIzOKd/target/debug/deps rustc --crate-name ppv_lite86 --edition=2021 /tmp/tmp.PIv8cIzOKd/registry/ppv-lite86-0.2.20/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="simd"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "no_simd", "simd", "std"))' -C metadata=57e5b566e2a71c09 -C extra-filename=-57e5b566e2a71c09 --out-dir /tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.PIv8cIzOKd/target/debug/deps --extern zerocopy=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps/libzerocopy-777d8c6c10ffcfc6.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.PIv8cIzOKd/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 205s warning: `ppv-lite86` (lib) generated 1 warning (1 duplicate) 205s Compiling zvariant_derive v4.2.0 205s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=zvariant_derive CARGO_MANIFEST_DIR=/tmp/tmp.PIv8cIzOKd/registry/zvariant_derive-4.2.0 CARGO_MANIFEST_PATH=/tmp/tmp.PIv8cIzOKd/registry/zvariant_derive-4.2.0/Cargo.toml CARGO_PKG_AUTHORS='Zeeshan Ali Khan ' CARGO_PKG_DESCRIPTION='D-Bus & GVariant encoding & decoding' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=zvariant_derive CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dbus2/zbus/' CARGO_PKG_RUST_VERSION=1.75 CARGO_PKG_VERSION=4.2.0 CARGO_PKG_VERSION_MAJOR=4 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.PIv8cIzOKd/target/debug/deps rustc --crate-name zvariant_derive --edition=2021 /tmp/tmp.PIv8cIzOKd/registry/zvariant_derive-4.2.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type proc-macro --emit=dep-info,link -C prefer-dynamic -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=307afde79edbb6d8 -C extra-filename=-307afde79edbb6d8 --out-dir /tmp/tmp.PIv8cIzOKd/target/debug/deps -L dependency=/tmp/tmp.PIv8cIzOKd/target/debug/deps --extern proc_macro_crate=/tmp/tmp.PIv8cIzOKd/target/debug/deps/libproc_macro_crate-900b46bff7d8f3e2.rlib --extern proc_macro2=/tmp/tmp.PIv8cIzOKd/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rlib --extern quote=/tmp/tmp.PIv8cIzOKd/target/debug/deps/libquote-dc92c6f25ee0f0c6.rlib --extern syn=/tmp/tmp.PIv8cIzOKd/target/debug/deps/libsyn-0167beed9e699402.rlib --extern zvariant_utils=/tmp/tmp.PIv8cIzOKd/target/debug/deps/libzvariant_utils-555d90bad4acf190.rlib --extern proc_macro --cap-lints warn` 206s Compiling crypto-common v0.1.6 206s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=crypto_common CARGO_MANIFEST_DIR=/tmp/tmp.PIv8cIzOKd/registry/crypto-common-0.1.6 CARGO_MANIFEST_PATH=/tmp/tmp.PIv8cIzOKd/registry/crypto-common-0.1.6/Cargo.toml CARGO_PKG_AUTHORS='RustCrypto Developers' CARGO_PKG_DESCRIPTION='Common cryptographic traits' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=crypto-common CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/RustCrypto/traits' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.1.6 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=6 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.PIv8cIzOKd/target/debug/deps rustc --crate-name crypto_common --edition=2018 /tmp/tmp.PIv8cIzOKd/registry/crypto-common-0.1.6/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("getrandom", "rand_core", "std"))' -C metadata=77cd648c700afbb2 -C extra-filename=-77cd648c700afbb2 --out-dir /tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.PIv8cIzOKd/target/debug/deps --extern generic_array=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps/libgeneric_array-d02d059964c7aee0.rmeta --extern typenum=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps/libtypenum-c66037e8139405ff.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.PIv8cIzOKd/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 206s warning: `crypto-common` (lib) generated 1 warning (1 duplicate) 206s Compiling block-buffer v0.10.2 206s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=block_buffer CARGO_MANIFEST_DIR=/tmp/tmp.PIv8cIzOKd/registry/block-buffer-0.10.2 CARGO_MANIFEST_PATH=/tmp/tmp.PIv8cIzOKd/registry/block-buffer-0.10.2/Cargo.toml CARGO_PKG_AUTHORS='RustCrypto Developers' CARGO_PKG_DESCRIPTION='Buffer type for block processing of data' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=block-buffer CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/RustCrypto/utils' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.10.2 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=10 CARGO_PKG_VERSION_PATCH=2 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.PIv8cIzOKd/target/debug/deps rustc --crate-name block_buffer --edition=2018 /tmp/tmp.PIv8cIzOKd/registry/block-buffer-0.10.2/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=4cd3db619b1d8e9e -C extra-filename=-4cd3db619b1d8e9e --out-dir /tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.PIv8cIzOKd/target/debug/deps --extern generic_array=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps/libgeneric_array-d02d059964c7aee0.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.PIv8cIzOKd/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 206s warning: `block-buffer` (lib) generated 1 warning (1 duplicate) 206s Compiling async-lock v3.4.0 206s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=async_lock CARGO_MANIFEST_DIR=/tmp/tmp.PIv8cIzOKd/registry/async-lock-3.4.0 CARGO_MANIFEST_PATH=/tmp/tmp.PIv8cIzOKd/registry/async-lock-3.4.0/Cargo.toml CARGO_PKG_AUTHORS='Stjepan Glavina ' CARGO_PKG_DESCRIPTION='Async synchronization primitives' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=async-lock CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/smol-rs/async-lock' CARGO_PKG_RUST_VERSION=1.60 CARGO_PKG_VERSION=3.4.0 CARGO_PKG_VERSION_MAJOR=3 CARGO_PKG_VERSION_MINOR=4 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.PIv8cIzOKd/target/debug/deps rustc --crate-name async_lock --edition=2021 /tmp/tmp.PIv8cIzOKd/registry/async-lock-3.4.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --warn=unexpected_cfgs --check-cfg 'cfg(loom)' --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "std"))' -C metadata=ac8045c9d37e641a -C extra-filename=-ac8045c9d37e641a --out-dir /tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.PIv8cIzOKd/target/debug/deps --extern event_listener=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps/libevent_listener-4260d59234261e59.rmeta --extern event_listener_strategy=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps/libevent_listener_strategy-53ebcc1cb10a7931.rmeta --extern pin_project_lite=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps/libpin_project_lite-5dc815523e98d889.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.PIv8cIzOKd/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 207s warning: `async-lock` (lib) generated 1 warning (1 duplicate) 207s Compiling async-channel v2.3.1 207s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=async_channel CARGO_MANIFEST_DIR=/tmp/tmp.PIv8cIzOKd/registry/async-channel-2.3.1 CARGO_MANIFEST_PATH=/tmp/tmp.PIv8cIzOKd/registry/async-channel-2.3.1/Cargo.toml CARGO_PKG_AUTHORS='Stjepan Glavina ' CARGO_PKG_DESCRIPTION='Async multi-producer multi-consumer channel' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=async-channel CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/smol-rs/async-channel' CARGO_PKG_RUST_VERSION=1.60 CARGO_PKG_VERSION=2.3.1 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.PIv8cIzOKd/target/debug/deps rustc --crate-name async_channel --edition=2021 /tmp/tmp.PIv8cIzOKd/registry/async-channel-2.3.1/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "std"))' -C metadata=b5364c34e3b23819 -C extra-filename=-b5364c34e3b23819 --out-dir /tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.PIv8cIzOKd/target/debug/deps --extern concurrent_queue=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps/libconcurrent_queue-7e82393ecc7068db.rmeta --extern event_listener_strategy=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps/libevent_listener_strategy-53ebcc1cb10a7931.rmeta --extern futures_core=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps/libfutures_core-8d305950da6bf5c8.rmeta --extern pin_project_lite=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps/libpin_project_lite-5dc815523e98d889.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.PIv8cIzOKd/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 207s warning: `async-channel` (lib) generated 1 warning (1 duplicate) 207s Compiling atomic-waker v1.1.2 207s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=atomic_waker CARGO_MANIFEST_DIR=/tmp/tmp.PIv8cIzOKd/registry/atomic-waker-1.1.2 CARGO_MANIFEST_PATH=/tmp/tmp.PIv8cIzOKd/registry/atomic-waker-1.1.2/Cargo.toml CARGO_PKG_AUTHORS='Stjepan Glavina :Contributors to futures-rs' CARGO_PKG_DESCRIPTION='A synchronization primitive for task wakeup' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=atomic-waker CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/smol-rs/atomic-waker' CARGO_PKG_RUST_VERSION=1.36 CARGO_PKG_VERSION=1.1.2 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=2 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.PIv8cIzOKd/target/debug/deps rustc --crate-name atomic_waker --edition=2018 /tmp/tmp.PIv8cIzOKd/registry/atomic-waker-1.1.2/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=9de928cbdc5a8495 -C extra-filename=-9de928cbdc5a8495 --out-dir /tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.PIv8cIzOKd/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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.PIv8cIzOKd/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 207s warning: unexpected `cfg` condition value: `portable-atomic` 207s --> /usr/share/cargo/registry/atomic-waker-1.1.2/src/lib.rs:26:11 207s | 207s 26 | #[cfg(not(feature = "portable-atomic"))] 207s | ^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: remove the condition 207s | 207s = note: no expected values for `feature` 207s = help: consider adding `portable-atomic` as a feature in `Cargo.toml` 207s = note: see for more information about checking conditional configuration 207s = note: `#[warn(unexpected_cfgs)]` on by default 207s 207s warning: unexpected `cfg` condition value: `portable-atomic` 207s --> /usr/share/cargo/registry/atomic-waker-1.1.2/src/lib.rs:28:7 207s | 207s 28 | #[cfg(feature = "portable-atomic")] 207s | ^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: remove the condition 207s | 207s = note: no expected values for `feature` 207s = help: consider adding `portable-atomic` as a feature in `Cargo.toml` 207s = note: see for more information about checking conditional configuration 207s 207s warning: trait `AssertSync` is never used 207s --> /usr/share/cargo/registry/atomic-waker-1.1.2/src/lib.rs:226:15 207s | 207s 226 | trait AssertSync: Sync {} 207s | ^^^^^^^^^^ 207s | 207s = note: `#[warn(dead_code)]` on by default 207s 207s warning: `atomic-waker` (lib) generated 4 warnings (1 duplicate) 207s Compiling static_assertions v1.1.0 207s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=static_assertions CARGO_MANIFEST_DIR=/tmp/tmp.PIv8cIzOKd/registry/static_assertions-1.1.0 CARGO_MANIFEST_PATH=/tmp/tmp.PIv8cIzOKd/registry/static_assertions-1.1.0/Cargo.toml CARGO_PKG_AUTHORS='Nikolai Vazquez' CARGO_PKG_DESCRIPTION='Compile-time assertions to ensure that invariants are met.' CARGO_PKG_HOMEPAGE='https://github.com/nvzqz/static-assertions-rs' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=static_assertions CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/nvzqz/static-assertions-rs' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=1.1.0 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.PIv8cIzOKd/target/debug/deps rustc --crate-name static_assertions --edition=2015 /tmp/tmp.PIv8cIzOKd/registry/static_assertions-1.1.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("nightly"))' -C metadata=18df01cc327facaa -C extra-filename=-18df01cc327facaa --out-dir /tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.PIv8cIzOKd/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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.PIv8cIzOKd/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 207s warning: `static_assertions` (lib) generated 1 warning (1 duplicate) 207s Compiling endi v1.1.0 207s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=endi CARGO_MANIFEST_DIR=/tmp/tmp.PIv8cIzOKd/registry/endi-1.1.0 CARGO_MANIFEST_PATH=/tmp/tmp.PIv8cIzOKd/registry/endi-1.1.0/Cargo.toml CARGO_PKG_AUTHORS='Zeeshan Ali Khan ' CARGO_PKG_DESCRIPTION='A simple endian-handling library' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=endi CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/zeenix/endi' CARGO_PKG_RUST_VERSION=1.60 CARGO_PKG_VERSION=1.1.0 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.PIv8cIzOKd/target/debug/deps rustc --crate-name endi --edition=2021 /tmp/tmp.PIv8cIzOKd/registry/endi-1.1.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "std"))' -C metadata=6479300693b4fccf -C extra-filename=-6479300693b4fccf --out-dir /tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.PIv8cIzOKd/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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.PIv8cIzOKd/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 207s warning: `endi` (lib) generated 1 warning (1 duplicate) 207s Compiling zvariant v4.2.0 207s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=zvariant CARGO_MANIFEST_DIR=/tmp/tmp.PIv8cIzOKd/registry/zvariant-4.2.0 CARGO_MANIFEST_PATH=/tmp/tmp.PIv8cIzOKd/registry/zvariant-4.2.0/Cargo.toml CARGO_PKG_AUTHORS='Zeeshan Ali Khan ' CARGO_PKG_DESCRIPTION='D-Bus & GVariant encoding & decoding' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=zvariant CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dbus2/zbus/' CARGO_PKG_RUST_VERSION=1.75 CARGO_PKG_VERSION=4.2.0 CARGO_PKG_VERSION_MAJOR=4 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.PIv8cIzOKd/target/debug/deps rustc --crate-name zvariant --edition=2021 /tmp/tmp.PIv8cIzOKd/registry/zvariant-4.2.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="enumflags2"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("arrayvec", "chrono", "default", "enumflags2", "gvariant", "heapless", "option-as-array", "ostree-tests", "serde_bytes", "time", "url", "uuid"))' -C metadata=f63ab59735f855c5 -C extra-filename=-f63ab59735f855c5 --out-dir /tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.PIv8cIzOKd/target/debug/deps --extern endi=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps/libendi-6479300693b4fccf.rmeta --extern enumflags2=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps/libenumflags2-2867d32c4b4f39e8.rmeta --extern serde=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps/libserde-0e7dff716e38da0d.rmeta --extern static_assertions=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps/libstatic_assertions-18df01cc327facaa.rmeta --extern zvariant_derive=/tmp/tmp.PIv8cIzOKd/target/debug/deps/libzvariant_derive-307afde79edbb6d8.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.PIv8cIzOKd/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 208s warning: `rustix` (lib) generated 1 warning (1 duplicate) 208s Compiling polling v3.4.0 208s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=polling CARGO_MANIFEST_DIR=/tmp/tmp.PIv8cIzOKd/registry/polling-3.4.0 CARGO_MANIFEST_PATH=/tmp/tmp.PIv8cIzOKd/registry/polling-3.4.0/Cargo.toml CARGO_PKG_AUTHORS='Stjepan Glavina :John Nunley ' CARGO_PKG_DESCRIPTION='Portable interface to epoll, kqueue, event ports, and IOCP' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=polling CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/smol-rs/polling' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=3.4.0 CARGO_PKG_VERSION_MAJOR=3 CARGO_PKG_VERSION_MINOR=4 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.PIv8cIzOKd/target/debug/deps rustc --crate-name polling --edition=2021 /tmp/tmp.PIv8cIzOKd/registry/polling-3.4.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=8ea21ac6becc74d7 -C extra-filename=-8ea21ac6becc74d7 --out-dir /tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.PIv8cIzOKd/target/debug/deps --extern cfg_if=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps/libcfg_if-ff3ff84a061de73f.rmeta --extern rustix=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps/librustix-c5174677adcec892.rmeta --extern tracing=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps/libtracing-5f8a2432d30b4ef1.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.PIv8cIzOKd/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 208s warning: unexpected `cfg` condition name: `polling_test_poll_backend` 208s --> /usr/share/cargo/registry/polling-3.4.0/src/lib.rs:954:9 208s | 208s 954 | not(polling_test_poll_backend), 208s | ^^^^^^^^^^^^^^^^^^^^^^^^^ 208s | 208s = help: expected names are: `clippy`, `debug_assertions`, `doc`, `docsrs`, `doctest`, `feature`, `fmt_debug`, `miri`, `overflow_checks`, `panic`, `proc_macro`, `relocation_model`, `rustfmt`, `sanitize`, `sanitizer_cfi_generalize_pointers`, `sanitizer_cfi_normalize_integers`, `target_abi`, `target_arch`, `target_endian`, `target_env`, `target_family`, `target_feature`, `target_has_atomic`, `target_has_atomic_equal_alignment`, `target_has_atomic_load_store`, `target_os`, `target_pointer_width`, `target_thread_local`, `target_vendor`, `test`, `ub_checks`, `unix`, and `windows` 208s = help: consider using a Cargo feature instead 208s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 208s [lints.rust] 208s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(polling_test_poll_backend)'] } 208s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(polling_test_poll_backend)");` to the top of the `build.rs` 208s = note: see for more information about checking conditional configuration 208s = note: `#[warn(unexpected_cfgs)]` on by default 208s 208s warning: unexpected `cfg` condition name: `polling_test_poll_backend` 208s --> /usr/share/cargo/registry/polling-3.4.0/src/lib.rs:80:14 208s | 208s 80 | if #[cfg(polling_test_poll_backend)] { 208s | ^^^^^^^^^^^^^^^^^^^^^^^^^ 208s | 208s = help: consider using a Cargo feature instead 208s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 208s [lints.rust] 208s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(polling_test_poll_backend)'] } 208s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(polling_test_poll_backend)");` to the top of the `build.rs` 208s = note: see for more information about checking conditional configuration 208s 208s warning: unexpected `cfg` condition name: `polling_test_epoll_pipe` 208s --> /usr/share/cargo/registry/polling-3.4.0/src/epoll.rs:404:18 208s | 208s 404 | if !cfg!(polling_test_epoll_pipe) { 208s | ^^^^^^^^^^^^^^^^^^^^^^^ 208s | 208s = help: consider using a Cargo feature instead 208s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 208s [lints.rust] 208s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(polling_test_epoll_pipe)'] } 208s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(polling_test_epoll_pipe)");` to the top of the `build.rs` 208s = note: see for more information about checking conditional configuration 208s 208s warning: unexpected `cfg` condition name: `polling_test_poll_backend` 208s --> /usr/share/cargo/registry/polling-3.4.0/src/os.rs:14:9 208s | 208s 14 | not(polling_test_poll_backend), 208s | ^^^^^^^^^^^^^^^^^^^^^^^^^ 208s | 208s = help: consider using a Cargo feature instead 208s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 208s [lints.rust] 208s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(polling_test_poll_backend)'] } 208s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(polling_test_poll_backend)");` to the top of the `build.rs` 208s = note: see for more information about checking conditional configuration 208s 209s warning: trait `PollerSealed` is never used 209s --> /usr/share/cargo/registry/polling-3.4.0/src/os.rs:23:15 209s | 209s 23 | pub trait PollerSealed {} 209s | ^^^^^^^^^^^^ 209s | 209s = note: `#[warn(dead_code)]` on by default 209s 209s warning: `polling` (lib) generated 6 warnings (1 duplicate) 209s Compiling blocking v1.6.1 209s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=blocking CARGO_MANIFEST_DIR=/tmp/tmp.PIv8cIzOKd/registry/blocking-1.6.1 CARGO_MANIFEST_PATH=/tmp/tmp.PIv8cIzOKd/registry/blocking-1.6.1/Cargo.toml CARGO_PKG_AUTHORS='Stjepan Glavina ' CARGO_PKG_DESCRIPTION='A thread pool for isolating blocking I/O in async programs' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=blocking CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/smol-rs/blocking' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=1.6.1 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=6 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.PIv8cIzOKd/target/debug/deps rustc --crate-name blocking --edition=2021 /tmp/tmp.PIv8cIzOKd/registry/blocking-1.6.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("tracing"))' -C metadata=eab10f1f364dd315 -C extra-filename=-eab10f1f364dd315 --out-dir /tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.PIv8cIzOKd/target/debug/deps --extern async_channel=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps/libasync_channel-b5364c34e3b23819.rmeta --extern async_task=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps/libasync_task-18059860e85d74b4.rmeta --extern atomic_waker=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps/libatomic_waker-9de928cbdc5a8495.rmeta --extern fastrand=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps/libfastrand-b0f30b63d6f103db.rmeta --extern futures_io=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps/libfutures_io-1a4387591f8b2b95.rmeta --extern futures_lite=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps/libfutures_lite-b3966bcb93a5ad2f.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.PIv8cIzOKd/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 209s warning: `blocking` (lib) generated 1 warning (1 duplicate) 209s Compiling digest v0.10.7 209s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=digest CARGO_MANIFEST_DIR=/tmp/tmp.PIv8cIzOKd/registry/digest-0.10.7 CARGO_MANIFEST_PATH=/tmp/tmp.PIv8cIzOKd/registry/digest-0.10.7/Cargo.toml CARGO_PKG_AUTHORS='RustCrypto Developers' CARGO_PKG_DESCRIPTION='Traits for cryptographic hash functions and message authentication codes' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=digest CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/RustCrypto/traits' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.10.7 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=10 CARGO_PKG_VERSION_PATCH=7 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.PIv8cIzOKd/target/debug/deps rustc --crate-name digest --edition=2018 /tmp/tmp.PIv8cIzOKd/registry/digest-0.10.7/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="alloc"' --cfg 'feature="block-buffer"' --cfg 'feature="core-api"' --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "blobby", "block-buffer", "const-oid", "core-api", "default", "dev", "mac", "oid", "rand_core", "std", "subtle"))' -C metadata=027272cf65436a63 -C extra-filename=-027272cf65436a63 --out-dir /tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.PIv8cIzOKd/target/debug/deps --extern block_buffer=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps/libblock_buffer-4cd3db619b1d8e9e.rmeta --extern crypto_common=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps/libcrypto_common-77cd648c700afbb2.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.PIv8cIzOKd/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 209s warning: `digest` (lib) generated 1 warning (1 duplicate) 209s Compiling rand_chacha v0.3.1 209s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=rand_chacha CARGO_MANIFEST_DIR=/tmp/tmp.PIv8cIzOKd/registry/rand_chacha-0.3.1 CARGO_MANIFEST_PATH=/tmp/tmp.PIv8cIzOKd/registry/rand_chacha-0.3.1/Cargo.toml CARGO_PKG_AUTHORS='The Rand Project Developers:The Rust Project Developers:The CryptoCorrosion Contributors' CARGO_PKG_DESCRIPTION='ChaCha random number generator 209s ' CARGO_PKG_HOMEPAGE='https://rust-random.github.io/book' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=rand_chacha CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-random/rand' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.3.1 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.PIv8cIzOKd/target/debug/deps rustc --crate-name rand_chacha --edition=2018 /tmp/tmp.PIv8cIzOKd/registry/rand_chacha-0.3.1/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "serde", "serde1", "simd", "std"))' -C metadata=dd56c23de683d750 -C extra-filename=-dd56c23de683d750 --out-dir /tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.PIv8cIzOKd/target/debug/deps --extern ppv_lite86=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps/libppv_lite86-57e5b566e2a71c09.rmeta --extern rand_core=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps/librand_core-3c7246ca3f419bbc.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.PIv8cIzOKd/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 210s warning: `rand_chacha` (lib) generated 1 warning (1 duplicate) 210s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=memoffset CARGO_MANIFEST_DIR=/tmp/tmp.PIv8cIzOKd/registry/memoffset-0.8.0 CARGO_MANIFEST_PATH=/tmp/tmp.PIv8cIzOKd/registry/memoffset-0.8.0/Cargo.toml CARGO_PKG_AUTHORS='Gilad Naaman ' CARGO_PKG_DESCRIPTION='offset_of functionality for Rust structs.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=memoffset CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/Gilnaa/memoffset' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.8.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=8 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.PIv8cIzOKd/target/debug/deps OUT_DIR=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/build/memoffset-b32fed70cf81e31f/out rustc --crate-name memoffset --edition=2015 /tmp/tmp.PIv8cIzOKd/registry/memoffset-0.8.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "unstable_const"))' -C metadata=2f432c32070b84ca -C extra-filename=-2f432c32070b84ca --out-dir /tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.PIv8cIzOKd/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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.PIv8cIzOKd/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain --cfg tuple_ty --cfg allow_clippy --cfg maybe_uninit --cfg doctests --cfg raw_ref_macros --cfg stable_const` 210s warning: `zvariant` (lib) generated 1 warning (1 duplicate) 210s 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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0--remap-path-prefix/tmp/tmp.PIv8cIzOKd/registry=/usr/share/cargo/registry-Ctarget-feature=+backchain' CARGO_FEATURE_FEATURE=1 CARGO_FEATURE_MEMOFFSET=1 CARGO_FEATURE_SOCKET=1 CARGO_FEATURE_UIO=1 CARGO_FEATURE_USER=1 CARGO_MANIFEST_DIR=/tmp/tmp.PIv8cIzOKd/registry/nix-0.29.0 CARGO_MANIFEST_PATH=/tmp/tmp.PIv8cIzOKd/registry/nix-0.29.0/Cargo.toml CARGO_PKG_AUTHORS='The nix-rust Project Developers' CARGO_PKG_DESCRIPTION='Rust friendly bindings to *nix APIs' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=nix CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/nix-rust/nix' CARGO_PKG_RUST_VERSION=1.69 CARGO_PKG_VERSION=0.29.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=29 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' DEBUG=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.PIv8cIzOKd/target/debug/deps:/tmp/tmp.PIv8cIzOKd/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/build/nix-8065280fb097eaec/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.PIv8cIzOKd/target/debug/build/nix-9cc97a3a2fcb749b/build-script-build` 210s [nix 0.29.0] cargo:rustc-check-cfg=cfg(android) 210s [nix 0.29.0] cargo:rustc-check-cfg=cfg(dragonfly) 210s [nix 0.29.0] cargo:rustc-check-cfg=cfg(ios) 210s [nix 0.29.0] cargo:rustc-check-cfg=cfg(freebsd) 210s [nix 0.29.0] cargo:rustc-check-cfg=cfg(illumos) 210s [nix 0.29.0] cargo:rustc-check-cfg=cfg(linux) 210s [nix 0.29.0] cargo:rustc-cfg=linux 210s [nix 0.29.0] cargo:rustc-check-cfg=cfg(macos) 210s [nix 0.29.0] cargo:rustc-check-cfg=cfg(netbsd) 210s [nix 0.29.0] cargo:rustc-check-cfg=cfg(openbsd) 210s [nix 0.29.0] cargo:rustc-check-cfg=cfg(solaris) 210s [nix 0.29.0] cargo:rustc-check-cfg=cfg(watchos) 210s [nix 0.29.0] cargo:rustc-check-cfg=cfg(tvos) 210s [nix 0.29.0] cargo:rustc-check-cfg=cfg(visionos) 210s [nix 0.29.0] cargo:rustc-check-cfg=cfg(apple_targets) 210s [nix 0.29.0] cargo:rustc-check-cfg=cfg(bsd) 210s [nix 0.29.0] cargo:rustc-check-cfg=cfg(bsd_without_apple) 210s [nix 0.29.0] cargo:rustc-check-cfg=cfg(linux_android) 210s [nix 0.29.0] cargo:rustc-cfg=linux_android 210s [nix 0.29.0] cargo:rustc-check-cfg=cfg(freebsdlike) 210s [nix 0.29.0] cargo:rustc-check-cfg=cfg(netbsdlike) 210s [nix 0.29.0] cargo:rustc-check-cfg=cfg(solarish) 210s [nix 0.29.0] cargo:rustc-check-cfg=cfg(apple_targets) 210s [nix 0.29.0] cargo:rustc-check-cfg=cfg(bsd) 210s [nix 0.29.0] cargo:rustc-check-cfg=cfg(bsd_without_apple) 210s [nix 0.29.0] cargo:rustc-check-cfg=cfg(linux_android) 210s [nix 0.29.0] cargo:rustc-check-cfg=cfg(freebsdlike) 210s [nix 0.29.0] cargo:rustc-check-cfg=cfg(netbsdlike) 210s [nix 0.29.0] cargo:rustc-check-cfg=cfg(solarish) 210s [nix 0.29.0] cargo:rustc-check-cfg=cfg(fbsd14) 210s [nix 0.29.0] cargo:rustc-check-cfg=cfg(qemu) 210s Compiling futures-macro v0.3.31 210s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=futures_macro CARGO_MANIFEST_DIR=/tmp/tmp.PIv8cIzOKd/registry/futures-macro-0.3.31 CARGO_MANIFEST_PATH=/tmp/tmp.PIv8cIzOKd/registry/futures-macro-0.3.31/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='The futures-rs procedural macro implementations. 210s ' CARGO_PKG_HOMEPAGE='https://rust-lang.github.io/futures-rs' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=futures-macro CARGO_PKG_README='' CARGO_PKG_REPOSITORY='https://github.com/rust-lang/futures-rs' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=0.3.31 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=31 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.PIv8cIzOKd/target/debug/deps rustc --crate-name futures_macro --edition=2018 /tmp/tmp.PIv8cIzOKd/registry/futures-macro-0.3.31/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type proc-macro --emit=dep-info,link -C prefer-dynamic -C embed-bitcode=no -C debuginfo=2 --warn=unreachable_pub --warn=unexpected_cfgs --warn=single_use_lifetimes --warn=rust_2018_idioms --warn=missing_debug_implementations --check-cfg 'cfg(futures_sanitizer)' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=4cace2739cb7abd5 -C extra-filename=-4cace2739cb7abd5 --out-dir /tmp/tmp.PIv8cIzOKd/target/debug/deps -L dependency=/tmp/tmp.PIv8cIzOKd/target/debug/deps --extern proc_macro2=/tmp/tmp.PIv8cIzOKd/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rlib --extern quote=/tmp/tmp.PIv8cIzOKd/target/debug/deps/libquote-dc92c6f25ee0f0c6.rlib --extern syn=/tmp/tmp.PIv8cIzOKd/target/debug/deps/libsyn-0167beed9e699402.rlib --extern proc_macro --cap-lints warn` 210s warning: unexpected `cfg` condition name: `stable_const` 210s --> /usr/share/cargo/registry/memoffset-0.8.0/src/lib.rs:60:41 210s | 210s 60 | all(feature = "unstable_const", not(stable_const)), 210s | ^^^^^^^^^^^^ 210s | 210s = help: expected names are: `clippy`, `debug_assertions`, `doc`, `docsrs`, `doctest`, `feature`, `fmt_debug`, `miri`, `overflow_checks`, `panic`, `proc_macro`, `relocation_model`, `rustfmt`, `sanitize`, `sanitizer_cfi_generalize_pointers`, `sanitizer_cfi_normalize_integers`, `target_abi`, `target_arch`, `target_endian`, `target_env`, `target_family`, `target_feature`, `target_has_atomic`, `target_has_atomic_equal_alignment`, `target_has_atomic_load_store`, `target_os`, `target_pointer_width`, `target_thread_local`, `target_vendor`, `test`, `ub_checks`, `unix`, and `windows` 210s = help: consider using a Cargo feature instead 210s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 210s [lints.rust] 210s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(stable_const)'] } 210s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(stable_const)");` to the top of the `build.rs` 210s = note: see for more information about checking conditional configuration 210s = note: `#[warn(unexpected_cfgs)]` on by default 210s 210s warning: unexpected `cfg` condition name: `doctests` 210s --> /usr/share/cargo/registry/memoffset-0.8.0/src/lib.rs:66:7 210s | 210s 66 | #[cfg(doctests)] 210s | ^^^^^^^^ help: there is a config with a similar name: `doctest` 210s | 210s = help: consider using a Cargo feature instead 210s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 210s [lints.rust] 210s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doctests)'] } 210s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doctests)");` to the top of the `build.rs` 210s = note: see for more information about checking conditional configuration 210s 210s warning: unexpected `cfg` condition name: `doctests` 210s --> /usr/share/cargo/registry/memoffset-0.8.0/src/lib.rs:69:7 210s | 210s 69 | #[cfg(doctests)] 210s | ^^^^^^^^ help: there is a config with a similar name: `doctest` 210s | 210s = help: consider using a Cargo feature instead 210s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 210s [lints.rust] 210s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doctests)'] } 210s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doctests)");` to the top of the `build.rs` 210s = note: see for more information about checking conditional configuration 210s 210s warning: unexpected `cfg` condition name: `raw_ref_macros` 210s --> /usr/share/cargo/registry/memoffset-0.8.0/src/raw_field.rs:22:7 210s | 210s 22 | #[cfg(raw_ref_macros)] 210s | ^^^^^^^^^^^^^^ 210s | 210s = help: consider using a Cargo feature instead 210s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 210s [lints.rust] 210s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(raw_ref_macros)'] } 210s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(raw_ref_macros)");` to the top of the `build.rs` 210s = note: see for more information about checking conditional configuration 210s 210s warning: unexpected `cfg` condition name: `raw_ref_macros` 210s --> /usr/share/cargo/registry/memoffset-0.8.0/src/raw_field.rs:30:11 210s | 210s 30 | #[cfg(not(raw_ref_macros))] 210s | ^^^^^^^^^^^^^^ 210s | 210s = help: consider using a Cargo feature instead 210s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 210s [lints.rust] 210s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(raw_ref_macros)'] } 210s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(raw_ref_macros)");` to the top of the `build.rs` 210s = note: see for more information about checking conditional configuration 210s 210s warning: unexpected `cfg` condition name: `allow_clippy` 210s --> /usr/share/cargo/registry/memoffset-0.8.0/src/raw_field.rs:57:7 210s | 210s 57 | #[cfg(allow_clippy)] 210s | ^^^^^^^^^^^^ 210s | 210s = help: consider using a Cargo feature instead 210s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 210s [lints.rust] 210s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(allow_clippy)'] } 210s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(allow_clippy)");` to the top of the `build.rs` 210s = note: see for more information about checking conditional configuration 210s 210s warning: unexpected `cfg` condition name: `allow_clippy` 210s --> /usr/share/cargo/registry/memoffset-0.8.0/src/raw_field.rs:69:11 210s | 210s 69 | #[cfg(not(allow_clippy))] 210s | ^^^^^^^^^^^^ 210s | 210s = help: consider using a Cargo feature instead 210s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 210s [lints.rust] 210s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(allow_clippy)'] } 210s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(allow_clippy)");` to the top of the `build.rs` 210s = note: see for more information about checking conditional configuration 210s 210s warning: unexpected `cfg` condition name: `allow_clippy` 210s --> /usr/share/cargo/registry/memoffset-0.8.0/src/raw_field.rs:90:7 210s | 210s 90 | #[cfg(allow_clippy)] 210s | ^^^^^^^^^^^^ 210s | 210s = help: consider using a Cargo feature instead 210s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 210s [lints.rust] 210s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(allow_clippy)'] } 210s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(allow_clippy)");` to the top of the `build.rs` 210s = note: see for more information about checking conditional configuration 210s 210s warning: unexpected `cfg` condition name: `allow_clippy` 210s --> /usr/share/cargo/registry/memoffset-0.8.0/src/raw_field.rs:100:11 210s | 210s 100 | #[cfg(not(allow_clippy))] 210s | ^^^^^^^^^^^^ 210s | 210s = help: consider using a Cargo feature instead 210s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 210s [lints.rust] 210s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(allow_clippy)'] } 210s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(allow_clippy)");` to the top of the `build.rs` 210s = note: see for more information about checking conditional configuration 210s 210s warning: unexpected `cfg` condition name: `allow_clippy` 210s --> /usr/share/cargo/registry/memoffset-0.8.0/src/raw_field.rs:125:7 210s | 210s 125 | #[cfg(allow_clippy)] 210s | ^^^^^^^^^^^^ 210s | 210s = help: consider using a Cargo feature instead 210s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 210s [lints.rust] 210s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(allow_clippy)'] } 210s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(allow_clippy)");` to the top of the `build.rs` 210s = note: see for more information about checking conditional configuration 210s 210s warning: unexpected `cfg` condition name: `allow_clippy` 210s --> /usr/share/cargo/registry/memoffset-0.8.0/src/raw_field.rs:141:11 210s | 210s 141 | #[cfg(not(allow_clippy))] 210s | ^^^^^^^^^^^^ 210s | 210s = help: consider using a Cargo feature instead 210s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 210s [lints.rust] 210s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(allow_clippy)'] } 210s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(allow_clippy)");` to the top of the `build.rs` 210s = note: see for more information about checking conditional configuration 210s 210s warning: unexpected `cfg` condition name: `tuple_ty` 210s --> /usr/share/cargo/registry/memoffset-0.8.0/src/raw_field.rs:183:7 210s | 210s 183 | #[cfg(tuple_ty)] 210s | ^^^^^^^^ 210s | 210s = help: consider using a Cargo feature instead 210s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 210s [lints.rust] 210s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tuple_ty)'] } 210s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tuple_ty)");` to the top of the `build.rs` 210s = note: see for more information about checking conditional configuration 210s 210s warning: unexpected `cfg` condition name: `maybe_uninit` 210s --> /usr/share/cargo/registry/memoffset-0.8.0/src/offset_of.rs:23:7 210s | 210s 23 | #[cfg(maybe_uninit)] 210s | ^^^^^^^^^^^^ 210s | 210s = help: consider using a Cargo feature instead 210s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 210s [lints.rust] 210s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(maybe_uninit)'] } 210s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(maybe_uninit)");` to the top of the `build.rs` 210s = note: see for more information about checking conditional configuration 210s 210s warning: unexpected `cfg` condition name: `maybe_uninit` 210s --> /usr/share/cargo/registry/memoffset-0.8.0/src/offset_of.rs:37:11 210s | 210s 37 | #[cfg(not(maybe_uninit))] 210s | ^^^^^^^^^^^^ 210s | 210s = help: consider using a Cargo feature instead 210s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 210s [lints.rust] 210s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(maybe_uninit)'] } 210s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(maybe_uninit)");` to the top of the `build.rs` 210s = note: see for more information about checking conditional configuration 210s 210s warning: unexpected `cfg` condition name: `stable_const` 210s --> /usr/share/cargo/registry/memoffset-0.8.0/src/offset_of.rs:49:39 210s | 210s 49 | #[cfg(any(feature = "unstable_const", stable_const))] 210s | ^^^^^^^^^^^^ 210s | 210s = help: consider using a Cargo feature instead 210s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 210s [lints.rust] 210s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(stable_const)'] } 210s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(stable_const)");` to the top of the `build.rs` 210s = note: see for more information about checking conditional configuration 210s 210s warning: unexpected `cfg` condition name: `stable_const` 210s --> /usr/share/cargo/registry/memoffset-0.8.0/src/offset_of.rs:61:43 210s | 210s 61 | #[cfg(not(any(feature = "unstable_const", stable_const)))] 210s | ^^^^^^^^^^^^ 210s | 210s = help: consider using a Cargo feature instead 210s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 210s [lints.rust] 210s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(stable_const)'] } 210s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(stable_const)");` to the top of the `build.rs` 210s = note: see for more information about checking conditional configuration 210s 210s warning: unexpected `cfg` condition name: `tuple_ty` 210s --> /usr/share/cargo/registry/memoffset-0.8.0/src/offset_of.rs:121:7 210s | 210s 121 | #[cfg(tuple_ty)] 210s | ^^^^^^^^ 210s | 210s = help: consider using a Cargo feature instead 210s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 210s [lints.rust] 210s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tuple_ty)'] } 210s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tuple_ty)");` to the top of the `build.rs` 210s = note: see for more information about checking conditional configuration 210s 210s warning: `memoffset` (lib) generated 18 warnings (1 duplicate) 210s Compiling futures-sink v0.3.31 210s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=futures_sink CARGO_MANIFEST_DIR=/tmp/tmp.PIv8cIzOKd/registry/futures-sink-0.3.31 CARGO_MANIFEST_PATH=/tmp/tmp.PIv8cIzOKd/registry/futures-sink-0.3.31/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='The asynchronous `Sink` trait for the futures-rs library. 210s ' CARGO_PKG_HOMEPAGE='https://rust-lang.github.io/futures-rs' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=futures-sink CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/futures-rs' CARGO_PKG_RUST_VERSION=1.36 CARGO_PKG_VERSION=0.3.31 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=31 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.PIv8cIzOKd/target/debug/deps rustc --crate-name futures_sink --edition=2018 /tmp/tmp.PIv8cIzOKd/registry/futures-sink-0.3.31/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --warn=unreachable_pub --warn=unexpected_cfgs --warn=single_use_lifetimes --warn=rust_2018_idioms --warn=missing_debug_implementations --check-cfg 'cfg(futures_sanitizer)' --cfg 'feature="alloc"' --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "default", "std"))' -C metadata=2335bc9d806f8753 -C extra-filename=-2335bc9d806f8753 --out-dir /tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.PIv8cIzOKd/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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.PIv8cIzOKd/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 210s warning: `futures-sink` (lib) generated 1 warning (1 duplicate) 210s Compiling memchr v2.7.4 210s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=memchr CARGO_MANIFEST_DIR=/tmp/tmp.PIv8cIzOKd/registry/memchr-2.7.4 CARGO_MANIFEST_PATH=/tmp/tmp.PIv8cIzOKd/registry/memchr-2.7.4/Cargo.toml CARGO_PKG_AUTHORS='Andrew Gallant :bluss' CARGO_PKG_DESCRIPTION='Provides extremely fast (uses SIMD on x86_64, aarch64 and wasm32) routines for 210s 1, 2 or 3 byte search and single substring search. 210s ' CARGO_PKG_HOMEPAGE='https://github.com/BurntSushi/memchr' CARGO_PKG_LICENSE='Unlicense OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=memchr CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/BurntSushi/memchr' CARGO_PKG_RUST_VERSION=1.61 CARGO_PKG_VERSION=2.7.4 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=7 CARGO_PKG_VERSION_PATCH=4 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.PIv8cIzOKd/target/debug/deps rustc --crate-name memchr --edition=2021 /tmp/tmp.PIv8cIzOKd/registry/memchr-2.7.4/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="alloc"' --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "compiler_builtins", "core", "default", "libc", "logging", "rustc-dep-of-std", "std", "use_std"))' -C metadata=944ab1891fd21906 -C extra-filename=-944ab1891fd21906 --out-dir /tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.PIv8cIzOKd/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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.PIv8cIzOKd/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 210s warning: `memchr` (lib) generated 1 warning (1 duplicate) 210s Compiling futures-task v0.3.31 210s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=futures_task CARGO_MANIFEST_DIR=/tmp/tmp.PIv8cIzOKd/registry/futures-task-0.3.31 CARGO_MANIFEST_PATH=/tmp/tmp.PIv8cIzOKd/registry/futures-task-0.3.31/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='Tools for working with tasks. 210s ' CARGO_PKG_HOMEPAGE='https://rust-lang.github.io/futures-rs' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=futures-task CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/futures-rs' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=0.3.31 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=31 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.PIv8cIzOKd/target/debug/deps rustc --crate-name futures_task --edition=2018 /tmp/tmp.PIv8cIzOKd/registry/futures-task-0.3.31/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --warn=unreachable_pub --warn=unexpected_cfgs --warn=single_use_lifetimes --warn=rust_2018_idioms --warn=missing_debug_implementations --check-cfg 'cfg(futures_sanitizer)' --cfg 'feature="alloc"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "cfg-target-has-atomic", "default", "std", "unstable"))' -C metadata=47c3a7d17767e18f -C extra-filename=-47c3a7d17767e18f --out-dir /tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.PIv8cIzOKd/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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.PIv8cIzOKd/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 210s warning: `futures-task` (lib) generated 1 warning (1 duplicate) 210s Compiling pin-utils v0.1.0 210s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=pin_utils CARGO_MANIFEST_DIR=/tmp/tmp.PIv8cIzOKd/registry/pin-utils-0.1.0 CARGO_MANIFEST_PATH=/tmp/tmp.PIv8cIzOKd/registry/pin-utils-0.1.0/Cargo.toml CARGO_PKG_AUTHORS='Josef Brandl ' CARGO_PKG_DESCRIPTION='Utilities for pinning 210s ' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=pin-utils CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang-nursery/pin-utils' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.1.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.PIv8cIzOKd/target/debug/deps rustc --crate-name pin_utils --edition=2018 /tmp/tmp.PIv8cIzOKd/registry/pin-utils-0.1.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=9646380a39f6bb39 -C extra-filename=-9646380a39f6bb39 --out-dir /tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.PIv8cIzOKd/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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.PIv8cIzOKd/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 210s warning: `pin-utils` (lib) generated 1 warning (1 duplicate) 210s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=nix CARGO_MANIFEST_DIR=/tmp/tmp.PIv8cIzOKd/registry/nix-0.29.0 CARGO_MANIFEST_PATH=/tmp/tmp.PIv8cIzOKd/registry/nix-0.29.0/Cargo.toml CARGO_PKG_AUTHORS='The nix-rust Project Developers' CARGO_PKG_DESCRIPTION='Rust friendly bindings to *nix APIs' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=nix CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/nix-rust/nix' CARGO_PKG_RUST_VERSION=1.69 CARGO_PKG_VERSION=0.29.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=29 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.PIv8cIzOKd/target/debug/deps OUT_DIR=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/build/nix-8065280fb097eaec/out rustc --crate-name nix --edition=2021 /tmp/tmp.PIv8cIzOKd/registry/nix-0.29.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="feature"' --cfg 'feature="memoffset"' --cfg 'feature="socket"' --cfg 'feature="uio"' --cfg 'feature="user"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("acct", "aio", "default", "dir", "env", "event", "fanotify", "feature", "fs", "hostname", "inotify", "ioctl", "kmod", "memoffset", "mman", "mount", "mqueue", "net", "personality", "pin-utils", "poll", "process", "pthread", "ptrace", "quota", "reboot", "resource", "sched", "signal", "socket", "term", "time", "ucontext", "uio", "user", "zerocopy"))' -C metadata=30ad0bf244578707 -C extra-filename=-30ad0bf244578707 --out-dir /tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.PIv8cIzOKd/target/debug/deps --extern bitflags=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps/libbitflags-65f3f529c7b65778.rmeta --extern cfg_if=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps/libcfg_if-ff3ff84a061de73f.rmeta --extern libc=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps/liblibc-cf2521928ac070dc.rmeta --extern memoffset=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps/libmemoffset-2f432c32070b84ca.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.PIv8cIzOKd/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain --cfg linux --cfg linux_android --check-cfg 'cfg(android)' --check-cfg 'cfg(dragonfly)' --check-cfg 'cfg(ios)' --check-cfg 'cfg(freebsd)' --check-cfg 'cfg(illumos)' --check-cfg 'cfg(linux)' --check-cfg 'cfg(macos)' --check-cfg 'cfg(netbsd)' --check-cfg 'cfg(openbsd)' --check-cfg 'cfg(solaris)' --check-cfg 'cfg(watchos)' --check-cfg 'cfg(tvos)' --check-cfg 'cfg(visionos)' --check-cfg 'cfg(apple_targets)' --check-cfg 'cfg(bsd)' --check-cfg 'cfg(bsd_without_apple)' --check-cfg 'cfg(linux_android)' --check-cfg 'cfg(freebsdlike)' --check-cfg 'cfg(netbsdlike)' --check-cfg 'cfg(solarish)' --check-cfg 'cfg(apple_targets)' --check-cfg 'cfg(bsd)' --check-cfg 'cfg(bsd_without_apple)' --check-cfg 'cfg(linux_android)' --check-cfg 'cfg(freebsdlike)' --check-cfg 'cfg(netbsdlike)' --check-cfg 'cfg(solarish)' --check-cfg 'cfg(fbsd14)' --check-cfg 'cfg(qemu)'` 210s warning: elided lifetime has a name 210s --> /usr/share/cargo/registry/nix-0.29.0/src/sys/socket/sockopt.rs:1577:34 210s | 210s 1576 | impl<'a> Set<'a, OsString> for SetOsString<'a> { 210s | -- lifetime `'a` declared here 210s 1577 | fn new(val: &'a OsString) -> SetOsString { 210s | ^^^^^^^^^^^ this elided lifetime gets resolved as `'a` 210s | 210s = note: `#[warn(elided_named_lifetimes)]` on by default 210s 211s Compiling futures-util v0.3.31 211s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=futures_util CARGO_MANIFEST_DIR=/tmp/tmp.PIv8cIzOKd/registry/futures-util-0.3.31 CARGO_MANIFEST_PATH=/tmp/tmp.PIv8cIzOKd/registry/futures-util-0.3.31/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='Common utilities and extension traits for the futures-rs library. 211s ' CARGO_PKG_HOMEPAGE='https://rust-lang.github.io/futures-rs' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=futures-util CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/futures-rs' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=0.3.31 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=31 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.PIv8cIzOKd/target/debug/deps rustc --crate-name futures_util --edition=2018 /tmp/tmp.PIv8cIzOKd/registry/futures-util-0.3.31/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --warn=unreachable_pub --warn=unexpected_cfgs --warn=single_use_lifetimes --warn=rust_2018_idioms --warn=missing_debug_implementations --check-cfg 'cfg(futures_sanitizer)' --cfg 'feature="alloc"' --cfg 'feature="async-await"' --cfg 'feature="async-await-macro"' --cfg 'feature="default"' --cfg 'feature="futures-io"' --cfg 'feature="futures-macro"' --cfg 'feature="futures-sink"' --cfg 'feature="io"' --cfg 'feature="memchr"' --cfg 'feature="sink"' --cfg 'feature="slab"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "async-await", "async-await-macro", "bilock", "channel", "default", "futures-channel", "futures-io", "futures-macro", "futures-sink", "io", "memchr", "sink", "slab", "std", "unstable", "write-all-vectored"))' -C metadata=724575be975598c0 -C extra-filename=-724575be975598c0 --out-dir /tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.PIv8cIzOKd/target/debug/deps --extern futures_core=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps/libfutures_core-8d305950da6bf5c8.rmeta --extern futures_io=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps/libfutures_io-1a4387591f8b2b95.rmeta --extern futures_macro=/tmp/tmp.PIv8cIzOKd/target/debug/deps/libfutures_macro-4cace2739cb7abd5.so --extern futures_sink=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps/libfutures_sink-2335bc9d806f8753.rmeta --extern futures_task=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps/libfutures_task-47c3a7d17767e18f.rmeta --extern memchr=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps/libmemchr-944ab1891fd21906.rmeta --extern pin_project_lite=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps/libpin_project_lite-5dc815523e98d889.rmeta --extern pin_utils=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps/libpin_utils-9646380a39f6bb39.rmeta --extern slab=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps/libslab-36320af34be0827b.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.PIv8cIzOKd/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 211s warning: struct `GetU8` is never constructed 211s --> /usr/share/cargo/registry/nix-0.29.0/src/sys/socket/sockopt.rs:1441:8 211s | 211s 1441 | struct GetU8 { 211s | ^^^^^ 211s | 211s = note: `#[warn(dead_code)]` on by default 211s 211s warning: struct `SetU8` is never constructed 211s --> /usr/share/cargo/registry/nix-0.29.0/src/sys/socket/sockopt.rs:1473:8 211s | 211s 1473 | struct SetU8 { 211s | ^^^^^ 211s 211s warning: struct `GetCString` is never constructed 211s --> /usr/share/cargo/registry/nix-0.29.0/src/sys/socket/sockopt.rs:1593:8 211s | 211s 1593 | struct GetCString> { 211s | ^^^^^^^^^^ 211s 211s warning: unexpected `cfg` condition value: `compat` 211s --> /usr/share/cargo/registry/futures-util-0.3.31/src/lib.rs:308:7 211s | 211s 308 | #[cfg(feature = "compat")] 211s | ^^^^^^^^^^^^^^^^^^ 211s | 211s = note: expected values for `feature` are: `alloc`, `async-await`, `async-await-macro`, `bilock`, `channel`, `default`, `futures-channel`, `futures-io`, `futures-macro`, `futures-sink`, `io`, `memchr`, `sink`, `slab`, `std`, `unstable`, and `write-all-vectored` 211s = help: consider adding `compat` as a feature in `Cargo.toml` 211s = note: see for more information about checking conditional configuration 211s = note: requested on the command line with `-W unexpected-cfgs` 211s 211s warning: unexpected `cfg` condition value: `compat` 211s --> /usr/share/cargo/registry/futures-util-0.3.31/src/future/try_future/mod.rs:6:7 211s | 211s 6 | #[cfg(feature = "compat")] 211s | ^^^^^^^^^^^^^^^^^^ 211s | 211s = note: expected values for `feature` are: `alloc`, `async-await`, `async-await-macro`, `bilock`, `channel`, `default`, `futures-channel`, `futures-io`, `futures-macro`, `futures-sink`, `io`, `memchr`, `sink`, `slab`, `std`, `unstable`, and `write-all-vectored` 211s = help: consider adding `compat` as a feature in `Cargo.toml` 211s = note: see for more information about checking conditional configuration 211s 211s warning: unexpected `cfg` condition value: `compat` 211s --> /usr/share/cargo/registry/futures-util-0.3.31/src/future/try_future/mod.rs:580:11 211s | 211s 580 | #[cfg(feature = "compat")] 211s | ^^^^^^^^^^^^^^^^^^ 211s | 211s = note: expected values for `feature` are: `alloc`, `async-await`, `async-await-macro`, `bilock`, `channel`, `default`, `futures-channel`, `futures-io`, `futures-macro`, `futures-sink`, `io`, `memchr`, `sink`, `slab`, `std`, `unstable`, and `write-all-vectored` 211s = help: consider adding `compat` as a feature in `Cargo.toml` 211s = note: see for more information about checking conditional configuration 211s 211s warning: unexpected `cfg` condition value: `compat` 211s --> /usr/share/cargo/registry/futures-util-0.3.31/src/stream/try_stream/mod.rs:6:7 211s | 211s 6 | #[cfg(feature = "compat")] 211s | ^^^^^^^^^^^^^^^^^^ 211s | 211s = note: expected values for `feature` are: `alloc`, `async-await`, `async-await-macro`, `bilock`, `channel`, `default`, `futures-channel`, `futures-io`, `futures-macro`, `futures-sink`, `io`, `memchr`, `sink`, `slab`, `std`, `unstable`, and `write-all-vectored` 211s = help: consider adding `compat` as a feature in `Cargo.toml` 211s = note: see for more information about checking conditional configuration 211s 211s warning: unexpected `cfg` condition value: `compat` 211s --> /usr/share/cargo/registry/futures-util-0.3.31/src/stream/try_stream/mod.rs:1154:11 211s | 211s 1154 | #[cfg(feature = "compat")] 211s | ^^^^^^^^^^^^^^^^^^ 211s | 211s = note: expected values for `feature` are: `alloc`, `async-await`, `async-await-macro`, `bilock`, `channel`, `default`, `futures-channel`, `futures-io`, `futures-macro`, `futures-sink`, `io`, `memchr`, `sink`, `slab`, `std`, `unstable`, and `write-all-vectored` 211s = help: consider adding `compat` as a feature in `Cargo.toml` 211s = note: see for more information about checking conditional configuration 211s 211s warning: unexpected `cfg` condition value: `compat` 211s --> /usr/share/cargo/registry/futures-util-0.3.31/src/sink/mod.rs:15:7 211s | 211s 15 | #[cfg(feature = "compat")] 211s | ^^^^^^^^^^^^^^^^^^ 211s | 211s = note: expected values for `feature` are: `alloc`, `async-await`, `async-await-macro`, `bilock`, `channel`, `default`, `futures-channel`, `futures-io`, `futures-macro`, `futures-sink`, `io`, `memchr`, `sink`, `slab`, `std`, `unstable`, and `write-all-vectored` 211s = help: consider adding `compat` as a feature in `Cargo.toml` 211s = note: see for more information about checking conditional configuration 211s 211s warning: unexpected `cfg` condition value: `compat` 211s --> /usr/share/cargo/registry/futures-util-0.3.31/src/sink/mod.rs:291:11 211s | 211s 291 | #[cfg(feature = "compat")] 211s | ^^^^^^^^^^^^^^^^^^ 211s | 211s = note: expected values for `feature` are: `alloc`, `async-await`, `async-await-macro`, `bilock`, `channel`, `default`, `futures-channel`, `futures-io`, `futures-macro`, `futures-sink`, `io`, `memchr`, `sink`, `slab`, `std`, `unstable`, and `write-all-vectored` 211s = help: consider adding `compat` as a feature in `Cargo.toml` 211s = note: see for more information about checking conditional configuration 211s 211s warning: unexpected `cfg` condition value: `compat` 211s --> /usr/share/cargo/registry/futures-util-0.3.31/src/task/spawn.rs:3:7 211s | 211s 3 | #[cfg(feature = "compat")] 211s | ^^^^^^^^^^^^^^^^^^ 211s | 211s = note: expected values for `feature` are: `alloc`, `async-await`, `async-await-macro`, `bilock`, `channel`, `default`, `futures-channel`, `futures-io`, `futures-macro`, `futures-sink`, `io`, `memchr`, `sink`, `slab`, `std`, `unstable`, and `write-all-vectored` 211s = help: consider adding `compat` as a feature in `Cargo.toml` 211s = note: see for more information about checking conditional configuration 211s 211s warning: unexpected `cfg` condition value: `compat` 211s --> /usr/share/cargo/registry/futures-util-0.3.31/src/task/spawn.rs:92:11 211s | 211s 92 | #[cfg(feature = "compat")] 211s | ^^^^^^^^^^^^^^^^^^ 211s | 211s = note: expected values for `feature` are: `alloc`, `async-await`, `async-await-macro`, `bilock`, `channel`, `default`, `futures-channel`, `futures-io`, `futures-macro`, `futures-sink`, `io`, `memchr`, `sink`, `slab`, `std`, `unstable`, and `write-all-vectored` 211s = help: consider adding `compat` as a feature in `Cargo.toml` 211s = note: see for more information about checking conditional configuration 211s 211s warning: unexpected `cfg` condition value: `io-compat` 211s --> /usr/share/cargo/registry/futures-util-0.3.31/src/io/mod.rs:19:7 211s | 211s 19 | #[cfg(feature = "io-compat")] 211s | ^^^^^^^^^^^^^^^^^^^^^ 211s | 211s = note: expected values for `feature` are: `alloc`, `async-await`, `async-await-macro`, `bilock`, `channel`, `default`, `futures-channel`, `futures-io`, `futures-macro`, `futures-sink`, `io`, `memchr`, `sink`, `slab`, `std`, `unstable`, and `write-all-vectored` 211s = help: consider adding `io-compat` as a feature in `Cargo.toml` 211s = note: see for more information about checking conditional configuration 211s 211s warning: unexpected `cfg` condition value: `io-compat` 211s --> /usr/share/cargo/registry/futures-util-0.3.31/src/io/mod.rs:388:11 211s | 211s 388 | #[cfg(feature = "io-compat")] 211s | ^^^^^^^^^^^^^^^^^^^^^ 211s | 211s = note: expected values for `feature` are: `alloc`, `async-await`, `async-await-macro`, `bilock`, `channel`, `default`, `futures-channel`, `futures-io`, `futures-macro`, `futures-sink`, `io`, `memchr`, `sink`, `slab`, `std`, `unstable`, and `write-all-vectored` 211s = help: consider adding `io-compat` as a feature in `Cargo.toml` 211s = note: see for more information about checking conditional configuration 211s 211s warning: unexpected `cfg` condition value: `io-compat` 211s --> /usr/share/cargo/registry/futures-util-0.3.31/src/io/mod.rs:547:11 211s | 211s 547 | #[cfg(feature = "io-compat")] 211s | ^^^^^^^^^^^^^^^^^^^^^ 211s | 211s = note: expected values for `feature` are: `alloc`, `async-await`, `async-await-macro`, `bilock`, `channel`, `default`, `futures-channel`, `futures-io`, `futures-macro`, `futures-sink`, `io`, `memchr`, `sink`, `slab`, `std`, `unstable`, and `write-all-vectored` 211s = help: consider adding `io-compat` as a feature in `Cargo.toml` 211s = note: see for more information about checking conditional configuration 211s 211s warning: `nix` (lib) generated 5 warnings (1 duplicate) 211s Compiling rand v0.8.5 211s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=rand CARGO_MANIFEST_DIR=/tmp/tmp.PIv8cIzOKd/registry/rand-0.8.5 CARGO_MANIFEST_PATH=/tmp/tmp.PIv8cIzOKd/registry/rand-0.8.5/Cargo.toml CARGO_PKG_AUTHORS='The Rand Project Developers:The Rust Project Developers' CARGO_PKG_DESCRIPTION='Random number generators and other randomness functionality. 211s ' CARGO_PKG_HOMEPAGE='https://rust-random.github.io/book' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=rand CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-random/rand' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.8.5 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=8 CARGO_PKG_VERSION_PATCH=5 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.PIv8cIzOKd/target/debug/deps rustc --crate-name rand --edition=2018 /tmp/tmp.PIv8cIzOKd/registry/rand-0.8.5/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="alloc"' --cfg 'feature="default"' --cfg 'feature="getrandom"' --cfg 'feature="libc"' --cfg 'feature="rand_chacha"' --cfg 'feature="std"' --cfg 'feature="std_rng"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "default", "getrandom", "libc", "log", "min_const_gen", "nightly", "rand_chacha", "serde", "serde1", "small_rng", "std", "std_rng"))' -C metadata=da2a195293a4eb5f -C extra-filename=-da2a195293a4eb5f --out-dir /tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.PIv8cIzOKd/target/debug/deps --extern libc=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps/liblibc-cf2521928ac070dc.rmeta --extern rand_chacha=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps/librand_chacha-dd56c23de683d750.rmeta --extern rand_core=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps/librand_core-3c7246ca3f419bbc.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.PIv8cIzOKd/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 211s warning: unexpected `cfg` condition value: `simd_support` 211s --> /usr/share/cargo/registry/rand-0.8.5/src/lib.rs:52:13 211s | 211s 52 | #![cfg_attr(feature = "simd_support", feature(stdsimd))] 211s | ^^^^^^^^^^^^^^^^^^^^^^^^ 211s | 211s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 211s = help: consider adding `simd_support` as a feature in `Cargo.toml` 211s = note: see for more information about checking conditional configuration 211s = note: `#[warn(unexpected_cfgs)]` on by default 211s 211s warning: unexpected `cfg` condition name: `doc_cfg` 211s --> /usr/share/cargo/registry/rand-0.8.5/src/lib.rs:53:13 211s | 211s 53 | #![cfg_attr(doc_cfg, feature(doc_cfg))] 211s | ^^^^^^^ 211s | 211s = help: expected names are: `clippy`, `debug_assertions`, `doc`, `docsrs`, `doctest`, `feature`, `fmt_debug`, `miri`, `overflow_checks`, `panic`, `proc_macro`, `relocation_model`, `rustfmt`, `sanitize`, `sanitizer_cfi_generalize_pointers`, `sanitizer_cfi_normalize_integers`, `target_abi`, `target_arch`, `target_endian`, `target_env`, `target_family`, `target_feature`, `target_has_atomic`, `target_has_atomic_equal_alignment`, `target_has_atomic_load_store`, `target_os`, `target_pointer_width`, `target_thread_local`, `target_vendor`, `test`, `ub_checks`, `unix`, and `windows` 211s = help: consider using a Cargo feature instead 211s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 211s [lints.rust] 211s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 211s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 211s = note: see for more information about checking conditional configuration 211s 211s warning: unexpected `cfg` condition name: `doc_cfg` 211s --> /usr/share/cargo/registry/rand-0.8.5/src/lib.rs:181:12 211s | 211s 181 | #[cfg_attr(doc_cfg, doc(cfg(all(feature = "std", feature = "std_rng"))))] 211s | ^^^^^^^ 211s | 211s = help: consider using a Cargo feature instead 211s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 211s [lints.rust] 211s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 211s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 211s = note: see for more information about checking conditional configuration 211s 211s warning: unexpected `cfg` condition name: `doc_cfg` 211s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/mod.rs:116:12 211s | 211s 116 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 211s | ^^^^^^^ 211s | 211s = help: consider using a Cargo feature instead 211s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 211s [lints.rust] 211s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 211s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 211s = note: see for more information about checking conditional configuration 211s 211s warning: unexpected `cfg` condition name: `features` 211s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/distribution.rs:162:7 211s | 211s 162 | #[cfg(features = "nightly")] 211s | ^^^^^^^^^^^^^^^^^^^^ 211s | 211s = note: see for more information about checking conditional configuration 211s help: there is a config with a similar name and value 211s | 211s 162 | #[cfg(feature = "nightly")] 211s | ~~~~~~~ 211s 211s warning: unexpected `cfg` condition value: `simd_support` 211s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/float.rs:15:7 211s | 211s 15 | #[cfg(feature = "simd_support")] use packed_simd::*; 211s | ^^^^^^^^^^^^^^^^^^^^^^^^ 211s | 211s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 211s = help: consider adding `simd_support` as a feature in `Cargo.toml` 211s = note: see for more information about checking conditional configuration 211s 211s warning: unexpected `cfg` condition value: `simd_support` 211s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/float.rs:156:7 211s | 211s 156 | #[cfg(feature = "simd_support")] 211s | ^^^^^^^^^^^^^^^^^^^^^^^^ 211s | 211s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 211s = help: consider adding `simd_support` as a feature in `Cargo.toml` 211s = note: see for more information about checking conditional configuration 211s 211s warning: unexpected `cfg` condition value: `simd_support` 211s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/float.rs:158:7 211s | 211s 158 | #[cfg(feature = "simd_support")] 211s | ^^^^^^^^^^^^^^^^^^^^^^^^ 211s | 211s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 211s = help: consider adding `simd_support` as a feature in `Cargo.toml` 211s = note: see for more information about checking conditional configuration 211s 211s warning: unexpected `cfg` condition value: `simd_support` 211s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/float.rs:160:7 211s | 211s 160 | #[cfg(feature = "simd_support")] 211s | ^^^^^^^^^^^^^^^^^^^^^^^^ 211s | 211s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 211s = help: consider adding `simd_support` as a feature in `Cargo.toml` 211s = note: see for more information about checking conditional configuration 211s 211s warning: unexpected `cfg` condition value: `simd_support` 211s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/float.rs:162:7 211s | 211s 162 | #[cfg(feature = "simd_support")] 211s | ^^^^^^^^^^^^^^^^^^^^^^^^ 211s | 211s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 211s = help: consider adding `simd_support` as a feature in `Cargo.toml` 211s = note: see for more information about checking conditional configuration 211s 211s warning: unexpected `cfg` condition value: `simd_support` 211s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/float.rs:165:7 211s | 211s 165 | #[cfg(feature = "simd_support")] 211s | ^^^^^^^^^^^^^^^^^^^^^^^^ 211s | 211s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 211s = help: consider adding `simd_support` as a feature in `Cargo.toml` 211s = note: see for more information about checking conditional configuration 211s 211s warning: unexpected `cfg` condition value: `simd_support` 211s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/float.rs:167:7 211s | 211s 167 | #[cfg(feature = "simd_support")] 211s | ^^^^^^^^^^^^^^^^^^^^^^^^ 211s | 211s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 211s = help: consider adding `simd_support` as a feature in `Cargo.toml` 211s = note: see for more information about checking conditional configuration 211s 211s warning: unexpected `cfg` condition value: `simd_support` 211s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/float.rs:169:7 211s | 211s 169 | #[cfg(feature = "simd_support")] 211s | ^^^^^^^^^^^^^^^^^^^^^^^^ 211s | 211s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 211s = help: consider adding `simd_support` as a feature in `Cargo.toml` 211s = note: see for more information about checking conditional configuration 211s 211s warning: unexpected `cfg` condition value: `simd_support` 211s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/integer.rs:13:32 211s | 211s 13 | #[cfg(all(target_arch = "x86", feature = "simd_support"))] 211s | ^^^^^^^^^^^^^^^^^^^^^^^^ 211s | 211s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 211s = help: consider adding `simd_support` as a feature in `Cargo.toml` 211s = note: see for more information about checking conditional configuration 211s 211s warning: unexpected `cfg` condition value: `simd_support` 211s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/integer.rs:15:35 211s | 211s 15 | #[cfg(all(target_arch = "x86_64", feature = "simd_support"))] 211s | ^^^^^^^^^^^^^^^^^^^^^^^^ 211s | 211s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 211s = help: consider adding `simd_support` as a feature in `Cargo.toml` 211s = note: see for more information about checking conditional configuration 211s 211s warning: unexpected `cfg` condition value: `simd_support` 211s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/integer.rs:19:7 211s | 211s 19 | #[cfg(feature = "simd_support")] use packed_simd::*; 211s | ^^^^^^^^^^^^^^^^^^^^^^^^ 211s | 211s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 211s = help: consider adding `simd_support` as a feature in `Cargo.toml` 211s = note: see for more information about checking conditional configuration 211s 211s warning: unexpected `cfg` condition value: `simd_support` 211s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/integer.rs:112:7 211s | 211s 112 | #[cfg(feature = "simd_support")] 211s | ^^^^^^^^^^^^^^^^^^^^^^^^ 211s | 211s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 211s = help: consider adding `simd_support` as a feature in `Cargo.toml` 211s = note: see for more information about checking conditional configuration 211s 211s warning: unexpected `cfg` condition value: `simd_support` 211s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/integer.rs:142:7 211s | 211s 142 | #[cfg(feature = "simd_support")] 211s | ^^^^^^^^^^^^^^^^^^^^^^^^ 211s | 211s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 211s = help: consider adding `simd_support` as a feature in `Cargo.toml` 211s = note: see for more information about checking conditional configuration 211s 211s warning: unexpected `cfg` condition value: `simd_support` 211s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/integer.rs:144:7 211s | 211s 144 | #[cfg(feature = "simd_support")] 211s | ^^^^^^^^^^^^^^^^^^^^^^^^ 211s | 211s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 211s = help: consider adding `simd_support` as a feature in `Cargo.toml` 211s = note: see for more information about checking conditional configuration 211s 211s warning: unexpected `cfg` condition value: `simd_support` 211s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/integer.rs:146:7 211s | 211s 146 | #[cfg(feature = "simd_support")] 211s | ^^^^^^^^^^^^^^^^^^^^^^^^ 211s | 211s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 211s = help: consider adding `simd_support` as a feature in `Cargo.toml` 211s = note: see for more information about checking conditional configuration 211s 211s warning: unexpected `cfg` condition value: `simd_support` 211s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/integer.rs:148:7 211s | 211s 148 | #[cfg(feature = "simd_support")] 211s | ^^^^^^^^^^^^^^^^^^^^^^^^ 211s | 211s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 211s = help: consider adding `simd_support` as a feature in `Cargo.toml` 211s = note: see for more information about checking conditional configuration 211s 211s warning: unexpected `cfg` condition value: `simd_support` 211s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/integer.rs:150:7 211s | 211s 150 | #[cfg(feature = "simd_support")] 211s | ^^^^^^^^^^^^^^^^^^^^^^^^ 211s | 211s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 211s = help: consider adding `simd_support` as a feature in `Cargo.toml` 211s = note: see for more information about checking conditional configuration 211s 211s warning: unexpected `cfg` condition value: `simd_support` 211s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/integer.rs:152:7 211s | 211s 152 | #[cfg(feature = "simd_support")] 211s | ^^^^^^^^^^^^^^^^^^^^^^^^ 211s | 211s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 211s = help: consider adding `simd_support` as a feature in `Cargo.toml` 211s = note: see for more information about checking conditional configuration 211s 211s warning: unexpected `cfg` condition value: `simd_support` 211s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/integer.rs:155:5 211s | 211s 155 | feature = "simd_support", 211s | ^^^^^^^^^^^^^^^^^^^^^^^^ 211s | 211s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 211s = help: consider adding `simd_support` as a feature in `Cargo.toml` 211s = note: see for more information about checking conditional configuration 211s 211s warning: unexpected `cfg` condition value: `simd_support` 211s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:11:7 211s | 211s 11 | #[cfg(feature = "simd_support")] use packed_simd::*; 211s | ^^^^^^^^^^^^^^^^^^^^^^^^ 211s | 211s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 211s = help: consider adding `simd_support` as a feature in `Cargo.toml` 211s = note: see for more information about checking conditional configuration 211s 211s warning: unexpected `cfg` condition value: `simd_support` 211s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:144:7 211s | 211s 144 | #[cfg(feature = "simd_support")] 211s | ^^^^^^^^^^^^^^^^^^^^^^^^ 211s | 211s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 211s = help: consider adding `simd_support` as a feature in `Cargo.toml` 211s = note: see for more information about checking conditional configuration 211s 211s warning: unexpected `cfg` condition name: `std` 211s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:235:11 211s | 211s 235 | #[cfg(not(std))] 211s | ^^^ help: found config with similar value: `feature = "std"` 211s | 211s = help: consider using a Cargo feature instead 211s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 211s [lints.rust] 211s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(std)'] } 211s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(std)");` to the top of the `build.rs` 211s = note: see for more information about checking conditional configuration 211s 211s warning: unexpected `cfg` condition value: `simd_support` 211s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:363:7 211s | 211s 363 | #[cfg(feature = "simd_support")] 211s | ^^^^^^^^^^^^^^^^^^^^^^^^ 211s | 211s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 211s = help: consider adding `simd_support` as a feature in `Cargo.toml` 211s = note: see for more information about checking conditional configuration 211s 211s warning: unexpected `cfg` condition value: `simd_support` 211s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:423:7 211s | 211s 423 | #[cfg(feature="simd_support")] simd_impl! { f32x2, f32, m32x2, u32x2 } 211s | ^^^^^^^^^^^^^^^^^^^^^^ 211s | 211s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 211s = help: consider adding `simd_support` as a feature in `Cargo.toml` 211s = note: see for more information about checking conditional configuration 211s 211s warning: unexpected `cfg` condition value: `simd_support` 211s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:424:7 211s | 211s 424 | #[cfg(feature="simd_support")] simd_impl! { f32x4, f32, m32x4, u32x4 } 211s | ^^^^^^^^^^^^^^^^^^^^^^ 211s | 211s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 211s = help: consider adding `simd_support` as a feature in `Cargo.toml` 211s = note: see for more information about checking conditional configuration 211s 211s warning: unexpected `cfg` condition value: `simd_support` 211s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:425:7 211s | 211s 425 | #[cfg(feature="simd_support")] simd_impl! { f32x8, f32, m32x8, u32x8 } 211s | ^^^^^^^^^^^^^^^^^^^^^^ 211s | 211s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 211s = help: consider adding `simd_support` as a feature in `Cargo.toml` 211s = note: see for more information about checking conditional configuration 211s 211s warning: unexpected `cfg` condition value: `simd_support` 211s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:426:7 211s | 211s 426 | #[cfg(feature="simd_support")] simd_impl! { f32x16, f32, m32x16, u32x16 } 211s | ^^^^^^^^^^^^^^^^^^^^^^ 211s | 211s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 211s = help: consider adding `simd_support` as a feature in `Cargo.toml` 211s = note: see for more information about checking conditional configuration 211s 211s warning: unexpected `cfg` condition value: `simd_support` 211s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:427:7 211s | 211s 427 | #[cfg(feature="simd_support")] simd_impl! { f64x2, f64, m64x2, u64x2 } 211s | ^^^^^^^^^^^^^^^^^^^^^^ 211s | 211s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 211s = help: consider adding `simd_support` as a feature in `Cargo.toml` 211s = note: see for more information about checking conditional configuration 211s 211s warning: unexpected `cfg` condition value: `simd_support` 211s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:428:7 211s | 211s 428 | #[cfg(feature="simd_support")] simd_impl! { f64x4, f64, m64x4, u64x4 } 211s | ^^^^^^^^^^^^^^^^^^^^^^ 211s | 211s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 211s = help: consider adding `simd_support` as a feature in `Cargo.toml` 211s = note: see for more information about checking conditional configuration 211s 211s warning: unexpected `cfg` condition value: `simd_support` 211s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:429:7 211s | 211s 429 | #[cfg(feature="simd_support")] simd_impl! { f64x8, f64, m64x8, u64x8 } 211s | ^^^^^^^^^^^^^^^^^^^^^^ 211s | 211s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 211s = help: consider adding `simd_support` as a feature in `Cargo.toml` 211s = note: see for more information about checking conditional configuration 211s 211s warning: unexpected `cfg` condition name: `std` 211s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:291:19 211s | 211s 291 | #[cfg(not(std))] 211s | ^^^ help: found config with similar value: `feature = "std"` 211s ... 211s 359 | scalar_float_impl!(f32, u32); 211s | ---------------------------- in this macro invocation 211s | 211s = help: consider using a Cargo feature instead 211s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 211s [lints.rust] 211s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(std)'] } 211s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(std)");` to the top of the `build.rs` 211s = note: see for more information about checking conditional configuration 211s = note: this warning originates in the macro `scalar_float_impl` (in Nightly builds, run with -Z macro-backtrace for more info) 211s 211s warning: unexpected `cfg` condition name: `std` 211s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:291:19 211s | 211s 291 | #[cfg(not(std))] 211s | ^^^ help: found config with similar value: `feature = "std"` 211s ... 211s 360 | scalar_float_impl!(f64, u64); 211s | ---------------------------- in this macro invocation 211s | 211s = help: consider using a Cargo feature instead 211s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 211s [lints.rust] 211s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(std)'] } 211s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(std)");` to the top of the `build.rs` 211s = note: see for more information about checking conditional configuration 211s = note: this warning originates in the macro `scalar_float_impl` (in Nightly builds, run with -Z macro-backtrace for more info) 211s 211s warning: unexpected `cfg` condition name: `doc_cfg` 211s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/weighted_index.rs:80:12 211s | 211s 80 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 211s | ^^^^^^^ 211s | 211s = help: consider using a Cargo feature instead 211s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 211s [lints.rust] 211s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 211s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 211s = note: see for more information about checking conditional configuration 211s 211s warning: unexpected `cfg` condition name: `doc_cfg` 211s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/weighted_index.rs:429:12 211s | 211s 429 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 211s | ^^^^^^^ 211s | 211s = help: consider using a Cargo feature instead 211s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 211s [lints.rust] 211s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 211s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 211s = note: see for more information about checking conditional configuration 211s 211s warning: unexpected `cfg` condition value: `simd_support` 211s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/uniform.rs:121:7 211s | 211s 121 | #[cfg(feature = "simd_support")] use packed_simd::*; 211s | ^^^^^^^^^^^^^^^^^^^^^^^^ 211s | 211s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 211s = help: consider adding `simd_support` as a feature in `Cargo.toml` 211s = note: see for more information about checking conditional configuration 211s 211s warning: unexpected `cfg` condition value: `simd_support` 211s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/uniform.rs:572:7 211s | 211s 572 | #[cfg(feature = "simd_support")] 211s | ^^^^^^^^^^^^^^^^^^^^^^^^ 211s | 211s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 211s = help: consider adding `simd_support` as a feature in `Cargo.toml` 211s = note: see for more information about checking conditional configuration 211s 211s warning: unexpected `cfg` condition value: `simd_support` 211s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/uniform.rs:679:7 211s | 211s 679 | #[cfg(feature = "simd_support")] 211s | ^^^^^^^^^^^^^^^^^^^^^^^^ 211s | 211s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 211s = help: consider adding `simd_support` as a feature in `Cargo.toml` 211s = note: see for more information about checking conditional configuration 211s 211s warning: unexpected `cfg` condition value: `simd_support` 211s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/uniform.rs:687:7 211s | 211s 687 | #[cfg(feature = "simd_support")] 211s | ^^^^^^^^^^^^^^^^^^^^^^^^ 211s | 211s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 211s = help: consider adding `simd_support` as a feature in `Cargo.toml` 211s = note: see for more information about checking conditional configuration 211s 211s warning: unexpected `cfg` condition value: `simd_support` 211s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/uniform.rs:696:7 211s | 211s 696 | #[cfg(feature = "simd_support")] 211s | ^^^^^^^^^^^^^^^^^^^^^^^^ 211s | 211s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 211s = help: consider adding `simd_support` as a feature in `Cargo.toml` 211s = note: see for more information about checking conditional configuration 211s 211s warning: unexpected `cfg` condition value: `simd_support` 211s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/uniform.rs:706:7 211s | 211s 706 | #[cfg(feature = "simd_support")] 211s | ^^^^^^^^^^^^^^^^^^^^^^^^ 211s | 211s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 211s = help: consider adding `simd_support` as a feature in `Cargo.toml` 211s = note: see for more information about checking conditional configuration 211s 211s warning: unexpected `cfg` condition value: `simd_support` 211s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/uniform.rs:1001:7 211s | 211s 1001 | #[cfg(feature = "simd_support")] 211s | ^^^^^^^^^^^^^^^^^^^^^^^^ 211s | 211s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 211s = help: consider adding `simd_support` as a feature in `Cargo.toml` 211s = note: see for more information about checking conditional configuration 211s 211s warning: unexpected `cfg` condition value: `simd_support` 211s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/uniform.rs:1003:7 211s | 211s 1003 | #[cfg(feature = "simd_support")] 211s | ^^^^^^^^^^^^^^^^^^^^^^^^ 211s | 211s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 211s = help: consider adding `simd_support` as a feature in `Cargo.toml` 211s = note: see for more information about checking conditional configuration 211s 211s warning: unexpected `cfg` condition value: `simd_support` 211s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/uniform.rs:1005:7 211s | 211s 1005 | #[cfg(feature = "simd_support")] 211s | ^^^^^^^^^^^^^^^^^^^^^^^^ 211s | 211s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 211s = help: consider adding `simd_support` as a feature in `Cargo.toml` 211s = note: see for more information about checking conditional configuration 211s 211s warning: unexpected `cfg` condition value: `simd_support` 211s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/uniform.rs:1007:7 211s | 211s 1007 | #[cfg(feature = "simd_support")] 211s | ^^^^^^^^^^^^^^^^^^^^^^^^ 211s | 211s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 211s = help: consider adding `simd_support` as a feature in `Cargo.toml` 211s = note: see for more information about checking conditional configuration 211s 211s warning: unexpected `cfg` condition value: `simd_support` 211s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/uniform.rs:1010:7 211s | 211s 1010 | #[cfg(feature = "simd_support")] 211s | ^^^^^^^^^^^^^^^^^^^^^^^^ 211s | 211s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 211s = help: consider adding `simd_support` as a feature in `Cargo.toml` 211s = note: see for more information about checking conditional configuration 211s 211s warning: unexpected `cfg` condition value: `simd_support` 211s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/uniform.rs:1012:7 211s | 211s 1012 | #[cfg(feature = "simd_support")] 211s | ^^^^^^^^^^^^^^^^^^^^^^^^ 211s | 211s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 211s = help: consider adding `simd_support` as a feature in `Cargo.toml` 211s = note: see for more information about checking conditional configuration 211s 211s warning: unexpected `cfg` condition value: `simd_support` 211s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/uniform.rs:1014:7 211s | 211s 1014 | #[cfg(feature = "simd_support")] 211s | ^^^^^^^^^^^^^^^^^^^^^^^^ 211s | 211s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 211s = help: consider adding `simd_support` as a feature in `Cargo.toml` 211s = note: see for more information about checking conditional configuration 211s 211s warning: unexpected `cfg` condition name: `doc_cfg` 211s --> /usr/share/cargo/registry/rand-0.8.5/src/rng.rs:395:12 211s | 211s 395 | #[cfg_attr(doc_cfg, doc(cfg(feature = "min_const_gen")))] 211s | ^^^^^^^ 211s | 211s = help: consider using a Cargo feature instead 211s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 211s [lints.rust] 211s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 211s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 211s = note: see for more information about checking conditional configuration 211s 211s warning: unexpected `cfg` condition name: `doc_cfg` 211s --> /usr/share/cargo/registry/rand-0.8.5/src/rngs/mod.rs:99:12 211s | 211s 99 | #[cfg_attr(doc_cfg, doc(cfg(feature = "std")))] 211s | ^^^^^^^ 211s | 211s = help: consider using a Cargo feature instead 211s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 211s [lints.rust] 211s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 211s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 211s = note: see for more information about checking conditional configuration 211s 211s warning: unexpected `cfg` condition name: `doc_cfg` 211s --> /usr/share/cargo/registry/rand-0.8.5/src/rngs/mod.rs:118:12 211s | 211s 118 | #[cfg_attr(doc_cfg, doc(cfg(feature = "getrandom")))] 211s | ^^^^^^^ 211s | 211s = help: consider using a Cargo feature instead 211s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 211s [lints.rust] 211s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 211s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 211s = note: see for more information about checking conditional configuration 211s 211s warning: unexpected `cfg` condition name: `doc_cfg` 211s --> /usr/share/cargo/registry/rand-0.8.5/src/rngs/std.rs:32:12 211s | 211s 32 | #[cfg_attr(doc_cfg, doc(cfg(feature = "std_rng")))] 211s | ^^^^^^^ 211s | 211s = help: consider using a Cargo feature instead 211s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 211s [lints.rust] 211s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 211s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 211s = note: see for more information about checking conditional configuration 211s 211s warning: unexpected `cfg` condition name: `doc_cfg` 211s --> /usr/share/cargo/registry/rand-0.8.5/src/rngs/thread.rs:60:12 211s | 211s 60 | #[cfg_attr(doc_cfg, doc(cfg(all(feature = "std", feature = "std_rng"))))] 211s | ^^^^^^^ 211s | 211s = help: consider using a Cargo feature instead 211s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 211s [lints.rust] 211s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 211s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 211s = note: see for more information about checking conditional configuration 211s 211s warning: unexpected `cfg` condition name: `doc_cfg` 211s --> /usr/share/cargo/registry/rand-0.8.5/src/rngs/thread.rs:87:12 211s | 211s 87 | #[cfg_attr(doc_cfg, doc(cfg(all(feature = "std", feature = "std_rng"))))] 211s | ^^^^^^^ 211s | 211s = help: consider using a Cargo feature instead 211s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 211s [lints.rust] 211s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 211s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 211s = note: see for more information about checking conditional configuration 211s 211s warning: unexpected `cfg` condition name: `doc_cfg` 211s --> /usr/share/cargo/registry/rand-0.8.5/src/seq/mod.rs:29:12 211s | 211s 29 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 211s | ^^^^^^^ 211s | 211s = help: consider using a Cargo feature instead 211s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 211s [lints.rust] 211s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 211s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 211s = note: see for more information about checking conditional configuration 211s 211s warning: unexpected `cfg` condition name: `doc_cfg` 211s --> /usr/share/cargo/registry/rand-0.8.5/src/seq/mod.rs:623:12 211s | 211s 623 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 211s | ^^^^^^^ 211s | 211s = help: consider using a Cargo feature instead 211s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 211s [lints.rust] 211s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 211s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 211s = note: see for more information about checking conditional configuration 211s 211s warning: unexpected `cfg` condition name: `doc_cfg` 211s --> /usr/share/cargo/registry/rand-0.8.5/src/seq/index.rs:276:12 211s | 211s 276 | #[cfg_attr(doc_cfg, doc(cfg(feature = "std")))] 211s | ^^^^^^^ 211s | 211s = help: consider using a Cargo feature instead 211s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 211s [lints.rust] 211s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 211s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 211s = note: see for more information about checking conditional configuration 211s 211s warning: unexpected `cfg` condition name: `doc_cfg` 211s --> /usr/share/cargo/registry/rand-0.8.5/src/seq/mod.rs:114:16 211s | 211s 114 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 211s | ^^^^^^^ 211s | 211s = help: consider using a Cargo feature instead 211s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 211s [lints.rust] 211s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 211s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 211s = note: see for more information about checking conditional configuration 211s 211s warning: unexpected `cfg` condition name: `doc_cfg` 211s --> /usr/share/cargo/registry/rand-0.8.5/src/seq/mod.rs:142:16 211s | 211s 142 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 211s | ^^^^^^^ 211s | 211s = help: consider using a Cargo feature instead 211s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 211s [lints.rust] 211s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 211s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 211s = note: see for more information about checking conditional configuration 211s 211s warning: unexpected `cfg` condition name: `doc_cfg` 211s --> /usr/share/cargo/registry/rand-0.8.5/src/seq/mod.rs:170:16 211s | 211s 170 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 211s | ^^^^^^^ 211s | 211s = help: consider using a Cargo feature instead 211s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 211s [lints.rust] 211s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 211s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 211s = note: see for more information about checking conditional configuration 211s 211s warning: unexpected `cfg` condition name: `doc_cfg` 211s --> /usr/share/cargo/registry/rand-0.8.5/src/seq/mod.rs:219:16 211s | 211s 219 | #[cfg_attr(doc_cfg, doc(cfg(feature = "std")))] 211s | ^^^^^^^ 211s | 211s = help: consider using a Cargo feature instead 211s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 211s [lints.rust] 211s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 211s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 211s = note: see for more information about checking conditional configuration 211s 211s warning: unexpected `cfg` condition name: `doc_cfg` 211s --> /usr/share/cargo/registry/rand-0.8.5/src/seq/mod.rs:465:16 211s | 211s 465 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 211s | ^^^^^^^ 211s | 211s = help: consider using a Cargo feature instead 211s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 211s [lints.rust] 211s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 211s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 211s = note: see for more information about checking conditional configuration 211s 212s warning: trait `Float` is never used 212s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:238:18 212s | 212s 238 | pub(crate) trait Float: Sized { 212s | ^^^^^ 212s | 212s = note: `#[warn(dead_code)]` on by default 212s 212s warning: associated items `lanes`, `extract`, and `replace` are never used 212s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:247:8 212s | 212s 245 | pub(crate) trait FloatAsSIMD: Sized { 212s | ----------- associated items in this trait 212s 246 | #[inline(always)] 212s 247 | fn lanes() -> usize { 212s | ^^^^^ 212s ... 212s 255 | fn extract(self, index: usize) -> Self { 212s | ^^^^^^^ 212s ... 212s 260 | fn replace(self, index: usize, new_value: Self) -> Self { 212s | ^^^^^^^ 212s 212s warning: method `all` is never used 212s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:268:8 212s | 212s 266 | pub(crate) trait BoolAsSIMD: Sized { 212s | ---------- method in this trait 212s 267 | fn any(self) -> bool; 212s 268 | fn all(self) -> bool; 212s | ^^^ 212s 212s warning: `rand` (lib) generated 70 warnings (1 duplicate) 212s Compiling sha1 v0.10.6 212s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=sha1 CARGO_MANIFEST_DIR=/tmp/tmp.PIv8cIzOKd/registry/sha1-0.10.6 CARGO_MANIFEST_PATH=/tmp/tmp.PIv8cIzOKd/registry/sha1-0.10.6/Cargo.toml CARGO_PKG_AUTHORS='RustCrypto Developers' CARGO_PKG_DESCRIPTION='SHA-1 hash function' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=sha1 CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/RustCrypto/hashes' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.10.6 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=10 CARGO_PKG_VERSION_PATCH=6 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.PIv8cIzOKd/target/debug/deps rustc --crate-name sha1 --edition=2018 /tmp/tmp.PIv8cIzOKd/registry/sha1-0.10.6/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("asm", "compress", "default", "force-soft", "loongarch64_asm", "oid", "sha1-asm", "std"))' -C metadata=7a229c14a1ac9b31 -C extra-filename=-7a229c14a1ac9b31 --out-dir /tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.PIv8cIzOKd/target/debug/deps --extern cfg_if=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps/libcfg_if-ff3ff84a061de73f.rmeta --extern digest=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps/libdigest-027272cf65436a63.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.PIv8cIzOKd/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 212s warning: `sha1` (lib) generated 1 warning (1 duplicate) 212s Compiling async-fs v2.1.2 212s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=async_fs CARGO_MANIFEST_DIR=/tmp/tmp.PIv8cIzOKd/registry/async-fs-2.1.2 CARGO_MANIFEST_PATH=/tmp/tmp.PIv8cIzOKd/registry/async-fs-2.1.2/Cargo.toml CARGO_PKG_AUTHORS='Stjepan Glavina ' CARGO_PKG_DESCRIPTION='Async filesystem primitives' CARGO_PKG_HOMEPAGE='https://github.com/smol-rs/async-fs' CARGO_PKG_LICENSE='Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=async-fs CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/smol-rs/async-fs' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=2.1.2 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=2 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.PIv8cIzOKd/target/debug/deps rustc --crate-name async_fs --edition=2018 /tmp/tmp.PIv8cIzOKd/registry/async-fs-2.1.2/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=29595b84143a8f6c -C extra-filename=-29595b84143a8f6c --out-dir /tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.PIv8cIzOKd/target/debug/deps --extern async_lock=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps/libasync_lock-ac8045c9d37e641a.rmeta --extern blocking=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps/libblocking-eab10f1f364dd315.rmeta --extern futures_lite=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps/libfutures_lite-b3966bcb93a5ad2f.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.PIv8cIzOKd/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 212s warning: `async-fs` (lib) generated 1 warning (1 duplicate) 212s Compiling zbus_names v3.0.0 212s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=zbus_names CARGO_MANIFEST_DIR=/tmp/tmp.PIv8cIzOKd/registry/zbus_names-3.0.0 CARGO_MANIFEST_PATH=/tmp/tmp.PIv8cIzOKd/registry/zbus_names-3.0.0/Cargo.toml CARGO_PKG_AUTHORS='Zeeshan Ali Khan ' CARGO_PKG_DESCRIPTION='A collection of D-Bus bus names types' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=zbus_names CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dbus2/zbus/' CARGO_PKG_RUST_VERSION=1.75 CARGO_PKG_VERSION=3.0.0 CARGO_PKG_VERSION_MAJOR=3 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.PIv8cIzOKd/target/debug/deps rustc --crate-name zbus_names --edition=2021 /tmp/tmp.PIv8cIzOKd/registry/zbus_names-3.0.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=68f942ce83c6099a -C extra-filename=-68f942ce83c6099a --out-dir /tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.PIv8cIzOKd/target/debug/deps --extern serde=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps/libserde-0e7dff716e38da0d.rmeta --extern static_assertions=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps/libstatic_assertions-18df01cc327facaa.rmeta --extern zvariant=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps/libzvariant-f63ab59735f855c5.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.PIv8cIzOKd/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 213s warning: `futures-util` (lib) generated 13 warnings (1 duplicate) 213s Compiling async-io v2.3.3 213s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=async_io CARGO_MANIFEST_DIR=/tmp/tmp.PIv8cIzOKd/registry/async-io-2.3.3 CARGO_MANIFEST_PATH=/tmp/tmp.PIv8cIzOKd/registry/async-io-2.3.3/Cargo.toml CARGO_PKG_AUTHORS='Stjepan Glavina ' CARGO_PKG_DESCRIPTION='Async I/O and timers' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=async-io CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/smol-rs/async-io' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=2.3.3 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=3 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.PIv8cIzOKd/target/debug/deps rustc --crate-name async_io --edition=2021 /tmp/tmp.PIv8cIzOKd/registry/async-io-2.3.3/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --warn=unexpected_cfgs --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=d311597b60c0a390 -C extra-filename=-d311597b60c0a390 --out-dir /tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.PIv8cIzOKd/target/debug/deps --extern async_lock=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps/libasync_lock-ac8045c9d37e641a.rmeta --extern cfg_if=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps/libcfg_if-ff3ff84a061de73f.rmeta --extern concurrent_queue=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps/libconcurrent_queue-7e82393ecc7068db.rmeta --extern futures_io=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps/libfutures_io-1a4387591f8b2b95.rmeta --extern futures_lite=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps/libfutures_lite-b3966bcb93a5ad2f.rmeta --extern parking=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps/libparking-0a38dc17b1bc33e2.rmeta --extern polling=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps/libpolling-8ea21ac6becc74d7.rmeta --extern rustix=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps/librustix-c5174677adcec892.rmeta --extern slab=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps/libslab-36320af34be0827b.rmeta --extern tracing=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps/libtracing-5f8a2432d30b4ef1.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.PIv8cIzOKd/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 213s warning: unexpected `cfg` condition name: `polling_test_poll_backend` 213s --> /usr/share/cargo/registry/async-io-2.3.3/src/os/unix.rs:60:17 213s | 213s 60 | not(polling_test_poll_backend), 213s | ^^^^^^^^^^^^^^^^^^^^^^^^^ 213s | 213s = help: expected names are: `clippy`, `debug_assertions`, `doc`, `docsrs`, `doctest`, `feature`, `fmt_debug`, `miri`, `overflow_checks`, `panic`, `proc_macro`, `relocation_model`, `rustfmt`, `sanitize`, `sanitizer_cfi_generalize_pointers`, `sanitizer_cfi_normalize_integers`, `target_abi`, `target_arch`, `target_endian`, `target_env`, `target_family`, `target_feature`, `target_has_atomic`, `target_has_atomic_equal_alignment`, `target_has_atomic_load_store`, `target_os`, `target_pointer_width`, `target_thread_local`, `target_vendor`, `test`, `ub_checks`, `unix`, and `windows` 213s = help: consider using a Cargo feature instead 213s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 213s [lints.rust] 213s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(polling_test_poll_backend)'] } 213s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(polling_test_poll_backend)");` to the top of the `build.rs` 213s = note: see for more information about checking conditional configuration 213s = note: requested on the command line with `-W unexpected-cfgs` 213s 213s warning: `zbus_names` (lib) generated 1 warning (1 duplicate) 213s Compiling async-executor v1.13.1 213s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=async_executor CARGO_MANIFEST_DIR=/tmp/tmp.PIv8cIzOKd/registry/async-executor-1.13.1 CARGO_MANIFEST_PATH=/tmp/tmp.PIv8cIzOKd/registry/async-executor-1.13.1/Cargo.toml CARGO_PKG_AUTHORS='Stjepan Glavina :John Nunley ' CARGO_PKG_DESCRIPTION='Async executor' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=async-executor CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/smol-rs/async-executor' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=1.13.1 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=13 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.PIv8cIzOKd/target/debug/deps rustc --crate-name async_executor --edition=2021 /tmp/tmp.PIv8cIzOKd/registry/async-executor-1.13.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("static"))' -C metadata=bf62c2e997e9834f -C extra-filename=-bf62c2e997e9834f --out-dir /tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.PIv8cIzOKd/target/debug/deps --extern async_task=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps/libasync_task-18059860e85d74b4.rmeta --extern concurrent_queue=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps/libconcurrent_queue-7e82393ecc7068db.rmeta --extern fastrand=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps/libfastrand-b0f30b63d6f103db.rmeta --extern futures_lite=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps/libfutures_lite-b3966bcb93a5ad2f.rmeta --extern slab=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps/libslab-36320af34be0827b.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.PIv8cIzOKd/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 213s warning: `async-executor` (lib) generated 1 warning (1 duplicate) 213s Compiling zbus_macros v4.4.0 213s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=zbus_macros CARGO_MANIFEST_DIR=/tmp/tmp.PIv8cIzOKd/registry/zbus_macros-4.4.0 CARGO_MANIFEST_PATH=/tmp/tmp.PIv8cIzOKd/registry/zbus_macros-4.4.0/Cargo.toml CARGO_PKG_AUTHORS='Marc-André Lureau :Zeeshan Ali Khan ' CARGO_PKG_DESCRIPTION='proc-macros for zbus' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=zbus_macros CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dbus2/zbus/' CARGO_PKG_RUST_VERSION=1.75 CARGO_PKG_VERSION=4.4.0 CARGO_PKG_VERSION_MAJOR=4 CARGO_PKG_VERSION_MINOR=4 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.PIv8cIzOKd/target/debug/deps rustc --crate-name zbus_macros --edition=2021 /tmp/tmp.PIv8cIzOKd/registry/zbus_macros-4.4.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type proc-macro --emit=dep-info,link -C prefer-dynamic -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=fbbb45642851aa97 -C extra-filename=-fbbb45642851aa97 --out-dir /tmp/tmp.PIv8cIzOKd/target/debug/deps -L dependency=/tmp/tmp.PIv8cIzOKd/target/debug/deps --extern proc_macro_crate=/tmp/tmp.PIv8cIzOKd/target/debug/deps/libproc_macro_crate-900b46bff7d8f3e2.rlib --extern proc_macro2=/tmp/tmp.PIv8cIzOKd/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rlib --extern quote=/tmp/tmp.PIv8cIzOKd/target/debug/deps/libquote-dc92c6f25ee0f0c6.rlib --extern syn=/tmp/tmp.PIv8cIzOKd/target/debug/deps/libsyn-0167beed9e699402.rlib --extern zvariant_utils=/tmp/tmp.PIv8cIzOKd/target/debug/deps/libzvariant_utils-555d90bad4acf190.rlib --extern proc_macro --cap-lints warn` 214s warning: `async-io` (lib) generated 2 warnings (1 duplicate) 214s Compiling serde_repr v0.1.12 214s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=serde_repr CARGO_MANIFEST_DIR=/tmp/tmp.PIv8cIzOKd/registry/serde_repr-0.1.12 CARGO_MANIFEST_PATH=/tmp/tmp.PIv8cIzOKd/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.PIv8cIzOKd/target/debug/deps rustc --crate-name serde_repr --edition=2018 /tmp/tmp.PIv8cIzOKd/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=79727398b79ecac5 -C extra-filename=-79727398b79ecac5 --out-dir /tmp/tmp.PIv8cIzOKd/target/debug/deps -L dependency=/tmp/tmp.PIv8cIzOKd/target/debug/deps --extern proc_macro2=/tmp/tmp.PIv8cIzOKd/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rlib --extern quote=/tmp/tmp.PIv8cIzOKd/target/debug/deps/libquote-dc92c6f25ee0f0c6.rlib --extern syn=/tmp/tmp.PIv8cIzOKd/target/debug/deps/libsyn-0167beed9e699402.rlib --extern proc_macro --cap-lints warn` 214s Compiling async-trait v0.1.83 214s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=async_trait CARGO_MANIFEST_DIR=/tmp/tmp.PIv8cIzOKd/registry/async-trait-0.1.83 CARGO_MANIFEST_PATH=/tmp/tmp.PIv8cIzOKd/registry/async-trait-0.1.83/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='Type erasure for async trait methods' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=async-trait CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/async-trait' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=0.1.83 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=83 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.PIv8cIzOKd/target/debug/deps rustc --crate-name async_trait --edition=2021 /tmp/tmp.PIv8cIzOKd/registry/async-trait-0.1.83/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=e4c90cfd514ad223 -C extra-filename=-e4c90cfd514ad223 --out-dir /tmp/tmp.PIv8cIzOKd/target/debug/deps -L dependency=/tmp/tmp.PIv8cIzOKd/target/debug/deps --extern proc_macro2=/tmp/tmp.PIv8cIzOKd/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rlib --extern quote=/tmp/tmp.PIv8cIzOKd/target/debug/deps/libquote-dc92c6f25ee0f0c6.rlib --extern syn=/tmp/tmp.PIv8cIzOKd/target/debug/deps/libsyn-0167beed9e699402.rlib --extern proc_macro --cap-lints warn` 216s Compiling async-broadcast v0.7.1 216s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=async_broadcast CARGO_MANIFEST_DIR=/tmp/tmp.PIv8cIzOKd/registry/async-broadcast-0.7.1 CARGO_MANIFEST_PATH=/tmp/tmp.PIv8cIzOKd/registry/async-broadcast-0.7.1/Cargo.toml CARGO_PKG_AUTHORS='Stjepan Glavina :Yoshua Wuyts :Zeeshan Ali Khan ' CARGO_PKG_DESCRIPTION='Async broadcast channels' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=async-broadcast CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/smol-rs/async-broadcast' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.7.1 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=7 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.PIv8cIzOKd/target/debug/deps rustc --crate-name async_broadcast --edition=2018 /tmp/tmp.PIv8cIzOKd/registry/async-broadcast-0.7.1/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=f1e6bd69abd4251e -C extra-filename=-f1e6bd69abd4251e --out-dir /tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.PIv8cIzOKd/target/debug/deps --extern event_listener=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps/libevent_listener-4260d59234261e59.rmeta --extern event_listener_strategy=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps/libevent_listener_strategy-53ebcc1cb10a7931.rmeta --extern futures_core=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps/libfutures_core-8d305950da6bf5c8.rmeta --extern pin_project_lite=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps/libpin_project_lite-5dc815523e98d889.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.PIv8cIzOKd/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 216s warning: `async-broadcast` (lib) generated 1 warning (1 duplicate) 216s Compiling ordered-stream v0.2.0 216s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=ordered_stream CARGO_MANIFEST_DIR=/tmp/tmp.PIv8cIzOKd/registry/ordered-stream-0.2.0 CARGO_MANIFEST_PATH=/tmp/tmp.PIv8cIzOKd/registry/ordered-stream-0.2.0/Cargo.toml CARGO_PKG_AUTHORS='Daniel De Graaf :Zeeshan Ali Khan ' CARGO_PKG_DESCRIPTION='Streams that are ordered relative to external events' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=ordered-stream CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/danieldg/ordered-stream' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.2.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.PIv8cIzOKd/target/debug/deps rustc --crate-name ordered_stream --edition=2018 /tmp/tmp.PIv8cIzOKd/registry/ordered-stream-0.2.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=5d03c0a21a4bd5e4 -C extra-filename=-5d03c0a21a4bd5e4 --out-dir /tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.PIv8cIzOKd/target/debug/deps --extern futures_core=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps/libfutures_core-8d305950da6bf5c8.rmeta --extern pin_project_lite=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps/libpin_project_lite-5dc815523e98d889.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.PIv8cIzOKd/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 216s warning: `ordered-stream` (lib) generated 1 warning (1 duplicate) 216s Compiling xdg-home v1.3.0 216s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=xdg_home CARGO_MANIFEST_DIR=/tmp/tmp.PIv8cIzOKd/registry/xdg-home-1.3.0 CARGO_MANIFEST_PATH=/tmp/tmp.PIv8cIzOKd/registry/xdg-home-1.3.0/Cargo.toml CARGO_PKG_AUTHORS='Zeeshan Ali Khan ' CARGO_PKG_DESCRIPTION='The user'\''s home directory as per XDG Specification' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=xdg-home CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/zeenix/xdg-home' CARGO_PKG_RUST_VERSION=1.60 CARGO_PKG_VERSION=1.3.0 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.PIv8cIzOKd/target/debug/deps rustc --crate-name xdg_home --edition=2021 /tmp/tmp.PIv8cIzOKd/registry/xdg-home-1.3.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=4230920bfa085c8c -C extra-filename=-4230920bfa085c8c --out-dir /tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.PIv8cIzOKd/target/debug/deps --extern libc=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps/liblibc-cf2521928ac070dc.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.PIv8cIzOKd/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 216s warning: `xdg-home` (lib) generated 1 warning (1 duplicate) 216s Compiling hex v0.4.3 216s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=hex CARGO_MANIFEST_DIR=/tmp/tmp.PIv8cIzOKd/registry/hex-0.4.3 CARGO_MANIFEST_PATH=/tmp/tmp.PIv8cIzOKd/registry/hex-0.4.3/Cargo.toml CARGO_PKG_AUTHORS='KokaKiwi ' CARGO_PKG_DESCRIPTION='Encoding and decoding data into/from hexadecimal representation.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=hex CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/KokaKiwi/rust-hex' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.4.3 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=4 CARGO_PKG_VERSION_PATCH=3 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.PIv8cIzOKd/target/debug/deps rustc --crate-name hex --edition=2018 /tmp/tmp.PIv8cIzOKd/registry/hex-0.4.3/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="alloc"' --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "default", "serde", "std"))' -C metadata=d04eec135ea2b5a3 -C extra-filename=-d04eec135ea2b5a3 --out-dir /tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.PIv8cIzOKd/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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.PIv8cIzOKd/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 217s warning: `hex` (lib) generated 1 warning (1 duplicate) 217s Compiling futures-channel v0.3.31 217s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=futures_channel CARGO_MANIFEST_DIR=/tmp/tmp.PIv8cIzOKd/registry/futures-channel-0.3.31 CARGO_MANIFEST_PATH=/tmp/tmp.PIv8cIzOKd/registry/futures-channel-0.3.31/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='Channels for asynchronous communication using futures-rs. 217s ' CARGO_PKG_HOMEPAGE='https://rust-lang.github.io/futures-rs' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=futures-channel CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/futures-rs' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=0.3.31 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=31 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.PIv8cIzOKd/target/debug/deps rustc --crate-name futures_channel --edition=2018 /tmp/tmp.PIv8cIzOKd/registry/futures-channel-0.3.31/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --warn=unreachable_pub --warn=unexpected_cfgs --warn=single_use_lifetimes --warn=rust_2018_idioms --warn=missing_debug_implementations --check-cfg 'cfg(futures_sanitizer)' --cfg 'feature="alloc"' --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "cfg-target-has-atomic", "default", "futures-sink", "sink", "std", "unstable"))' -C metadata=8ed485ea134c933c -C extra-filename=-8ed485ea134c933c --out-dir /tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.PIv8cIzOKd/target/debug/deps --extern futures_core=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps/libfutures_core-8d305950da6bf5c8.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.PIv8cIzOKd/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 217s warning: `futures-channel` (lib) generated 1 warning (1 duplicate) 217s Compiling zbus v4.4.0 217s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=zbus CARGO_MANIFEST_DIR=/tmp/tmp.PIv8cIzOKd/registry/zbus-4.4.0 CARGO_MANIFEST_PATH=/tmp/tmp.PIv8cIzOKd/registry/zbus-4.4.0/Cargo.toml CARGO_PKG_AUTHORS='Zeeshan Ali Khan ' CARGO_PKG_DESCRIPTION='API for D-Bus communication' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=zbus CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dbus2/zbus/' CARGO_PKG_RUST_VERSION=1.75 CARGO_PKG_VERSION=4.4.0 CARGO_PKG_VERSION_MAJOR=4 CARGO_PKG_VERSION_MINOR=4 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.PIv8cIzOKd/target/debug/deps rustc --crate-name zbus --edition=2021 /tmp/tmp.PIv8cIzOKd/registry/zbus-4.4.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="async-executor"' --cfg 'feature="async-fs"' --cfg 'feature="async-io"' --cfg 'feature="async-lock"' --cfg 'feature="async-task"' --cfg 'feature="blocking"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("async-executor", "async-fs", "async-io", "async-lock", "async-task", "blocking", "bus-impl", "chrono", "default", "heapless", "option-as-array", "p2p", "time", "tokio", "tokio-vsock", "url", "uuid", "vsock"))' -C metadata=561e5890d7f4a32b -C extra-filename=-561e5890d7f4a32b --out-dir /tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.PIv8cIzOKd/target/debug/deps --extern async_broadcast=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps/libasync_broadcast-f1e6bd69abd4251e.rmeta --extern async_executor=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps/libasync_executor-bf62c2e997e9834f.rmeta --extern async_fs=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps/libasync_fs-29595b84143a8f6c.rmeta --extern async_io=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps/libasync_io-d311597b60c0a390.rmeta --extern async_lock=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps/libasync_lock-ac8045c9d37e641a.rmeta --extern async_task=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps/libasync_task-18059860e85d74b4.rmeta --extern async_trait=/tmp/tmp.PIv8cIzOKd/target/debug/deps/libasync_trait-e4c90cfd514ad223.so --extern blocking=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps/libblocking-eab10f1f364dd315.rmeta --extern enumflags2=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps/libenumflags2-2867d32c4b4f39e8.rmeta --extern event_listener=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps/libevent_listener-4260d59234261e59.rmeta --extern futures_core=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps/libfutures_core-8d305950da6bf5c8.rmeta --extern futures_sink=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps/libfutures_sink-2335bc9d806f8753.rmeta --extern futures_util=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps/libfutures_util-724575be975598c0.rmeta --extern hex=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps/libhex-d04eec135ea2b5a3.rmeta --extern nix=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps/libnix-30ad0bf244578707.rmeta --extern ordered_stream=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps/libordered_stream-5d03c0a21a4bd5e4.rmeta --extern rand=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps/librand-da2a195293a4eb5f.rmeta --extern serde=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps/libserde-0e7dff716e38da0d.rmeta --extern serde_repr=/tmp/tmp.PIv8cIzOKd/target/debug/deps/libserde_repr-79727398b79ecac5.so --extern sha1=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps/libsha1-7a229c14a1ac9b31.rmeta --extern static_assertions=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps/libstatic_assertions-18df01cc327facaa.rmeta --extern tracing=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps/libtracing-5f8a2432d30b4ef1.rmeta --extern xdg_home=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps/libxdg_home-4230920bfa085c8c.rmeta --extern zbus_macros=/tmp/tmp.PIv8cIzOKd/target/debug/deps/libzbus_macros-fbbb45642851aa97.so --extern zbus_names=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps/libzbus_names-68f942ce83c6099a.rmeta --extern zvariant=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps/libzvariant-f63ab59735f855c5.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.PIv8cIzOKd/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 226s warning: `zbus` (lib) generated 1 warning (1 duplicate) 226s Compiling search-provider v0.10.0 (/usr/share/cargo/registry/search-provider-0.10.0) 226s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=search_provider CARGO_MANIFEST_DIR=/usr/share/cargo/registry/search-provider-0.10.0 CARGO_MANIFEST_PATH=/usr/share/cargo/registry/search-provider-0.10.0/Cargo.toml CARGO_PKG_AUTHORS='Felix Häcker ' CARGO_PKG_DESCRIPTION='Rust wrapper around the GNOME Shell search provider API' CARGO_PKG_HOMEPAGE='https://gitlab.gnome.org/World/Rust/search-provider' CARGO_PKG_LICENSE=' GPL-3.0-or-later' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=search-provider CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://gitlab.gnome.org/World/Rust/search-provider' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.10.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=10 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' CARGO_PRIMARY_PACKAGE=1 LD_LIBRARY_PATH=/tmp/tmp.PIv8cIzOKd/target/debug/deps rustc --crate-name search_provider --edition=2021 src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --test --cfg 'feature="async-std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("async-std", "default", "gdk", "gdk-pixbuf", "tokio"))' -C metadata=5062444be440358e -C extra-filename=-5062444be440358e --out-dir /tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -C incremental=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/incremental -L dependency=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.PIv8cIzOKd/target/debug/deps --extern futures_channel=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps/libfutures_channel-8ed485ea134c933c.rlib --extern futures_util=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps/libfutures_util-724575be975598c0.rlib --extern serde=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps/libserde-0e7dff716e38da0d.rlib --extern zbus=/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps/libzbus-561e5890d7f4a32b.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.PIv8cIzOKd/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 227s warning: `search-provider` (lib test) generated 1 warning (1 duplicate) 227s Finished `test` profile [unoptimized + debuginfo] target(s) in 40.96s 227s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_MANIFEST_DIR=/usr/share/cargo/registry/search-provider-0.10.0 CARGO_MANIFEST_PATH=/usr/share/cargo/registry/search-provider-0.10.0/Cargo.toml CARGO_PKG_AUTHORS='Felix Häcker ' CARGO_PKG_DESCRIPTION='Rust wrapper around the GNOME Shell search provider API' CARGO_PKG_HOMEPAGE='https://gitlab.gnome.org/World/Rust/search-provider' CARGO_PKG_LICENSE=' GPL-3.0-or-later' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=search-provider CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://gitlab.gnome.org/World/Rust/search-provider' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.10.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=10 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps:/tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' /tmp/tmp.PIv8cIzOKd/target/s390x-unknown-linux-gnu/debug/deps/search_provider-5062444be440358e` 227s 227s running 1 test 227s test result_metadata::tests::icon_data_signature ... ok 227s 227s test result: ok. 1 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.00s 227s 227s /tmp/autopkgtest.9UAdYD/wrapper.sh: checking for leaked background processes... 227s /tmp/autopkgtest.9UAdYD/wrapper.sh: waiting for tee/cat subprocesses... 227s /tmp/autopkgtest.9UAdYD/wrapper.sh: cleaning up... 227s /tmp/autopkgtest.9UAdYD/wrapper.sh: Exit status: 0 227s autopkgtest: DBG: testbed command exited with code 0 228s autopkgtest [18:29:15]: test librust-search-provider-dev:async-std: -----------------------] 228s autopkgtest: DBG: testbed executing test finished with exit status 0 228s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.9UAdYD/librust-search-provider-dev%3Aasync-std-stdout /tmp/autopkgtest-work.fgzbr70j/out/librust-search-provider-dev%3Aasync-std-stdout 228s autopkgtest: DBG: got reply from testbed: ok 228s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.9UAdYD/librust-search-provider-dev%3Aasync-std-stderr /tmp/autopkgtest-work.fgzbr70j/out/librust-search-provider-dev%3Aasync-std-stderr 228s autopkgtest: DBG: got reply from testbed: ok 228s librust-search-provider-dev:async-std PASS 228s autopkgtest [18:29:15]: test librust-search-provider-dev:async-std: - - - - - - - - - - results - - - - - - - - - - 228s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.9UAdYD/librust-search-provider-dev%3Aasync-std-artifacts/ /tmp/autopkgtest-work.fgzbr70j/out/artifacts/ 228s autopkgtest: DBG: got reply from testbed: ok 228s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.9UAdYD/librust-search-provider-dev:async-std-artifacts', '/tmp/autopkgtest.9UAdYD/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 229s autopkgtest: DBG: testbed command exited with code 0 229s autopkgtest [18:29:16]: test librust-search-provider-dev:default: preparing testbed 229s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['dh-cargo (>= 18)', 'librust-search-provider-dev'], deps_new=['dh-cargo (>= 18)', 'librust-search-provider-dev'] 229s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 229s autopkgtest: DBG: install_deps: deps_new=['dh-cargo (>= 18)', 'librust-search-provider-dev'] 229s autopkgtest: DBG: install-deps: satisfying dh-cargo (>= 18), librust-search-provider-dev 229s autopkgtest: DBG: can use apt-get on testbed: True 229s 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-search-provider-dev'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 229s Reading package lists... 229s Building dependency tree... 229s Reading state information... 229s Starting pkgProblemResolver with broken count: 0 229s Starting 2 pkgProblemResolver with broken count: 0 229s Done 229s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 229s autopkgtest: DBG: testbed command exited with code 0 229s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'librust-search-provider-dev'], kind short, sout pipe, serr pipe, env [] 229s autopkgtest: DBG: testbed command exited with code 0 229s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.9UAdYD/librust-search-provider-dev:default-packages.all"], kind short, sout raw, serr pipe, env [] 230s autopkgtest: DBG: testbed command exited with code 0 230s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.9UAdYD/librust-search-provider-dev%3Adefault-packages.all /tmp/autopkgtest-work.fgzbr70j/out/librust-search-provider-dev%3Adefault-packages.all 230s autopkgtest: DBG: got reply from testbed: ok 230s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.9UAdYD/build.JnS/src'], kind short, sout raw, serr raw, env [] 230s autopkgtest: DBG: testbed command exited with code 0 230s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.9UAdYD/build.JnS/src already exists 230s autopkgtest [18:29:17]: test librust-search-provider-dev:default: /usr/share/cargo/bin/cargo-auto-test search-provider 0.10.0 --all-targets 230s autopkgtest [18:29:17]: test librust-search-provider-dev:default: [----------------------- 230s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.9UAdYD/wrapper.sh --debug --artifacts=/tmp/autopkgtest.9UAdYD/librust-search-provider-dev:default-artifacts --chdir=/tmp/autopkgtest.9UAdYD/build.JnS/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.9UAdYD/librust-search-provider-dev:default-stderr --stdout=/tmp/autopkgtest.9UAdYD/librust-search-provider-dev:default-stdout --tmp=/tmp/autopkgtest.9UAdYD/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 search-provider 0.10.0 --all-targets'"], kind test, sout raw, serr raw, env [] 230s /tmp/autopkgtest.9UAdYD/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.9UAdYD/librust-search-provider-dev:default-artifacts 230s /tmp/autopkgtest.9UAdYD/wrapper.sh: changing to directory: /tmp/autopkgtest.9UAdYD/build.JnS/src 230s /tmp/autopkgtest.9UAdYD/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 230s /tmp/autopkgtest.9UAdYD/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 230s /tmp/autopkgtest.9UAdYD/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 230s /tmp/autopkgtest.9UAdYD/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 230s /tmp/autopkgtest.9UAdYD/wrapper.sh: setting environment: LANG=C.UTF-8 230s /tmp/autopkgtest.9UAdYD/wrapper.sh: unsetting environment: LANGUAGE 230s /tmp/autopkgtest.9UAdYD/wrapper.sh: unsetting environment: LC_ADDRESS 230s /tmp/autopkgtest.9UAdYD/wrapper.sh: unsetting environment: LC_ALL 230s /tmp/autopkgtest.9UAdYD/wrapper.sh: unsetting environment: LC_COLLATE 230s /tmp/autopkgtest.9UAdYD/wrapper.sh: unsetting environment: LC_CTYPE 230s /tmp/autopkgtest.9UAdYD/wrapper.sh: unsetting environment: LC_IDENTIFICATION 230s /tmp/autopkgtest.9UAdYD/wrapper.sh: unsetting environment: LC_MEASUREMENT 230s /tmp/autopkgtest.9UAdYD/wrapper.sh: unsetting environment: LC_MESSAGES 230s /tmp/autopkgtest.9UAdYD/wrapper.sh: unsetting environment: LC_MONETARY 230s /tmp/autopkgtest.9UAdYD/wrapper.sh: unsetting environment: LC_NAME 230s /tmp/autopkgtest.9UAdYD/wrapper.sh: unsetting environment: LC_NUMERIC 230s /tmp/autopkgtest.9UAdYD/wrapper.sh: unsetting environment: LC_PAPER 230s /tmp/autopkgtest.9UAdYD/wrapper.sh: unsetting environment: LC_TELEPHONE 230s /tmp/autopkgtest.9UAdYD/wrapper.sh: unsetting environment: LC_TIME 230s /tmp/autopkgtest.9UAdYD/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 230s /tmp/autopkgtest.9UAdYD/wrapper.sh: pretending to be a login shell 230s /tmp/autopkgtest.9UAdYD/wrapper.sh: will write standard error to /tmp/autopkgtest.9UAdYD/librust-search-provider-dev:default-stderr 230s /tmp/autopkgtest.9UAdYD/wrapper.sh: will write stdout to /tmp/autopkgtest.9UAdYD/librust-search-provider-dev:default-stdout 230s /tmp/autopkgtest.9UAdYD/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.9UAdYD/autopkgtest_tmp 230s /tmp/autopkgtest.9UAdYD/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 230s /tmp/autopkgtest.9UAdYD/wrapper.sh: command to run: bash -ec /usr/share/cargo/bin/cargo-auto-test search-provider 0.10.0 --all-targets 230s /tmp/autopkgtest.9UAdYD/wrapper.sh: copying /tmp/tmp.HrQ7knXZb3/out to stdout and file: /tmp/autopkgtest.9UAdYD/librust-search-provider-dev:default-stdout 230s /tmp/autopkgtest.9UAdYD/wrapper.sh: copying /tmp/tmp.HrQ7knXZb3/err to standard error and file: /tmp/autopkgtest.9UAdYD/librust-search-provider-dev:default-stdout 230s /tmp/autopkgtest.9UAdYD/wrapper.sh: writing script pid 9409 to /tmp/autopkgtest_script_pid 230s debian cargo wrapper: options, profiles, parallel, lto: ['parallel=2'] [] ['-j2'] 0 230s debian cargo wrapper: rust_type, gnu_type: s390x-unknown-linux-gnu, s390x-linux-gnu 230s debian cargo wrapper: unsetting RUSTFLAGS and assuming it will be (or already was) added to $CARGO_HOME/config.toml 230s debian cargo wrapper: linking /usr/share/cargo/registry/* into /tmp/tmp.ruvRE753uN/registry/ 230s debian cargo wrapper: options, profiles, parallel, lto: ['parallel=2'] [] ['-j2'] 0 230s debian cargo wrapper: rust_type, gnu_type: s390x-unknown-linux-gnu, s390x-linux-gnu 230s debian cargo wrapper: unsetting RUSTFLAGS and assuming it will be (or already was) added to $CARGO_HOME/config.toml 230s 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'],) {} 230s Compiling proc-macro2 v1.0.92 230s Compiling unicode-ident v1.0.13 230s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=unicode_ident CARGO_MANIFEST_DIR=/tmp/tmp.ruvRE753uN/registry/unicode-ident-1.0.13 CARGO_MANIFEST_PATH=/tmp/tmp.ruvRE753uN/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.ruvRE753uN/target/debug/deps rustc --crate-name unicode_ident --edition=2018 /tmp/tmp.ruvRE753uN/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.ruvRE753uN/target/debug/deps -L dependency=/tmp/tmp.ruvRE753uN/target/debug/deps --cap-lints warn` 230s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.ruvRE753uN/registry/proc-macro2-1.0.92 CARGO_MANIFEST_PATH=/tmp/tmp.ruvRE753uN/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.ruvRE753uN/target/debug/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.ruvRE753uN/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.ruvRE753uN/target/debug/build/proc-macro2-3832f39696f3f5db -L dependency=/tmp/tmp.ruvRE753uN/target/debug/deps --cap-lints warn` 230s Compiling pin-project-lite v0.2.13 230s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=pin_project_lite CARGO_MANIFEST_DIR=/tmp/tmp.ruvRE753uN/registry/pin-project-lite-0.2.13 CARGO_MANIFEST_PATH=/tmp/tmp.ruvRE753uN/registry/pin-project-lite-0.2.13/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='A lightweight version of pin-project written with declarative macros. 230s ' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=pin-project-lite CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/taiki-e/pin-project-lite' CARGO_PKG_RUST_VERSION=1.37 CARGO_PKG_VERSION=0.2.13 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=13 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.ruvRE753uN/target/debug/deps rustc --crate-name pin_project_lite --edition=2018 /tmp/tmp.ruvRE753uN/registry/pin-project-lite-0.2.13/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=5dc815523e98d889 -C extra-filename=-5dc815523e98d889 --out-dir /tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.ruvRE753uN/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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.ruvRE753uN/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 230s warning: unstable feature specified for `-Ctarget-feature`: `backchain` 230s | 230s = note: this feature is not stably supported; its behavior can change in the future 230s 230s warning: `pin-project-lite` (lib) generated 1 warning 230s Compiling libc v0.2.169 230s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.ruvRE753uN/registry/libc-0.2.169 CARGO_MANIFEST_PATH=/tmp/tmp.ruvRE753uN/registry/libc-0.2.169/Cargo.toml CARGO_PKG_AUTHORS='The Rust Project Developers' CARGO_PKG_DESCRIPTION='Raw FFI bindings to platform libraries like libc. 230s ' CARGO_PKG_HOMEPAGE='https://github.com/rust-lang/libc' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=libc CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/libc' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=0.2.169 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=169 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.ruvRE753uN/target/debug/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.ruvRE753uN/registry/libc-0.2.169/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="extra_traits"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("align", "const-extern-fn", "default", "extra_traits", "rustc-dep-of-std", "rustc-std-workspace-core", "std", "use_std"))' -C metadata=dc781cb7c1ee5a21 -C extra-filename=-dc781cb7c1ee5a21 --out-dir /tmp/tmp.ruvRE753uN/target/debug/build/libc-dc781cb7c1ee5a21 -L dependency=/tmp/tmp.ruvRE753uN/target/debug/deps --cap-lints warn` 231s 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.ruvRE753uN/registry/proc-macro2-1.0.92 CARGO_MANIFEST_PATH=/tmp/tmp.ruvRE753uN/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.ruvRE753uN/target/debug/deps:/tmp/tmp.ruvRE753uN/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.ruvRE753uN/target/debug/build/proc-macro2-b8c68c67c59c8657/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.ruvRE753uN/target/debug/build/proc-macro2-3832f39696f3f5db/build-script-build` 231s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(fuzzing) 231s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(no_is_available) 231s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(no_literal_byte_character) 231s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(no_literal_c_string) 231s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(no_source_text) 231s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(proc_macro_span) 231s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(procmacro2_backtrace) 231s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(procmacro2_nightly_testing) 231s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(procmacro2_semver_exempt) 231s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(randomize_layout) 231s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(span_locations) 231s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(super_unstable) 231s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(wrap_proc_macro) 231s [proc-macro2 1.0.92] cargo:rerun-if-changed=build/probe.rs 231s [proc-macro2 1.0.92] cargo:rustc-cfg=wrap_proc_macro 231s [proc-macro2 1.0.92] cargo:rerun-if-env-changed=RUSTC_BOOTSTRAP 231s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=proc_macro2 CARGO_MANIFEST_DIR=/tmp/tmp.ruvRE753uN/registry/proc-macro2-1.0.92 CARGO_MANIFEST_PATH=/tmp/tmp.ruvRE753uN/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.ruvRE753uN/target/debug/deps OUT_DIR=/tmp/tmp.ruvRE753uN/target/debug/build/proc-macro2-b8c68c67c59c8657/out rustc --crate-name proc_macro2 --edition=2021 /tmp/tmp.ruvRE753uN/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.ruvRE753uN/target/debug/deps -L dependency=/tmp/tmp.ruvRE753uN/target/debug/deps --extern unicode_ident=/tmp/tmp.ruvRE753uN/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)'` 231s Compiling crossbeam-utils v0.8.19 231s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.ruvRE753uN/registry/crossbeam-utils-0.8.19 CARGO_MANIFEST_PATH=/tmp/tmp.ruvRE753uN/registry/crossbeam-utils-0.8.19/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='Utilities for concurrent programming' CARGO_PKG_HOMEPAGE='https://github.com/crossbeam-rs/crossbeam/tree/master/crossbeam-utils' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=crossbeam-utils CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/crossbeam-rs/crossbeam' CARGO_PKG_RUST_VERSION=1.60 CARGO_PKG_VERSION=0.8.19 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=8 CARGO_PKG_VERSION_PATCH=19 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.ruvRE753uN/target/debug/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.ruvRE753uN/registry/crossbeam-utils-0.8.19/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "nightly", "std"))' -C metadata=481d5baddd087d3b -C extra-filename=-481d5baddd087d3b --out-dir /tmp/tmp.ruvRE753uN/target/debug/build/crossbeam-utils-481d5baddd087d3b -L dependency=/tmp/tmp.ruvRE753uN/target/debug/deps --cap-lints warn` 231s Compiling quote v1.0.37 231s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=quote CARGO_MANIFEST_DIR=/tmp/tmp.ruvRE753uN/registry/quote-1.0.37 CARGO_MANIFEST_PATH=/tmp/tmp.ruvRE753uN/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.ruvRE753uN/target/debug/deps rustc --crate-name quote --edition=2018 /tmp/tmp.ruvRE753uN/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.ruvRE753uN/target/debug/deps -L dependency=/tmp/tmp.ruvRE753uN/target/debug/deps --extern proc_macro2=/tmp/tmp.ruvRE753uN/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rmeta --cap-lints warn` 231s Compiling syn v2.0.96 231s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=syn CARGO_MANIFEST_DIR=/tmp/tmp.ruvRE753uN/registry/syn-2.0.96 CARGO_MANIFEST_PATH=/tmp/tmp.ruvRE753uN/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.ruvRE753uN/target/debug/deps rustc --crate-name syn --edition=2021 /tmp/tmp.ruvRE753uN/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="fold"' --cfg 'feature="full"' --cfg 'feature="parsing"' --cfg 'feature="printing"' --cfg 'feature="proc-macro"' --cfg 'feature="visit-mut"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("clone-impls", "default", "derive", "extra-traits", "fold", "full", "parsing", "printing", "proc-macro", "visit", "visit-mut"))' -C metadata=0167beed9e699402 -C extra-filename=-0167beed9e699402 --out-dir /tmp/tmp.ruvRE753uN/target/debug/deps -L dependency=/tmp/tmp.ruvRE753uN/target/debug/deps --extern proc_macro2=/tmp/tmp.ruvRE753uN/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rmeta --extern quote=/tmp/tmp.ruvRE753uN/target/debug/deps/libquote-dc92c6f25ee0f0c6.rmeta --extern unicode_ident=/tmp/tmp.ruvRE753uN/target/debug/deps/libunicode_ident-5d182fe9243248fe.rmeta --cap-lints warn` 231s 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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0--remap-path-prefix/tmp/tmp.ruvRE753uN/registry=/usr/share/cargo/registry-Ctarget-feature=+backchain' CARGO_MANIFEST_DIR=/tmp/tmp.ruvRE753uN/registry/crossbeam-utils-0.8.19 CARGO_MANIFEST_PATH=/tmp/tmp.ruvRE753uN/registry/crossbeam-utils-0.8.19/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='Utilities for concurrent programming' CARGO_PKG_HOMEPAGE='https://github.com/crossbeam-rs/crossbeam/tree/master/crossbeam-utils' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=crossbeam-utils CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/crossbeam-rs/crossbeam' CARGO_PKG_RUST_VERSION=1.60 CARGO_PKG_VERSION=0.8.19 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=8 CARGO_PKG_VERSION_PATCH=19 CARGO_PKG_VERSION_PRE='' DEBUG=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.ruvRE753uN/target/debug/deps:/tmp/tmp.ruvRE753uN/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/build/crossbeam-utils-41ced09745ce2d1e/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.ruvRE753uN/target/debug/build/crossbeam-utils-481d5baddd087d3b/build-script-build` 231s [crossbeam-utils 0.8.19] cargo:rerun-if-changed=no_atomic.rs 231s 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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0--remap-path-prefix/tmp/tmp.ruvRE753uN/registry=/usr/share/cargo/registry-Ctarget-feature=+backchain' CARGO_FEATURE_DEFAULT=1 CARGO_FEATURE_EXTRA_TRAITS=1 CARGO_FEATURE_STD=1 CARGO_MANIFEST_DIR=/tmp/tmp.ruvRE753uN/registry/libc-0.2.169 CARGO_MANIFEST_PATH=/tmp/tmp.ruvRE753uN/registry/libc-0.2.169/Cargo.toml CARGO_PKG_AUTHORS='The Rust Project Developers' CARGO_PKG_DESCRIPTION='Raw FFI bindings to platform libraries like libc. 231s ' CARGO_PKG_HOMEPAGE='https://github.com/rust-lang/libc' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=libc CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/libc' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=0.2.169 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=169 CARGO_PKG_VERSION_PRE='' DEBUG=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.ruvRE753uN/target/debug/deps:/tmp/tmp.ruvRE753uN/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/build/libc-bd02b9c7a9cce7ac/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.ruvRE753uN/target/debug/build/libc-dc781cb7c1ee5a21/build-script-build` 231s [libc 0.2.169] cargo:rerun-if-changed=build.rs 231s [libc 0.2.169] cargo:rerun-if-env-changed=RUST_LIBC_UNSTABLE_FREEBSD_VERSION 231s [libc 0.2.169] cargo:rustc-cfg=freebsd11 231s [libc 0.2.169] cargo:rustc-cfg=libc_const_extern_fn 231s [libc 0.2.169] cargo:rustc-check-cfg=cfg(emscripten_new_stat_abi) 231s [libc 0.2.169] cargo:rustc-check-cfg=cfg(espidf_time32) 231s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd10) 231s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd11) 231s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd12) 231s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd13) 231s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd14) 231s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd15) 231s [libc 0.2.169] cargo:rustc-check-cfg=cfg(gnu_time64_abi) 231s [libc 0.2.169] cargo:rustc-check-cfg=cfg(libc_const_extern_fn) 231s [libc 0.2.169] cargo:rustc-check-cfg=cfg(libc_deny_warnings) 231s [libc 0.2.169] cargo:rustc-check-cfg=cfg(libc_thread_local) 231s [libc 0.2.169] cargo:rustc-check-cfg=cfg(libc_ctest) 231s [libc 0.2.169] cargo:rustc-check-cfg=cfg(target_os,values("switch","aix","ohos","hurd","rtems","visionos","nuttx")) 231s [libc 0.2.169] cargo:rustc-check-cfg=cfg(target_env,values("illumos","wasi","aix","ohos")) 231s [libc 0.2.169] cargo:rustc-check-cfg=cfg(target_arch,values("loongarch64","mips32r6","mips64r6","csky")) 231s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=libc CARGO_MANIFEST_DIR=/tmp/tmp.ruvRE753uN/registry/libc-0.2.169 CARGO_MANIFEST_PATH=/tmp/tmp.ruvRE753uN/registry/libc-0.2.169/Cargo.toml CARGO_PKG_AUTHORS='The Rust Project Developers' CARGO_PKG_DESCRIPTION='Raw FFI bindings to platform libraries like libc. 231s ' CARGO_PKG_HOMEPAGE='https://github.com/rust-lang/libc' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=libc CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/libc' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=0.2.169 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=169 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.ruvRE753uN/target/debug/deps OUT_DIR=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/build/libc-bd02b9c7a9cce7ac/out rustc --crate-name libc --edition=2021 /tmp/tmp.ruvRE753uN/registry/libc-0.2.169/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="extra_traits"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("align", "const-extern-fn", "default", "extra_traits", "rustc-dep-of-std", "rustc-std-workspace-core", "std", "use_std"))' -C metadata=cf2521928ac070dc -C extra-filename=-cf2521928ac070dc --out-dir /tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.ruvRE753uN/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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.ruvRE753uN/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain --cfg freebsd11 --cfg libc_const_extern_fn --check-cfg 'cfg(emscripten_new_stat_abi)' --check-cfg 'cfg(espidf_time32)' --check-cfg 'cfg(freebsd10)' --check-cfg 'cfg(freebsd11)' --check-cfg 'cfg(freebsd12)' --check-cfg 'cfg(freebsd13)' --check-cfg 'cfg(freebsd14)' --check-cfg 'cfg(freebsd15)' --check-cfg 'cfg(gnu_time64_abi)' --check-cfg 'cfg(libc_const_extern_fn)' --check-cfg 'cfg(libc_deny_warnings)' --check-cfg 'cfg(libc_thread_local)' --check-cfg 'cfg(libc_ctest)' --check-cfg 'cfg(target_os,values("switch","aix","ohos","hurd","rtems","visionos","nuttx"))' --check-cfg 'cfg(target_env,values("illumos","wasi","aix","ohos"))' --check-cfg 'cfg(target_arch,values("loongarch64","mips32r6","mips64r6","csky"))'` 232s warning: unused import: `crate::ntptimeval` 232s --> /usr/share/cargo/registry/libc-0.2.169/src/unix/linux_like/linux/gnu/b64/mod.rs:5:5 232s | 232s 5 | use crate::ntptimeval; 232s | ^^^^^^^^^^^^^^^^^ 232s | 232s = note: `#[warn(unused_imports)]` on by default 232s 233s warning: `libc` (lib) generated 2 warnings (1 duplicate) 233s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=crossbeam_utils CARGO_MANIFEST_DIR=/tmp/tmp.ruvRE753uN/registry/crossbeam-utils-0.8.19 CARGO_MANIFEST_PATH=/tmp/tmp.ruvRE753uN/registry/crossbeam-utils-0.8.19/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='Utilities for concurrent programming' CARGO_PKG_HOMEPAGE='https://github.com/crossbeam-rs/crossbeam/tree/master/crossbeam-utils' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=crossbeam-utils CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/crossbeam-rs/crossbeam' CARGO_PKG_RUST_VERSION=1.60 CARGO_PKG_VERSION=0.8.19 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=8 CARGO_PKG_VERSION_PATCH=19 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.ruvRE753uN/target/debug/deps OUT_DIR=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/build/crossbeam-utils-41ced09745ce2d1e/out rustc --crate-name crossbeam_utils --edition=2021 /tmp/tmp.ruvRE753uN/registry/crossbeam-utils-0.8.19/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "nightly", "std"))' -C metadata=bcaf20eecaf4c1fc -C extra-filename=-bcaf20eecaf4c1fc --out-dir /tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.ruvRE753uN/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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.ruvRE753uN/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 233s warning: unexpected `cfg` condition name: `crossbeam_loom` 233s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/lib.rs:42:7 233s | 233s 42 | #[cfg(crossbeam_loom)] 233s | ^^^^^^^^^^^^^^ 233s | 233s = help: expected names are: `clippy`, `debug_assertions`, `doc`, `docsrs`, `doctest`, `feature`, `fmt_debug`, `miri`, `overflow_checks`, `panic`, `proc_macro`, `relocation_model`, `rustfmt`, `sanitize`, `sanitizer_cfi_generalize_pointers`, `sanitizer_cfi_normalize_integers`, `target_abi`, `target_arch`, `target_endian`, `target_env`, `target_family`, `target_feature`, `target_has_atomic`, `target_has_atomic_equal_alignment`, `target_has_atomic_load_store`, `target_os`, `target_pointer_width`, `target_thread_local`, `target_vendor`, `test`, `ub_checks`, `unix`, and `windows` 233s = help: consider using a Cargo feature instead 233s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 233s [lints.rust] 233s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 233s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 233s = note: see for more information about checking conditional configuration 233s = note: `#[warn(unexpected_cfgs)]` on by default 233s 233s warning: unexpected `cfg` condition name: `crossbeam_loom` 233s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/lib.rs:65:11 233s | 233s 65 | #[cfg(not(crossbeam_loom))] 233s | ^^^^^^^^^^^^^^ 233s | 233s = help: consider using a Cargo feature instead 233s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 233s [lints.rust] 233s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 233s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 233s = note: see for more information about checking conditional configuration 233s 233s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 233s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/lib.rs:74:23 233s | 233s 74 | #[cfg(not(crossbeam_no_atomic))] 233s | ^^^^^^^^^^^^^^^^^^^ 233s | 233s = help: consider using a Cargo feature instead 233s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 233s [lints.rust] 233s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 233s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 233s = note: see for more information about checking conditional configuration 233s 233s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 233s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/lib.rs:78:23 233s | 233s 78 | #[cfg(not(crossbeam_no_atomic))] 233s | ^^^^^^^^^^^^^^^^^^^ 233s | 233s = help: consider using a Cargo feature instead 233s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 233s [lints.rust] 233s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 233s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 233s = note: see for more information about checking conditional configuration 233s 233s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 233s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/lib.rs:81:23 233s | 233s 81 | #[cfg(not(crossbeam_no_atomic))] 233s | ^^^^^^^^^^^^^^^^^^^ 233s | 233s = help: consider using a Cargo feature instead 233s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 233s [lints.rust] 233s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 233s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 233s = note: see for more information about checking conditional configuration 233s 233s warning: unexpected `cfg` condition name: `crossbeam_loom` 233s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/mod.rs:7:11 233s | 233s 7 | #[cfg(not(crossbeam_loom))] 233s | ^^^^^^^^^^^^^^ 233s | 233s = help: consider using a Cargo feature instead 233s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 233s [lints.rust] 233s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 233s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 233s = note: see for more information about checking conditional configuration 233s 233s warning: unexpected `cfg` condition name: `crossbeam_loom` 233s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/mod.rs:25:11 233s | 233s 25 | #[cfg(not(crossbeam_loom))] 233s | ^^^^^^^^^^^^^^ 233s | 233s = help: consider using a Cargo feature instead 233s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 233s [lints.rust] 233s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 233s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 233s = note: see for more information about checking conditional configuration 233s 233s warning: unexpected `cfg` condition name: `crossbeam_loom` 233s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/mod.rs:28:11 233s | 233s 28 | #[cfg(not(crossbeam_loom))] 233s | ^^^^^^^^^^^^^^ 233s | 233s = help: consider using a Cargo feature instead 233s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 233s [lints.rust] 233s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 233s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 233s = note: see for more information about checking conditional configuration 233s 233s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 233s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:1:11 233s | 233s 1 | #[cfg(not(crossbeam_no_atomic))] 233s | ^^^^^^^^^^^^^^^^^^^ 233s | 233s = help: consider using a Cargo feature instead 233s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 233s [lints.rust] 233s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 233s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 233s = note: see for more information about checking conditional configuration 233s 233s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 233s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:27:11 233s | 233s 27 | #[cfg(not(crossbeam_no_atomic))] 233s | ^^^^^^^^^^^^^^^^^^^ 233s | 233s = help: consider using a Cargo feature instead 233s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 233s [lints.rust] 233s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 233s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 233s = note: see for more information about checking conditional configuration 233s 233s warning: unexpected `cfg` condition name: `crossbeam_loom` 233s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:36:19 233s | 233s 36 | not(any(miri, crossbeam_loom, crossbeam_sanitize_thread)), 233s | ^^^^^^^^^^^^^^ 233s | 233s = help: consider using a Cargo feature instead 233s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 233s [lints.rust] 233s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 233s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 233s = note: see for more information about checking conditional configuration 233s 233s warning: unexpected `cfg` condition name: `crossbeam_sanitize_thread` 233s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:36:35 233s | 233s 36 | not(any(miri, crossbeam_loom, crossbeam_sanitize_thread)), 233s | ^^^^^^^^^^^^^^^^^^^^^^^^^ 233s | 233s = help: consider using a Cargo feature instead 233s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 233s [lints.rust] 233s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_sanitize_thread)'] } 233s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_sanitize_thread)");` to the top of the `build.rs` 233s = note: see for more information about checking conditional configuration 233s 233s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 233s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:50:11 233s | 233s 50 | #[cfg(not(crossbeam_no_atomic))] 233s | ^^^^^^^^^^^^^^^^^^^ 233s | 233s = help: consider using a Cargo feature instead 233s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 233s [lints.rust] 233s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 233s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 233s = note: see for more information about checking conditional configuration 233s 233s warning: unexpected `cfg` condition name: `crossbeam_loom` 233s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:53:19 233s | 233s 53 | not(any(miri, crossbeam_loom, crossbeam_sanitize_thread)), 233s | ^^^^^^^^^^^^^^ 233s | 233s = help: consider using a Cargo feature instead 233s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 233s [lints.rust] 233s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 233s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 233s = note: see for more information about checking conditional configuration 233s 233s warning: unexpected `cfg` condition name: `crossbeam_sanitize_thread` 233s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:53:35 233s | 233s 53 | not(any(miri, crossbeam_loom, crossbeam_sanitize_thread)), 233s | ^^^^^^^^^^^^^^^^^^^^^^^^^ 233s | 233s = help: consider using a Cargo feature instead 233s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 233s [lints.rust] 233s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_sanitize_thread)'] } 233s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_sanitize_thread)");` to the top of the `build.rs` 233s = note: see for more information about checking conditional configuration 233s 233s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 233s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:101:11 233s | 233s 101 | #[cfg(not(crossbeam_no_atomic))] 233s | ^^^^^^^^^^^^^^^^^^^ 233s | 233s = help: consider using a Cargo feature instead 233s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 233s [lints.rust] 233s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 233s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 233s = note: see for more information about checking conditional configuration 233s 233s warning: unexpected `cfg` condition name: `crossbeam_loom` 233s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:107:7 233s | 233s 107 | #[cfg(crossbeam_loom)] 233s | ^^^^^^^^^^^^^^ 233s | 233s = help: consider using a Cargo feature instead 233s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 233s [lints.rust] 233s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 233s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 233s = note: see for more information about checking conditional configuration 233s 233s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 233s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:66:19 233s | 233s 66 | #[cfg(not(crossbeam_no_atomic))] 233s | ^^^^^^^^^^^^^^^^^^^ 233s ... 233s 79 | impl_atomic!(AtomicBool, bool); 233s | ------------------------------ in this macro invocation 233s | 233s = help: consider using a Cargo feature instead 233s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 233s [lints.rust] 233s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 233s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 233s = note: see for more information about checking conditional configuration 233s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 233s 233s warning: unexpected `cfg` condition name: `crossbeam_loom` 233s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:71:15 233s | 233s 71 | #[cfg(crossbeam_loom)] 233s | ^^^^^^^^^^^^^^ 233s ... 233s 79 | impl_atomic!(AtomicBool, bool); 233s | ------------------------------ in this macro invocation 233s | 233s = help: consider using a Cargo feature instead 233s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 233s [lints.rust] 233s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 233s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 233s = note: see for more information about checking conditional configuration 233s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 233s 233s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 233s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:66:19 233s | 233s 66 | #[cfg(not(crossbeam_no_atomic))] 233s | ^^^^^^^^^^^^^^^^^^^ 233s ... 233s 80 | impl_atomic!(AtomicUsize, usize); 233s | -------------------------------- in this macro invocation 233s | 233s = help: consider using a Cargo feature instead 233s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 233s [lints.rust] 233s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 233s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 233s = note: see for more information about checking conditional configuration 233s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 233s 233s warning: unexpected `cfg` condition name: `crossbeam_loom` 233s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:71:15 233s | 233s 71 | #[cfg(crossbeam_loom)] 233s | ^^^^^^^^^^^^^^ 233s ... 233s 80 | impl_atomic!(AtomicUsize, usize); 233s | -------------------------------- in this macro invocation 233s | 233s = help: consider using a Cargo feature instead 233s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 233s [lints.rust] 233s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 233s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 233s = note: see for more information about checking conditional configuration 233s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 233s 233s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 233s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:66:19 233s | 233s 66 | #[cfg(not(crossbeam_no_atomic))] 233s | ^^^^^^^^^^^^^^^^^^^ 233s ... 233s 81 | impl_atomic!(AtomicIsize, isize); 233s | -------------------------------- in this macro invocation 233s | 233s = help: consider using a Cargo feature instead 233s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 233s [lints.rust] 233s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 233s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 233s = note: see for more information about checking conditional configuration 233s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 233s 233s warning: unexpected `cfg` condition name: `crossbeam_loom` 233s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:71:15 233s | 233s 71 | #[cfg(crossbeam_loom)] 233s | ^^^^^^^^^^^^^^ 233s ... 233s 81 | impl_atomic!(AtomicIsize, isize); 233s | -------------------------------- in this macro invocation 233s | 233s = help: consider using a Cargo feature instead 233s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 233s [lints.rust] 233s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 233s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 233s = note: see for more information about checking conditional configuration 233s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 233s 233s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 233s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:66:19 233s | 233s 66 | #[cfg(not(crossbeam_no_atomic))] 233s | ^^^^^^^^^^^^^^^^^^^ 233s ... 233s 82 | impl_atomic!(AtomicU8, u8); 233s | -------------------------- in this macro invocation 233s | 233s = help: consider using a Cargo feature instead 233s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 233s [lints.rust] 233s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 233s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 233s = note: see for more information about checking conditional configuration 233s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 233s 233s warning: unexpected `cfg` condition name: `crossbeam_loom` 233s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:71:15 233s | 233s 71 | #[cfg(crossbeam_loom)] 233s | ^^^^^^^^^^^^^^ 233s ... 233s 82 | impl_atomic!(AtomicU8, u8); 233s | -------------------------- in this macro invocation 233s | 233s = help: consider using a Cargo feature instead 233s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 233s [lints.rust] 233s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 233s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 233s = note: see for more information about checking conditional configuration 233s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 233s 233s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 233s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:66:19 233s | 233s 66 | #[cfg(not(crossbeam_no_atomic))] 233s | ^^^^^^^^^^^^^^^^^^^ 233s ... 233s 83 | impl_atomic!(AtomicI8, i8); 233s | -------------------------- in this macro invocation 233s | 233s = help: consider using a Cargo feature instead 233s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 233s [lints.rust] 233s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 233s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 233s = note: see for more information about checking conditional configuration 233s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 233s 233s warning: unexpected `cfg` condition name: `crossbeam_loom` 233s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:71:15 233s | 233s 71 | #[cfg(crossbeam_loom)] 233s | ^^^^^^^^^^^^^^ 233s ... 233s 83 | impl_atomic!(AtomicI8, i8); 233s | -------------------------- in this macro invocation 233s | 233s = help: consider using a Cargo feature instead 233s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 233s [lints.rust] 233s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 233s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 233s = note: see for more information about checking conditional configuration 233s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 233s 233s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 233s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:66:19 233s | 233s 66 | #[cfg(not(crossbeam_no_atomic))] 233s | ^^^^^^^^^^^^^^^^^^^ 233s ... 233s 84 | impl_atomic!(AtomicU16, u16); 233s | ---------------------------- in this macro invocation 233s | 233s = help: consider using a Cargo feature instead 233s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 233s [lints.rust] 233s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 233s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 233s = note: see for more information about checking conditional configuration 233s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 233s 233s warning: unexpected `cfg` condition name: `crossbeam_loom` 233s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:71:15 233s | 233s 71 | #[cfg(crossbeam_loom)] 233s | ^^^^^^^^^^^^^^ 233s ... 233s 84 | impl_atomic!(AtomicU16, u16); 233s | ---------------------------- in this macro invocation 233s | 233s = help: consider using a Cargo feature instead 233s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 233s [lints.rust] 233s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 233s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 233s = note: see for more information about checking conditional configuration 233s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 233s 233s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 233s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:66:19 233s | 233s 66 | #[cfg(not(crossbeam_no_atomic))] 233s | ^^^^^^^^^^^^^^^^^^^ 233s ... 233s 85 | impl_atomic!(AtomicI16, i16); 233s | ---------------------------- in this macro invocation 233s | 233s = help: consider using a Cargo feature instead 233s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 233s [lints.rust] 233s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 233s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 233s = note: see for more information about checking conditional configuration 233s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 233s 233s warning: unexpected `cfg` condition name: `crossbeam_loom` 233s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:71:15 233s | 233s 71 | #[cfg(crossbeam_loom)] 233s | ^^^^^^^^^^^^^^ 233s ... 233s 85 | impl_atomic!(AtomicI16, i16); 233s | ---------------------------- in this macro invocation 233s | 233s = help: consider using a Cargo feature instead 233s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 233s [lints.rust] 233s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 233s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 233s = note: see for more information about checking conditional configuration 233s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 233s 233s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 233s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:66:19 233s | 233s 66 | #[cfg(not(crossbeam_no_atomic))] 233s | ^^^^^^^^^^^^^^^^^^^ 233s ... 233s 87 | impl_atomic!(AtomicU32, u32); 233s | ---------------------------- in this macro invocation 233s | 233s = help: consider using a Cargo feature instead 233s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 233s [lints.rust] 233s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 233s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 233s = note: see for more information about checking conditional configuration 233s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 233s 233s warning: unexpected `cfg` condition name: `crossbeam_loom` 233s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:71:15 233s | 233s 71 | #[cfg(crossbeam_loom)] 233s | ^^^^^^^^^^^^^^ 233s ... 233s 87 | impl_atomic!(AtomicU32, u32); 233s | ---------------------------- in this macro invocation 233s | 233s = help: consider using a Cargo feature instead 233s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 233s [lints.rust] 233s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 233s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 233s = note: see for more information about checking conditional configuration 233s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 233s 233s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 233s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:66:19 233s | 233s 66 | #[cfg(not(crossbeam_no_atomic))] 233s | ^^^^^^^^^^^^^^^^^^^ 233s ... 233s 89 | impl_atomic!(AtomicI32, i32); 233s | ---------------------------- in this macro invocation 233s | 233s = help: consider using a Cargo feature instead 233s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 233s [lints.rust] 233s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 233s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 233s = note: see for more information about checking conditional configuration 233s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 233s 233s warning: unexpected `cfg` condition name: `crossbeam_loom` 233s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:71:15 233s | 233s 71 | #[cfg(crossbeam_loom)] 233s | ^^^^^^^^^^^^^^ 233s ... 233s 89 | impl_atomic!(AtomicI32, i32); 233s | ---------------------------- in this macro invocation 233s | 233s = help: consider using a Cargo feature instead 233s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 233s [lints.rust] 233s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 233s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 233s = note: see for more information about checking conditional configuration 233s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 233s 233s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 233s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:66:19 233s | 233s 66 | #[cfg(not(crossbeam_no_atomic))] 233s | ^^^^^^^^^^^^^^^^^^^ 233s ... 233s 94 | impl_atomic!(AtomicU64, u64); 233s | ---------------------------- in this macro invocation 233s | 233s = help: consider using a Cargo feature instead 233s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 233s [lints.rust] 233s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 233s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 233s = note: see for more information about checking conditional configuration 233s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 233s 233s warning: unexpected `cfg` condition name: `crossbeam_loom` 233s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:71:15 233s | 233s 71 | #[cfg(crossbeam_loom)] 233s | ^^^^^^^^^^^^^^ 233s ... 233s 94 | impl_atomic!(AtomicU64, u64); 233s | ---------------------------- in this macro invocation 233s | 233s = help: consider using a Cargo feature instead 233s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 233s [lints.rust] 233s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 233s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 233s = note: see for more information about checking conditional configuration 233s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 233s 233s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 233s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:66:19 233s | 233s 66 | #[cfg(not(crossbeam_no_atomic))] 233s | ^^^^^^^^^^^^^^^^^^^ 233s ... 233s 99 | impl_atomic!(AtomicI64, i64); 233s | ---------------------------- in this macro invocation 233s | 233s = help: consider using a Cargo feature instead 233s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 233s [lints.rust] 233s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 233s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 233s = note: see for more information about checking conditional configuration 233s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 233s 233s warning: unexpected `cfg` condition name: `crossbeam_loom` 233s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:71:15 233s | 233s 71 | #[cfg(crossbeam_loom)] 233s | ^^^^^^^^^^^^^^ 233s ... 233s 99 | impl_atomic!(AtomicI64, i64); 233s | ---------------------------- in this macro invocation 233s | 233s = help: consider using a Cargo feature instead 233s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 233s [lints.rust] 233s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 233s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 233s = note: see for more information about checking conditional configuration 233s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 233s 233s warning: `crossbeam-utils` (lib) generated 40 warnings (1 duplicate) 233s Compiling parking v2.2.0 233s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=parking CARGO_MANIFEST_DIR=/tmp/tmp.ruvRE753uN/registry/parking-2.2.0 CARGO_MANIFEST_PATH=/tmp/tmp.ruvRE753uN/registry/parking-2.2.0/Cargo.toml CARGO_PKG_AUTHORS='Stjepan Glavina :The Rust Project Developers' CARGO_PKG_DESCRIPTION='Thread parking and unparking' CARGO_PKG_HOMEPAGE='https://github.com/smol-rs/parking' CARGO_PKG_LICENSE='Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=parking CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/smol-rs/parking' CARGO_PKG_RUST_VERSION=1.51 CARGO_PKG_VERSION=2.2.0 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.ruvRE753uN/target/debug/deps rustc --crate-name parking --edition=2018 /tmp/tmp.ruvRE753uN/registry/parking-2.2.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=0a38dc17b1bc33e2 -C extra-filename=-0a38dc17b1bc33e2 --out-dir /tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.ruvRE753uN/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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.ruvRE753uN/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 233s warning: unexpected `cfg` condition name: `loom` 233s --> /usr/share/cargo/registry/parking-2.2.0/src/lib.rs:41:15 233s | 233s 41 | #[cfg(not(all(loom, feature = "loom")))] 233s | ^^^^ 233s | 233s = help: expected names are: `clippy`, `debug_assertions`, `doc`, `docsrs`, `doctest`, `feature`, `fmt_debug`, `miri`, `overflow_checks`, `panic`, `proc_macro`, `relocation_model`, `rustfmt`, `sanitize`, `sanitizer_cfi_generalize_pointers`, `sanitizer_cfi_normalize_integers`, `target_abi`, `target_arch`, `target_endian`, `target_env`, `target_family`, `target_feature`, `target_has_atomic`, `target_has_atomic_equal_alignment`, `target_has_atomic_load_store`, `target_os`, `target_pointer_width`, `target_thread_local`, `target_vendor`, `test`, `ub_checks`, `unix`, and `windows` 233s = help: consider using a Cargo feature instead 233s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 233s [lints.rust] 233s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(loom)'] } 233s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(loom)");` to the top of the `build.rs` 233s = note: see for more information about checking conditional configuration 233s = note: `#[warn(unexpected_cfgs)]` on by default 233s 233s warning: unexpected `cfg` condition value: `loom` 233s --> /usr/share/cargo/registry/parking-2.2.0/src/lib.rs:41:21 233s | 233s 41 | #[cfg(not(all(loom, feature = "loom")))] 233s | ^^^^^^^^^^^^^^^^ help: remove the condition 233s | 233s = note: no expected values for `feature` 233s = help: consider adding `loom` as a feature in `Cargo.toml` 233s = note: see for more information about checking conditional configuration 233s 233s warning: unexpected `cfg` condition name: `loom` 233s --> /usr/share/cargo/registry/parking-2.2.0/src/lib.rs:44:11 233s | 233s 44 | #[cfg(all(loom, feature = "loom"))] 233s | ^^^^ 233s | 233s = help: consider using a Cargo feature instead 233s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 233s [lints.rust] 233s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(loom)'] } 233s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(loom)");` to the top of the `build.rs` 233s = note: see for more information about checking conditional configuration 233s 233s warning: unexpected `cfg` condition value: `loom` 233s --> /usr/share/cargo/registry/parking-2.2.0/src/lib.rs:44:17 233s | 233s 44 | #[cfg(all(loom, feature = "loom"))] 233s | ^^^^^^^^^^^^^^^^ help: remove the condition 233s | 233s = note: no expected values for `feature` 233s = help: consider adding `loom` as a feature in `Cargo.toml` 233s = note: see for more information about checking conditional configuration 233s 233s warning: unexpected `cfg` condition name: `loom` 233s --> /usr/share/cargo/registry/parking-2.2.0/src/lib.rs:54:15 233s | 233s 54 | #[cfg(not(all(loom, feature = "loom")))] 233s | ^^^^ 233s | 233s = help: consider using a Cargo feature instead 233s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 233s [lints.rust] 233s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(loom)'] } 233s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(loom)");` to the top of the `build.rs` 233s = note: see for more information about checking conditional configuration 233s 233s warning: unexpected `cfg` condition value: `loom` 233s --> /usr/share/cargo/registry/parking-2.2.0/src/lib.rs:54:21 233s | 233s 54 | #[cfg(not(all(loom, feature = "loom")))] 233s | ^^^^^^^^^^^^^^^^ help: remove the condition 233s | 233s = note: no expected values for `feature` 233s = help: consider adding `loom` as a feature in `Cargo.toml` 233s = note: see for more information about checking conditional configuration 233s 233s warning: unexpected `cfg` condition name: `loom` 233s --> /usr/share/cargo/registry/parking-2.2.0/src/lib.rs:140:15 233s | 233s 140 | #[cfg(not(loom))] 233s | ^^^^ 233s | 233s = help: consider using a Cargo feature instead 233s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 233s [lints.rust] 233s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(loom)'] } 233s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(loom)");` to the top of the `build.rs` 233s = note: see for more information about checking conditional configuration 233s 233s warning: unexpected `cfg` condition name: `loom` 233s --> /usr/share/cargo/registry/parking-2.2.0/src/lib.rs:160:15 233s | 233s 160 | #[cfg(not(loom))] 233s | ^^^^ 233s | 233s = help: consider using a Cargo feature instead 233s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 233s [lints.rust] 233s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(loom)'] } 233s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(loom)");` to the top of the `build.rs` 233s = note: see for more information about checking conditional configuration 233s 233s warning: unexpected `cfg` condition name: `loom` 233s --> /usr/share/cargo/registry/parking-2.2.0/src/lib.rs:379:27 233s | 233s 379 | #[cfg(not(loom))] 233s | ^^^^ 233s | 233s = help: consider using a Cargo feature instead 233s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 233s [lints.rust] 233s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(loom)'] } 233s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(loom)");` to the top of the `build.rs` 233s = note: see for more information about checking conditional configuration 233s 233s warning: unexpected `cfg` condition name: `loom` 233s --> /usr/share/cargo/registry/parking-2.2.0/src/lib.rs:393:23 233s | 233s 393 | #[cfg(loom)] 233s | ^^^^ 233s | 233s = help: consider using a Cargo feature instead 233s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 233s [lints.rust] 233s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(loom)'] } 233s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(loom)");` to the top of the `build.rs` 233s = note: see for more information about checking conditional configuration 233s 233s warning: `parking` (lib) generated 11 warnings (1 duplicate) 233s Compiling futures-core v0.3.31 233s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=futures_core CARGO_MANIFEST_DIR=/tmp/tmp.ruvRE753uN/registry/futures-core-0.3.31 CARGO_MANIFEST_PATH=/tmp/tmp.ruvRE753uN/registry/futures-core-0.3.31/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='The core traits and types in for the `futures` library. 233s ' CARGO_PKG_HOMEPAGE='https://rust-lang.github.io/futures-rs' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=futures-core CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/futures-rs' CARGO_PKG_RUST_VERSION=1.36 CARGO_PKG_VERSION=0.3.31 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=31 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.ruvRE753uN/target/debug/deps rustc --crate-name futures_core --edition=2018 /tmp/tmp.ruvRE753uN/registry/futures-core-0.3.31/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --warn=unreachable_pub --warn=unexpected_cfgs --warn=single_use_lifetimes --warn=rust_2018_idioms --warn=missing_debug_implementations --check-cfg 'cfg(futures_sanitizer)' --cfg 'feature="alloc"' --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "cfg-target-has-atomic", "default", "portable-atomic", "std", "unstable"))' -C metadata=8d305950da6bf5c8 -C extra-filename=-8d305950da6bf5c8 --out-dir /tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.ruvRE753uN/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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.ruvRE753uN/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 233s warning: `futures-core` (lib) generated 1 warning (1 duplicate) 233s Compiling autocfg v1.1.0 233s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=autocfg CARGO_MANIFEST_DIR=/tmp/tmp.ruvRE753uN/registry/autocfg-1.1.0 CARGO_MANIFEST_PATH=/tmp/tmp.ruvRE753uN/registry/autocfg-1.1.0/Cargo.toml CARGO_PKG_AUTHORS='Josh Stone ' CARGO_PKG_DESCRIPTION='Automatic cfg for Rust compiler features' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=autocfg CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/cuviper/autocfg' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=1.1.0 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.ruvRE753uN/target/debug/deps rustc --crate-name autocfg --edition=2015 /tmp/tmp.ruvRE753uN/registry/autocfg-1.1.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=9ebcd9511383083c -C extra-filename=-9ebcd9511383083c --out-dir /tmp/tmp.ruvRE753uN/target/debug/deps -L dependency=/tmp/tmp.ruvRE753uN/target/debug/deps --cap-lints warn` 233s Compiling concurrent-queue v2.5.0 233s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=concurrent_queue CARGO_MANIFEST_DIR=/tmp/tmp.ruvRE753uN/registry/concurrent-queue-2.5.0 CARGO_MANIFEST_PATH=/tmp/tmp.ruvRE753uN/registry/concurrent-queue-2.5.0/Cargo.toml CARGO_PKG_AUTHORS='Stjepan Glavina :Taiki Endo :John Nunley ' CARGO_PKG_DESCRIPTION='Concurrent multi-producer multi-consumer queue' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=concurrent-queue CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/smol-rs/concurrent-queue' CARGO_PKG_RUST_VERSION=1.60 CARGO_PKG_VERSION=2.5.0 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=5 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.ruvRE753uN/target/debug/deps rustc --crate-name concurrent_queue --edition=2021 /tmp/tmp.ruvRE753uN/registry/concurrent-queue-2.5.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "portable-atomic", "std"))' -C metadata=7e82393ecc7068db -C extra-filename=-7e82393ecc7068db --out-dir /tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.ruvRE753uN/target/debug/deps --extern crossbeam_utils=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps/libcrossbeam_utils-bcaf20eecaf4c1fc.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.ruvRE753uN/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 233s warning: unexpected `cfg` condition name: `loom` 233s --> /usr/share/cargo/registry/concurrent-queue-2.5.0/src/bounded.rs:209:23 233s | 233s 209 | #[cfg(loom)] 233s | ^^^^ 233s | 233s = help: expected names are: `clippy`, `debug_assertions`, `doc`, `docsrs`, `doctest`, `feature`, `fmt_debug`, `miri`, `overflow_checks`, `panic`, `proc_macro`, `relocation_model`, `rustfmt`, `sanitize`, `sanitizer_cfi_generalize_pointers`, `sanitizer_cfi_normalize_integers`, `target_abi`, `target_arch`, `target_endian`, `target_env`, `target_family`, `target_feature`, `target_has_atomic`, `target_has_atomic_equal_alignment`, `target_has_atomic_load_store`, `target_os`, `target_pointer_width`, `target_thread_local`, `target_vendor`, `test`, `ub_checks`, `unix`, and `windows` 233s = help: consider using a Cargo feature instead 233s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 233s [lints.rust] 233s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(loom)'] } 233s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(loom)");` to the top of the `build.rs` 233s = note: see for more information about checking conditional configuration 233s = note: `#[warn(unexpected_cfgs)]` on by default 233s 233s warning: unexpected `cfg` condition name: `loom` 233s --> /usr/share/cargo/registry/concurrent-queue-2.5.0/src/bounded.rs:281:23 233s | 233s 281 | #[cfg(loom)] 233s | ^^^^ 233s | 233s = help: consider using a Cargo feature instead 233s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 233s [lints.rust] 233s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(loom)'] } 233s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(loom)");` to the top of the `build.rs` 233s = note: see for more information about checking conditional configuration 233s 233s warning: unexpected `cfg` condition name: `loom` 233s --> /usr/share/cargo/registry/concurrent-queue-2.5.0/src/unbounded.rs:43:15 233s | 233s 43 | #[cfg(not(loom))] 233s | ^^^^ 233s | 233s = help: consider using a Cargo feature instead 233s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 233s [lints.rust] 233s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(loom)'] } 233s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(loom)");` to the top of the `build.rs` 233s = note: see for more information about checking conditional configuration 233s 233s warning: unexpected `cfg` condition name: `loom` 233s --> /usr/share/cargo/registry/concurrent-queue-2.5.0/src/unbounded.rs:49:15 233s | 233s 49 | #[cfg(not(loom))] 233s | ^^^^ 233s | 233s = help: consider using a Cargo feature instead 233s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 233s [lints.rust] 233s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(loom)'] } 233s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(loom)");` to the top of the `build.rs` 233s = note: see for more information about checking conditional configuration 233s 233s warning: unexpected `cfg` condition name: `loom` 233s --> /usr/share/cargo/registry/concurrent-queue-2.5.0/src/unbounded.rs:54:11 233s | 233s 54 | #[cfg(loom)] 233s | ^^^^ 233s | 233s = help: consider using a Cargo feature instead 233s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 233s [lints.rust] 233s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(loom)'] } 233s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(loom)");` to the top of the `build.rs` 233s = note: see for more information about checking conditional configuration 233s 233s warning: unexpected `cfg` condition name: `loom` 233s --> /usr/share/cargo/registry/concurrent-queue-2.5.0/src/unbounded.rs:153:29 233s | 233s 153 | const_if: #[cfg(not(loom))]; 233s | ^^^^ 233s | 233s = help: consider using a Cargo feature instead 233s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 233s [lints.rust] 233s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(loom)'] } 233s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(loom)");` to the top of the `build.rs` 233s = note: see for more information about checking conditional configuration 233s 233s warning: unexpected `cfg` condition name: `loom` 233s --> /usr/share/cargo/registry/concurrent-queue-2.5.0/src/sync.rs:3:44 233s | 233s 3 | #[cfg(all(feature = "portable-atomic", not(loom)))] 233s | ^^^^ 233s | 233s = help: consider using a Cargo feature instead 233s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 233s [lints.rust] 233s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(loom)'] } 233s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(loom)");` to the top of the `build.rs` 233s = note: see for more information about checking conditional configuration 233s 233s warning: unexpected `cfg` condition name: `loom` 233s --> /usr/share/cargo/registry/concurrent-queue-2.5.0/src/sync.rs:15:49 233s | 233s 15 | #[cfg(all(not(feature = "portable-atomic"), not(loom)))] 233s | ^^^^ 233s | 233s = help: consider using a Cargo feature instead 233s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 233s [lints.rust] 233s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(loom)'] } 233s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(loom)");` to the top of the `build.rs` 233s = note: see for more information about checking conditional configuration 233s 233s warning: unexpected `cfg` condition name: `loom` 233s --> /usr/share/cargo/registry/concurrent-queue-2.5.0/src/sync.rs:31:7 233s | 233s 31 | #[cfg(loom)] 233s | ^^^^ 233s | 233s = help: consider using a Cargo feature instead 233s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 233s [lints.rust] 233s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(loom)'] } 233s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(loom)");` to the top of the `build.rs` 233s = note: see for more information about checking conditional configuration 233s 233s warning: unexpected `cfg` condition name: `loom` 233s --> /usr/share/cargo/registry/concurrent-queue-2.5.0/src/sync.rs:57:7 233s | 233s 57 | #[cfg(loom)] 233s | ^^^^ 233s | 233s = help: consider using a Cargo feature instead 233s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 233s [lints.rust] 233s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(loom)'] } 233s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(loom)");` to the top of the `build.rs` 233s = note: see for more information about checking conditional configuration 233s 233s warning: unexpected `cfg` condition name: `loom` 233s --> /usr/share/cargo/registry/concurrent-queue-2.5.0/src/sync.rs:60:11 233s | 233s 60 | #[cfg(not(loom))] 233s | ^^^^ 233s | 233s = help: consider using a Cargo feature instead 233s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 233s [lints.rust] 233s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(loom)'] } 233s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(loom)");` to the top of the `build.rs` 233s = note: see for more information about checking conditional configuration 233s 233s warning: unexpected `cfg` condition name: `loom` 233s --> /usr/share/cargo/registry/concurrent-queue-2.5.0/src/lib.rs:153:29 233s | 233s 153 | const_if: #[cfg(not(loom))]; 233s | ^^^^ 233s | 233s = help: consider using a Cargo feature instead 233s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 233s [lints.rust] 233s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(loom)'] } 233s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(loom)");` to the top of the `build.rs` 233s = note: see for more information about checking conditional configuration 233s 233s warning: unexpected `cfg` condition name: `loom` 233s --> /usr/share/cargo/registry/concurrent-queue-2.5.0/src/lib.rs:633:80 233s | 233s 633 | #[cfg(all(any(target_arch = "x86", target_arch = "x86_64"), not(miri), not(loom)))] 233s | ^^^^ 233s | 233s = help: consider using a Cargo feature instead 233s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 233s [lints.rust] 233s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(loom)'] } 233s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(loom)");` to the top of the `build.rs` 233s = note: see for more information about checking conditional configuration 233s 234s warning: `concurrent-queue` (lib) generated 14 warnings (1 duplicate) 234s Compiling cfg-if v1.0.0 234s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=cfg_if CARGO_MANIFEST_DIR=/tmp/tmp.ruvRE753uN/registry/cfg-if-1.0.0 CARGO_MANIFEST_PATH=/tmp/tmp.ruvRE753uN/registry/cfg-if-1.0.0/Cargo.toml CARGO_PKG_AUTHORS='Alex Crichton ' CARGO_PKG_DESCRIPTION='A macro to ergonomically define an item depending on a large number of #[cfg] 234s parameters. Structured like an if-else chain, the first matching branch is the 234s item that gets emitted. 234s ' CARGO_PKG_HOMEPAGE='https://github.com/alexcrichton/cfg-if' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=cfg-if CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/alexcrichton/cfg-if' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=1.0.0 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.ruvRE753uN/target/debug/deps rustc --crate-name cfg_if --edition=2018 /tmp/tmp.ruvRE753uN/registry/cfg-if-1.0.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("core"))' -C metadata=ff3ff84a061de73f -C extra-filename=-ff3ff84a061de73f --out-dir /tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.ruvRE753uN/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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.ruvRE753uN/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 234s warning: `cfg-if` (lib) generated 1 warning (1 duplicate) 234s Compiling event-listener v5.4.0 234s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=event_listener CARGO_MANIFEST_DIR=/tmp/tmp.ruvRE753uN/registry/event-listener-5.4.0 CARGO_MANIFEST_PATH=/tmp/tmp.ruvRE753uN/registry/event-listener-5.4.0/Cargo.toml CARGO_PKG_AUTHORS='Stjepan Glavina :John Nunley ' CARGO_PKG_DESCRIPTION='Notify async tasks or threads' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=event-listener CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/smol-rs/event-listener' CARGO_PKG_RUST_VERSION=1.60 CARGO_PKG_VERSION=5.4.0 CARGO_PKG_VERSION_MAJOR=5 CARGO_PKG_VERSION_MINOR=4 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.ruvRE753uN/target/debug/deps rustc --crate-name event_listener --edition=2021 /tmp/tmp.ruvRE753uN/registry/event-listener-5.4.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --warn=unexpected_cfgs --check-cfg 'cfg(loom)' --cfg 'feature="default"' --cfg 'feature="parking"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("critical-section", "default", "parking", "std"))' -C metadata=4260d59234261e59 -C extra-filename=-4260d59234261e59 --out-dir /tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.ruvRE753uN/target/debug/deps --extern concurrent_queue=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps/libconcurrent_queue-7e82393ecc7068db.rmeta --extern parking=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps/libparking-0a38dc17b1bc33e2.rmeta --extern pin_project_lite=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps/libpin_project_lite-5dc815523e98d889.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.ruvRE753uN/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 234s warning: unexpected `cfg` condition value: `portable-atomic` 234s --> /usr/share/cargo/registry/event-listener-5.4.0/src/lib.rs:1362:15 234s | 234s 1362 | #[cfg(not(feature = "portable-atomic"))] 234s | ^^^^^^^^^^^^^^^^^^^^^^^^^^^ 234s | 234s = note: expected values for `feature` are: `critical-section`, `default`, `parking`, and `std` 234s = help: consider adding `portable-atomic` as a feature in `Cargo.toml` 234s = note: see for more information about checking conditional configuration 234s = note: requested on the command line with `-W unexpected-cfgs` 234s 234s warning: unexpected `cfg` condition value: `portable-atomic` 234s --> /usr/share/cargo/registry/event-listener-5.4.0/src/lib.rs:1364:15 234s | 234s 1364 | #[cfg(not(feature = "portable-atomic"))] 234s | ^^^^^^^^^^^^^^^^^^^^^^^^^^^ 234s | 234s = note: expected values for `feature` are: `critical-section`, `default`, `parking`, and `std` 234s = help: consider adding `portable-atomic` as a feature in `Cargo.toml` 234s = note: see for more information about checking conditional configuration 234s 234s warning: unexpected `cfg` condition value: `portable-atomic` 234s --> /usr/share/cargo/registry/event-listener-5.4.0/src/lib.rs:1367:11 234s | 234s 1367 | #[cfg(feature = "portable-atomic")] 234s | ^^^^^^^^^^^^^^^^^^^^^^^^^^^ 234s | 234s = note: expected values for `feature` are: `critical-section`, `default`, `parking`, and `std` 234s = help: consider adding `portable-atomic` as a feature in `Cargo.toml` 234s = note: see for more information about checking conditional configuration 234s 234s warning: unexpected `cfg` condition value: `portable-atomic` 234s --> /usr/share/cargo/registry/event-listener-5.4.0/src/lib.rs:1369:11 234s | 234s 1369 | #[cfg(feature = "portable-atomic")] 234s | ^^^^^^^^^^^^^^^^^^^^^^^^^^^ 234s | 234s = note: expected values for `feature` are: `critical-section`, `default`, `parking`, and `std` 234s = help: consider adding `portable-atomic` as a feature in `Cargo.toml` 234s = note: see for more information about checking conditional configuration 234s 234s warning: `event-listener` (lib) generated 5 warnings (1 duplicate) 234s Compiling hashbrown v0.14.5 234s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=hashbrown CARGO_MANIFEST_DIR=/tmp/tmp.ruvRE753uN/registry/hashbrown-0.14.5 CARGO_MANIFEST_PATH=/tmp/tmp.ruvRE753uN/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.ruvRE753uN/target/debug/deps rustc --crate-name hashbrown --edition=2021 /tmp/tmp.ruvRE753uN/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.ruvRE753uN/target/debug/deps -L dependency=/tmp/tmp.ruvRE753uN/target/debug/deps --cap-lints warn` 234s warning: unexpected `cfg` condition value: `nightly` 234s --> /tmp/tmp.ruvRE753uN/registry/hashbrown-0.14.5/src/lib.rs:14:5 234s | 234s 14 | feature = "nightly", 234s | ^^^^^^^^^^^^^^^^^^^ 234s | 234s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 234s = help: consider adding `nightly` as a feature in `Cargo.toml` 234s = note: see for more information about checking conditional configuration 234s = note: `#[warn(unexpected_cfgs)]` on by default 234s 234s warning: unexpected `cfg` condition value: `nightly` 234s --> /tmp/tmp.ruvRE753uN/registry/hashbrown-0.14.5/src/lib.rs:39:13 234s | 234s 39 | #![cfg_attr(feature = "nightly", warn(fuzzy_provenance_casts))] 234s | ^^^^^^^^^^^^^^^^^^^ 234s | 234s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 234s = help: consider adding `nightly` as a feature in `Cargo.toml` 234s = note: see for more information about checking conditional configuration 234s 234s warning: unexpected `cfg` condition value: `nightly` 234s --> /tmp/tmp.ruvRE753uN/registry/hashbrown-0.14.5/src/lib.rs:40:13 234s | 234s 40 | #![cfg_attr(feature = "nightly", allow(internal_features))] 234s | ^^^^^^^^^^^^^^^^^^^ 234s | 234s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 234s = help: consider adding `nightly` as a feature in `Cargo.toml` 234s = note: see for more information about checking conditional configuration 234s 234s warning: unexpected `cfg` condition value: `nightly` 234s --> /tmp/tmp.ruvRE753uN/registry/hashbrown-0.14.5/src/lib.rs:49:7 234s | 234s 49 | #[cfg(feature = "nightly")] 234s | ^^^^^^^^^^^^^^^^^^^ 234s | 234s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 234s = help: consider adding `nightly` as a feature in `Cargo.toml` 234s = note: see for more information about checking conditional configuration 234s 234s warning: unexpected `cfg` condition value: `nightly` 234s --> /tmp/tmp.ruvRE753uN/registry/hashbrown-0.14.5/src/macros.rs:59:7 234s | 234s 59 | #[cfg(feature = "nightly")] 234s | ^^^^^^^^^^^^^^^^^^^ 234s | 234s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 234s = help: consider adding `nightly` as a feature in `Cargo.toml` 234s = note: see for more information about checking conditional configuration 234s 234s warning: unexpected `cfg` condition value: `nightly` 234s --> /tmp/tmp.ruvRE753uN/registry/hashbrown-0.14.5/src/macros.rs:65:11 234s | 234s 65 | #[cfg(not(feature = "nightly"))] 234s | ^^^^^^^^^^^^^^^^^^^ 234s | 234s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 234s = help: consider adding `nightly` as a feature in `Cargo.toml` 234s = note: see for more information about checking conditional configuration 234s 234s warning: unexpected `cfg` condition value: `nightly` 234s --> /tmp/tmp.ruvRE753uN/registry/hashbrown-0.14.5/src/raw/mod.rs:53:11 234s | 234s 53 | #[cfg(not(feature = "nightly"))] 234s | ^^^^^^^^^^^^^^^^^^^ 234s | 234s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 234s = help: consider adding `nightly` as a feature in `Cargo.toml` 234s = note: see for more information about checking conditional configuration 234s 234s warning: unexpected `cfg` condition value: `nightly` 234s --> /tmp/tmp.ruvRE753uN/registry/hashbrown-0.14.5/src/raw/mod.rs:55:11 234s | 234s 55 | #[cfg(not(feature = "nightly"))] 234s | ^^^^^^^^^^^^^^^^^^^ 234s | 234s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 234s = help: consider adding `nightly` as a feature in `Cargo.toml` 234s = note: see for more information about checking conditional configuration 234s 234s warning: unexpected `cfg` condition value: `nightly` 234s --> /tmp/tmp.ruvRE753uN/registry/hashbrown-0.14.5/src/raw/mod.rs:57:7 234s | 234s 57 | #[cfg(feature = "nightly")] 234s | ^^^^^^^^^^^^^^^^^^^ 234s | 234s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 234s = help: consider adding `nightly` as a feature in `Cargo.toml` 234s = note: see for more information about checking conditional configuration 234s 234s warning: unexpected `cfg` condition value: `nightly` 234s --> /tmp/tmp.ruvRE753uN/registry/hashbrown-0.14.5/src/raw/mod.rs:3549:7 234s | 234s 3549 | #[cfg(feature = "nightly")] 234s | ^^^^^^^^^^^^^^^^^^^ 234s | 234s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 234s = help: consider adding `nightly` as a feature in `Cargo.toml` 234s = note: see for more information about checking conditional configuration 234s 234s warning: unexpected `cfg` condition value: `nightly` 234s --> /tmp/tmp.ruvRE753uN/registry/hashbrown-0.14.5/src/raw/mod.rs:3661:7 234s | 234s 3661 | #[cfg(feature = "nightly")] 234s | ^^^^^^^^^^^^^^^^^^^ 234s | 234s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 234s = help: consider adding `nightly` as a feature in `Cargo.toml` 234s = note: see for more information about checking conditional configuration 234s 234s warning: unexpected `cfg` condition value: `nightly` 234s --> /tmp/tmp.ruvRE753uN/registry/hashbrown-0.14.5/src/raw/mod.rs:3678:11 234s | 234s 3678 | #[cfg(not(feature = "nightly"))] 234s | ^^^^^^^^^^^^^^^^^^^ 234s | 234s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 234s = help: consider adding `nightly` as a feature in `Cargo.toml` 234s = note: see for more information about checking conditional configuration 234s 234s warning: unexpected `cfg` condition value: `nightly` 234s --> /tmp/tmp.ruvRE753uN/registry/hashbrown-0.14.5/src/raw/mod.rs:4304:7 234s | 234s 4304 | #[cfg(feature = "nightly")] 234s | ^^^^^^^^^^^^^^^^^^^ 234s | 234s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 234s = help: consider adding `nightly` as a feature in `Cargo.toml` 234s = note: see for more information about checking conditional configuration 234s 234s warning: unexpected `cfg` condition value: `nightly` 234s --> /tmp/tmp.ruvRE753uN/registry/hashbrown-0.14.5/src/raw/mod.rs:4319:11 234s | 234s 4319 | #[cfg(not(feature = "nightly"))] 234s | ^^^^^^^^^^^^^^^^^^^ 234s | 234s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 234s = help: consider adding `nightly` as a feature in `Cargo.toml` 234s = note: see for more information about checking conditional configuration 234s 234s warning: unexpected `cfg` condition value: `nightly` 234s --> /tmp/tmp.ruvRE753uN/registry/hashbrown-0.14.5/src/raw/alloc.rs:7:7 234s | 234s 7 | #[cfg(feature = "nightly")] 234s | ^^^^^^^^^^^^^^^^^^^ 234s | 234s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 234s = help: consider adding `nightly` as a feature in `Cargo.toml` 234s = note: see for more information about checking conditional configuration 234s 234s warning: unexpected `cfg` condition value: `nightly` 234s --> /tmp/tmp.ruvRE753uN/registry/hashbrown-0.14.5/src/raw/alloc.rs:28:15 234s | 234s 28 | #[cfg(all(not(feature = "nightly"), feature = "allocator-api2"))] 234s | ^^^^^^^^^^^^^^^^^^^ 234s | 234s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 234s = help: consider adding `nightly` as a feature in `Cargo.toml` 234s = note: see for more information about checking conditional configuration 234s 234s warning: unexpected `cfg` condition value: `nightly` 234s --> /tmp/tmp.ruvRE753uN/registry/hashbrown-0.14.5/src/raw/alloc.rs:51:15 234s | 234s 51 | #[cfg(not(any(feature = "nightly", feature = "allocator-api2")))] 234s | ^^^^^^^^^^^^^^^^^^^ 234s | 234s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 234s = help: consider adding `nightly` as a feature in `Cargo.toml` 234s = note: see for more information about checking conditional configuration 234s 234s warning: unexpected `cfg` condition value: `nightly` 234s --> /tmp/tmp.ruvRE753uN/registry/hashbrown-0.14.5/src/raw/mod.rs:944:32 234s | 234s 944 | #[cfg(any(feature = "raw", feature = "nightly"))] 234s | ^^^^^^^^^^^^^^^^^^^ 234s | 234s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 234s = help: consider adding `nightly` as a feature in `Cargo.toml` 234s = note: see for more information about checking conditional configuration 234s 234s warning: unexpected `cfg` condition value: `rkyv` 234s --> /tmp/tmp.ruvRE753uN/registry/hashbrown-0.14.5/src/external_trait_impls/mod.rs:3:7 234s | 234s 3 | #[cfg(feature = "rkyv")] 234s | ^^^^^^^^^^^^^^^^ 234s | 234s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 234s = help: consider adding `rkyv` as a feature in `Cargo.toml` 234s = note: see for more information about checking conditional configuration 234s 234s warning: unexpected `cfg` condition value: `nightly` 234s --> /tmp/tmp.ruvRE753uN/registry/hashbrown-0.14.5/src/map.rs:242:11 234s | 234s 242 | #[cfg(not(feature = "nightly"))] 234s | ^^^^^^^^^^^^^^^^^^^ 234s | 234s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 234s = help: consider adding `nightly` as a feature in `Cargo.toml` 234s = note: see for more information about checking conditional configuration 234s 234s warning: unexpected `cfg` condition value: `nightly` 234s --> /tmp/tmp.ruvRE753uN/registry/hashbrown-0.14.5/src/map.rs:255:7 234s | 234s 255 | #[cfg(feature = "nightly")] 234s | ^^^^^^^^^^^^^^^^^^^ 234s | 234s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 234s = help: consider adding `nightly` as a feature in `Cargo.toml` 234s = note: see for more information about checking conditional configuration 234s 234s warning: unexpected `cfg` condition value: `nightly` 234s --> /tmp/tmp.ruvRE753uN/registry/hashbrown-0.14.5/src/map.rs:6517:11 234s | 234s 6517 | #[cfg(feature = "nightly")] 234s | ^^^^^^^^^^^^^^^^^^^ 234s | 234s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 234s = help: consider adding `nightly` as a feature in `Cargo.toml` 234s = note: see for more information about checking conditional configuration 234s 234s warning: unexpected `cfg` condition value: `nightly` 234s --> /tmp/tmp.ruvRE753uN/registry/hashbrown-0.14.5/src/map.rs:6523:11 234s | 234s 6523 | #[cfg(feature = "nightly")] 234s | ^^^^^^^^^^^^^^^^^^^ 234s | 234s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 234s = help: consider adding `nightly` as a feature in `Cargo.toml` 234s = note: see for more information about checking conditional configuration 234s 234s warning: unexpected `cfg` condition value: `nightly` 234s --> /tmp/tmp.ruvRE753uN/registry/hashbrown-0.14.5/src/map.rs:6591:11 234s | 234s 6591 | #[cfg(feature = "nightly")] 234s | ^^^^^^^^^^^^^^^^^^^ 234s | 234s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 234s = help: consider adding `nightly` as a feature in `Cargo.toml` 234s = note: see for more information about checking conditional configuration 234s 234s warning: unexpected `cfg` condition value: `nightly` 234s --> /tmp/tmp.ruvRE753uN/registry/hashbrown-0.14.5/src/map.rs:6597:11 234s | 234s 6597 | #[cfg(feature = "nightly")] 234s | ^^^^^^^^^^^^^^^^^^^ 234s | 234s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 234s = help: consider adding `nightly` as a feature in `Cargo.toml` 234s = note: see for more information about checking conditional configuration 234s 234s warning: unexpected `cfg` condition value: `nightly` 234s --> /tmp/tmp.ruvRE753uN/registry/hashbrown-0.14.5/src/map.rs:6651:11 234s | 234s 6651 | #[cfg(feature = "nightly")] 234s | ^^^^^^^^^^^^^^^^^^^ 234s | 234s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 234s = help: consider adding `nightly` as a feature in `Cargo.toml` 234s = note: see for more information about checking conditional configuration 234s 234s warning: unexpected `cfg` condition value: `nightly` 234s --> /tmp/tmp.ruvRE753uN/registry/hashbrown-0.14.5/src/map.rs:6657:11 234s | 234s 6657 | #[cfg(feature = "nightly")] 234s | ^^^^^^^^^^^^^^^^^^^ 234s | 234s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 234s = help: consider adding `nightly` as a feature in `Cargo.toml` 234s = note: see for more information about checking conditional configuration 234s 234s warning: unexpected `cfg` condition value: `nightly` 234s --> /tmp/tmp.ruvRE753uN/registry/hashbrown-0.14.5/src/set.rs:1359:11 234s | 234s 1359 | #[cfg(feature = "nightly")] 234s | ^^^^^^^^^^^^^^^^^^^ 234s | 234s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 234s = help: consider adding `nightly` as a feature in `Cargo.toml` 234s = note: see for more information about checking conditional configuration 234s 234s warning: unexpected `cfg` condition value: `nightly` 234s --> /tmp/tmp.ruvRE753uN/registry/hashbrown-0.14.5/src/set.rs:1365:11 234s | 234s 1365 | #[cfg(feature = "nightly")] 234s | ^^^^^^^^^^^^^^^^^^^ 234s | 234s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 234s = help: consider adding `nightly` as a feature in `Cargo.toml` 234s = note: see for more information about checking conditional configuration 234s 234s warning: unexpected `cfg` condition value: `nightly` 234s --> /tmp/tmp.ruvRE753uN/registry/hashbrown-0.14.5/src/set.rs:1383:11 234s | 234s 1383 | #[cfg(feature = "nightly")] 234s | ^^^^^^^^^^^^^^^^^^^ 234s | 234s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 234s = help: consider adding `nightly` as a feature in `Cargo.toml` 234s = note: see for more information about checking conditional configuration 234s 234s warning: unexpected `cfg` condition value: `nightly` 234s --> /tmp/tmp.ruvRE753uN/registry/hashbrown-0.14.5/src/set.rs:1389:11 234s | 234s 1389 | #[cfg(feature = "nightly")] 234s | ^^^^^^^^^^^^^^^^^^^ 234s | 234s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 234s = help: consider adding `nightly` as a feature in `Cargo.toml` 234s = note: see for more information about checking conditional configuration 234s 234s warning: `hashbrown` (lib) generated 31 warnings 234s Compiling version_check v0.9.5 234s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=version_check CARGO_MANIFEST_DIR=/tmp/tmp.ruvRE753uN/registry/version_check-0.9.5 CARGO_MANIFEST_PATH=/tmp/tmp.ruvRE753uN/registry/version_check-0.9.5/Cargo.toml CARGO_PKG_AUTHORS='Sergio Benitez ' CARGO_PKG_DESCRIPTION='Tiny crate to check the version of the installed/running rustc.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=version_check CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/SergioBenitez/version_check' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.9.5 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=9 CARGO_PKG_VERSION_PATCH=5 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.ruvRE753uN/target/debug/deps rustc --crate-name version_check --edition=2015 /tmp/tmp.ruvRE753uN/registry/version_check-0.9.5/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=20e83cdf64ec3211 -C extra-filename=-20e83cdf64ec3211 --out-dir /tmp/tmp.ruvRE753uN/target/debug/deps -L dependency=/tmp/tmp.ruvRE753uN/target/debug/deps --cap-lints warn` 235s Compiling equivalent v1.0.1 235s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=equivalent CARGO_MANIFEST_DIR=/tmp/tmp.ruvRE753uN/registry/equivalent-1.0.1 CARGO_MANIFEST_PATH=/tmp/tmp.ruvRE753uN/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.ruvRE753uN/target/debug/deps rustc --crate-name equivalent --edition=2015 /tmp/tmp.ruvRE753uN/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.ruvRE753uN/target/debug/deps -L dependency=/tmp/tmp.ruvRE753uN/target/debug/deps --cap-lints warn` 235s Compiling typenum v1.17.0 235s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_main CARGO_MANIFEST_DIR=/tmp/tmp.ruvRE753uN/registry/typenum-1.17.0 CARGO_MANIFEST_PATH=/tmp/tmp.ruvRE753uN/registry/typenum-1.17.0/Cargo.toml CARGO_PKG_AUTHORS='Paho Lurie-Gregg :Andre Bogus ' CARGO_PKG_DESCRIPTION='Typenum is a Rust library for type-level numbers evaluated at 235s compile time. It currently supports bits, unsigned integers, and signed 235s integers. It also provides a type-level array of type-level numbers, but its 235s implementation is incomplete.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=typenum CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/paholg/typenum' CARGO_PKG_RUST_VERSION=1.37.0 CARGO_PKG_VERSION=1.17.0 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=17 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.ruvRE753uN/target/debug/deps rustc --crate-name build_script_main --edition=2018 /tmp/tmp.ruvRE753uN/registry/typenum-1.17.0/build/main.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("const-generics", "force_unix_path_separator", "i128", "no_std", "strict"))' -C metadata=ef2812a6bded5202 -C extra-filename=-ef2812a6bded5202 --out-dir /tmp/tmp.ruvRE753uN/target/debug/build/typenum-ef2812a6bded5202 -L dependency=/tmp/tmp.ruvRE753uN/target/debug/deps --cap-lints warn` 235s 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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0--remap-path-prefix/tmp/tmp.ruvRE753uN/registry=/usr/share/cargo/registry-Ctarget-feature=+backchain' CARGO_MANIFEST_DIR=/tmp/tmp.ruvRE753uN/registry/typenum-1.17.0 CARGO_MANIFEST_PATH=/tmp/tmp.ruvRE753uN/registry/typenum-1.17.0/Cargo.toml CARGO_PKG_AUTHORS='Paho Lurie-Gregg :Andre Bogus ' CARGO_PKG_DESCRIPTION='Typenum is a Rust library for type-level numbers evaluated at 235s compile time. It currently supports bits, unsigned integers, and signed 235s integers. It also provides a type-level array of type-level numbers, but its 235s implementation is incomplete.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=typenum CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/paholg/typenum' CARGO_PKG_RUST_VERSION=1.37.0 CARGO_PKG_VERSION=1.17.0 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=17 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' DEBUG=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.ruvRE753uN/target/debug/deps:/tmp/tmp.ruvRE753uN/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/build/typenum-b1daa52c37018028/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.ruvRE753uN/target/debug/build/typenum-ef2812a6bded5202/build-script-main` 235s [typenum 1.17.0] cargo:rerun-if-changed=build/main.rs 235s Compiling indexmap v2.7.0 235s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=indexmap CARGO_MANIFEST_DIR=/tmp/tmp.ruvRE753uN/registry/indexmap-2.7.0 CARGO_MANIFEST_PATH=/tmp/tmp.ruvRE753uN/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.ruvRE753uN/target/debug/deps rustc --crate-name indexmap --edition=2021 /tmp/tmp.ruvRE753uN/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.ruvRE753uN/target/debug/deps -L dependency=/tmp/tmp.ruvRE753uN/target/debug/deps --extern equivalent=/tmp/tmp.ruvRE753uN/target/debug/deps/libequivalent-a11b0a19a3bf2c19.rmeta --extern hashbrown=/tmp/tmp.ruvRE753uN/target/debug/deps/libhashbrown-e14e27c8ff208110.rmeta --cap-lints warn` 235s warning: unexpected `cfg` condition value: `borsh` 235s --> /tmp/tmp.ruvRE753uN/registry/indexmap-2.7.0/src/lib.rs:117:7 235s | 235s 117 | #[cfg(feature = "borsh")] 235s | ^^^^^^^^^^^^^^^^^ 235s | 235s = note: expected values for `feature` are: `arbitrary`, `default`, `rayon`, `serde`, `std`, and `test_debug` 235s = help: consider adding `borsh` as a feature in `Cargo.toml` 235s = note: see for more information about checking conditional configuration 235s = note: `#[warn(unexpected_cfgs)]` on by default 235s 235s warning: unexpected `cfg` condition value: `rustc-rayon` 235s --> /tmp/tmp.ruvRE753uN/registry/indexmap-2.7.0/src/lib.rs:131:7 235s | 235s 131 | #[cfg(feature = "rustc-rayon")] 235s | ^^^^^^^^^^^^^^^^^^^^^^^ 235s | 235s = note: expected values for `feature` are: `arbitrary`, `default`, `rayon`, `serde`, `std`, and `test_debug` 235s = help: consider adding `rustc-rayon` as a feature in `Cargo.toml` 235s = note: see for more information about checking conditional configuration 235s 235s warning: unexpected `cfg` condition value: `quickcheck` 235s --> /tmp/tmp.ruvRE753uN/registry/indexmap-2.7.0/src/arbitrary.rs:38:7 235s | 235s 38 | #[cfg(feature = "quickcheck")] 235s | ^^^^^^^^^^^^^^^^^^^^^^ 235s | 235s = note: expected values for `feature` are: `arbitrary`, `default`, `rayon`, `serde`, `std`, and `test_debug` 235s = help: consider adding `quickcheck` as a feature in `Cargo.toml` 235s = note: see for more information about checking conditional configuration 235s 235s warning: unexpected `cfg` condition value: `rustc-rayon` 235s --> /tmp/tmp.ruvRE753uN/registry/indexmap-2.7.0/src/macros.rs:128:30 235s | 235s 128 | #[cfg(any(feature = "rayon", feature = "rustc-rayon"))] 235s | ^^^^^^^^^^^^^^^^^^^^^^^ 235s | 235s = note: expected values for `feature` are: `arbitrary`, `default`, `rayon`, `serde`, `std`, and `test_debug` 235s = help: consider adding `rustc-rayon` as a feature in `Cargo.toml` 235s = note: see for more information about checking conditional configuration 235s 235s warning: unexpected `cfg` condition value: `rustc-rayon` 235s --> /tmp/tmp.ruvRE753uN/registry/indexmap-2.7.0/src/macros.rs:153:30 235s | 235s 153 | #[cfg(any(feature = "rayon", feature = "rustc-rayon"))] 235s | ^^^^^^^^^^^^^^^^^^^^^^^ 235s | 235s = note: expected values for `feature` are: `arbitrary`, `default`, `rayon`, `serde`, `std`, and `test_debug` 235s = help: consider adding `rustc-rayon` as a feature in `Cargo.toml` 235s = note: see for more information about checking conditional configuration 235s 236s warning: `indexmap` (lib) generated 5 warnings 236s Compiling generic-array v0.14.7 236s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.ruvRE753uN/registry/generic-array-0.14.7 CARGO_MANIFEST_PATH=/tmp/tmp.ruvRE753uN/registry/generic-array-0.14.7/Cargo.toml CARGO_PKG_AUTHORS='Bartłomiej Kamiński :Aaron Trent ' CARGO_PKG_DESCRIPTION='Generic types implementing functionality of arrays' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=generic-array CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/fizyk20/generic-array.git' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.14.7 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=14 CARGO_PKG_VERSION_PATCH=7 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.ruvRE753uN/target/debug/deps rustc --crate-name build_script_build --edition=2015 /tmp/tmp.ruvRE753uN/registry/generic-array-0.14.7/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="more_lengths"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("more_lengths", "serde", "zeroize"))' -C metadata=160edb9b35222b14 -C extra-filename=-160edb9b35222b14 --out-dir /tmp/tmp.ruvRE753uN/target/debug/build/generic-array-160edb9b35222b14 -L dependency=/tmp/tmp.ruvRE753uN/target/debug/deps --extern version_check=/tmp/tmp.ruvRE753uN/target/debug/deps/libversion_check-20e83cdf64ec3211.rlib --cap-lints warn` 236s Compiling event-listener-strategy v0.5.3 236s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=event_listener_strategy CARGO_MANIFEST_DIR=/tmp/tmp.ruvRE753uN/registry/event-listener-strategy-0.5.3 CARGO_MANIFEST_PATH=/tmp/tmp.ruvRE753uN/registry/event-listener-strategy-0.5.3/Cargo.toml CARGO_PKG_AUTHORS='John Nunley ' CARGO_PKG_DESCRIPTION='Block or poll on event_listener easily' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=event-listener-strategy CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/smol-rs/event-listener-strategy' CARGO_PKG_RUST_VERSION=1.60 CARGO_PKG_VERSION=0.5.3 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=5 CARGO_PKG_VERSION_PATCH=3 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.ruvRE753uN/target/debug/deps rustc --crate-name event_listener_strategy --edition=2021 /tmp/tmp.ruvRE753uN/registry/event-listener-strategy-0.5.3/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --warn=unexpected_cfgs --check-cfg 'cfg(wasm_bindgen_unstable_test_coverage)' --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "std"))' -C metadata=53ebcc1cb10a7931 -C extra-filename=-53ebcc1cb10a7931 --out-dir /tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.ruvRE753uN/target/debug/deps --extern event_listener=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps/libevent_listener-4260d59234261e59.rmeta --extern pin_project_lite=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps/libpin_project_lite-5dc815523e98d889.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.ruvRE753uN/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 236s warning: `event-listener-strategy` (lib) generated 1 warning (1 duplicate) 236s Compiling toml_datetime v0.6.8 236s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=toml_datetime CARGO_MANIFEST_DIR=/tmp/tmp.ruvRE753uN/registry/toml_datetime-0.6.8 CARGO_MANIFEST_PATH=/tmp/tmp.ruvRE753uN/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.ruvRE753uN/target/debug/deps rustc --crate-name toml_datetime --edition=2021 /tmp/tmp.ruvRE753uN/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.ruvRE753uN/target/debug/deps -L dependency=/tmp/tmp.ruvRE753uN/target/debug/deps --cap-lints warn` 236s Compiling futures-io v0.3.31 236s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=futures_io CARGO_MANIFEST_DIR=/tmp/tmp.ruvRE753uN/registry/futures-io-0.3.31 CARGO_MANIFEST_PATH=/tmp/tmp.ruvRE753uN/registry/futures-io-0.3.31/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='The `AsyncRead`, `AsyncWrite`, `AsyncSeek`, and `AsyncBufRead` traits for the futures-rs library. 236s ' CARGO_PKG_HOMEPAGE='https://rust-lang.github.io/futures-rs' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=futures-io CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/futures-rs' CARGO_PKG_RUST_VERSION=1.36 CARGO_PKG_VERSION=0.3.31 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=31 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.ruvRE753uN/target/debug/deps rustc --crate-name futures_io --edition=2018 /tmp/tmp.ruvRE753uN/registry/futures-io-0.3.31/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --warn=unreachable_pub --warn=unexpected_cfgs --warn=single_use_lifetimes --warn=rust_2018_idioms --warn=missing_debug_implementations --check-cfg 'cfg(futures_sanitizer)' --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "std", "unstable"))' -C metadata=1a4387591f8b2b95 -C extra-filename=-1a4387591f8b2b95 --out-dir /tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.ruvRE753uN/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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.ruvRE753uN/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 236s warning: `futures-io` (lib) generated 1 warning (1 duplicate) 236s Compiling winnow v0.6.18 236s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=winnow CARGO_MANIFEST_DIR=/tmp/tmp.ruvRE753uN/registry/winnow-0.6.18 CARGO_MANIFEST_PATH=/tmp/tmp.ruvRE753uN/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.ruvRE753uN/target/debug/deps rustc --crate-name winnow --edition=2021 /tmp/tmp.ruvRE753uN/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.ruvRE753uN/target/debug/deps -L dependency=/tmp/tmp.ruvRE753uN/target/debug/deps --cap-lints warn` 236s warning: unexpected `cfg` condition value: `debug` 236s --> /tmp/tmp.ruvRE753uN/registry/winnow-0.6.18/src/combinator/debug/mod.rs:1:13 236s | 236s 1 | #![cfg_attr(feature = "debug", allow(clippy::std_instead_of_core))] 236s | ^^^^^^^^^^^^^^^^^ 236s | 236s = note: expected values for `feature` are: `alloc`, `default`, `simd`, `std`, `unstable-doc`, and `unstable-recover` 236s = help: consider adding `debug` as a feature in `Cargo.toml` 236s = note: see for more information about checking conditional configuration 236s = note: `#[warn(unexpected_cfgs)]` on by default 236s 236s warning: unexpected `cfg` condition value: `debug` 236s --> /tmp/tmp.ruvRE753uN/registry/winnow-0.6.18/src/combinator/debug/mod.rs:3:7 236s | 236s 3 | #[cfg(feature = "debug")] 236s | ^^^^^^^^^^^^^^^^^ 236s | 236s = note: expected values for `feature` are: `alloc`, `default`, `simd`, `std`, `unstable-doc`, and `unstable-recover` 236s = help: consider adding `debug` as a feature in `Cargo.toml` 236s = note: see for more information about checking conditional configuration 236s 236s warning: unexpected `cfg` condition value: `debug` 236s --> /tmp/tmp.ruvRE753uN/registry/winnow-0.6.18/src/combinator/debug/mod.rs:37:16 236s | 236s 37 | #[cfg_attr(not(feature = "debug"), allow(unused_variables))] 236s | ^^^^^^^^^^^^^^^^^ 236s | 236s = note: expected values for `feature` are: `alloc`, `default`, `simd`, `std`, `unstable-doc`, and `unstable-recover` 236s = help: consider adding `debug` as a feature in `Cargo.toml` 236s = note: see for more information about checking conditional configuration 236s 236s warning: unexpected `cfg` condition value: `debug` 236s --> /tmp/tmp.ruvRE753uN/registry/winnow-0.6.18/src/combinator/debug/mod.rs:38:16 236s | 236s 38 | #[cfg_attr(not(feature = "debug"), allow(unused_mut))] 236s | ^^^^^^^^^^^^^^^^^ 236s | 236s = note: expected values for `feature` are: `alloc`, `default`, `simd`, `std`, `unstable-doc`, and `unstable-recover` 236s = help: consider adding `debug` as a feature in `Cargo.toml` 236s = note: see for more information about checking conditional configuration 236s 236s warning: unexpected `cfg` condition value: `debug` 236s --> /tmp/tmp.ruvRE753uN/registry/winnow-0.6.18/src/combinator/debug/mod.rs:39:16 236s | 236s 39 | #[cfg_attr(not(feature = "debug"), inline(always))] 236s | ^^^^^^^^^^^^^^^^^ 236s | 236s = note: expected values for `feature` are: `alloc`, `default`, `simd`, `std`, `unstable-doc`, and `unstable-recover` 236s = help: consider adding `debug` as a feature in `Cargo.toml` 236s = note: see for more information about checking conditional configuration 236s 236s warning: unexpected `cfg` condition value: `debug` 236s --> /tmp/tmp.ruvRE753uN/registry/winnow-0.6.18/src/combinator/debug/mod.rs:54:16 236s | 236s 54 | #[cfg_attr(not(feature = "debug"), allow(unused_variables))] 236s | ^^^^^^^^^^^^^^^^^ 236s | 236s = note: expected values for `feature` are: `alloc`, `default`, `simd`, `std`, `unstable-doc`, and `unstable-recover` 236s = help: consider adding `debug` as a feature in `Cargo.toml` 236s = note: see for more information about checking conditional configuration 236s 236s warning: unexpected `cfg` condition value: `debug` 236s --> /tmp/tmp.ruvRE753uN/registry/winnow-0.6.18/src/combinator/debug/mod.rs:79:7 236s | 236s 79 | #[cfg(feature = "debug")] 236s | ^^^^^^^^^^^^^^^^^ 236s | 236s = note: expected values for `feature` are: `alloc`, `default`, `simd`, `std`, `unstable-doc`, and `unstable-recover` 236s = help: consider adding `debug` as a feature in `Cargo.toml` 236s = note: see for more information about checking conditional configuration 236s 236s warning: unexpected `cfg` condition value: `debug` 236s --> /tmp/tmp.ruvRE753uN/registry/winnow-0.6.18/src/combinator/debug/mod.rs:44:11 236s | 236s 44 | #[cfg(feature = "debug")] 236s | ^^^^^^^^^^^^^^^^^ 236s | 236s = note: expected values for `feature` are: `alloc`, `default`, `simd`, `std`, `unstable-doc`, and `unstable-recover` 236s = help: consider adding `debug` as a feature in `Cargo.toml` 236s = note: see for more information about checking conditional configuration 236s 236s warning: unexpected `cfg` condition value: `debug` 236s --> /tmp/tmp.ruvRE753uN/registry/winnow-0.6.18/src/combinator/debug/mod.rs:48:15 236s | 236s 48 | #[cfg(not(feature = "debug"))] 236s | ^^^^^^^^^^^^^^^^^ 236s | 236s = note: expected values for `feature` are: `alloc`, `default`, `simd`, `std`, `unstable-doc`, and `unstable-recover` 236s = help: consider adding `debug` as a feature in `Cargo.toml` 236s = note: see for more information about checking conditional configuration 236s 236s warning: unexpected `cfg` condition value: `debug` 236s --> /tmp/tmp.ruvRE753uN/registry/winnow-0.6.18/src/combinator/debug/mod.rs:59:11 236s | 236s 59 | #[cfg(feature = "debug")] 236s | ^^^^^^^^^^^^^^^^^ 236s | 236s = note: expected values for `feature` are: `alloc`, `default`, `simd`, `std`, `unstable-doc`, and `unstable-recover` 236s = help: consider adding `debug` as a feature in `Cargo.toml` 236s = note: see for more information about checking conditional configuration 236s 238s 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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0--remap-path-prefix/tmp/tmp.ruvRE753uN/registry=/usr/share/cargo/registry-Ctarget-feature=+backchain' CARGO_FEATURE_MORE_LENGTHS=1 CARGO_MANIFEST_DIR=/tmp/tmp.ruvRE753uN/registry/generic-array-0.14.7 CARGO_MANIFEST_PATH=/tmp/tmp.ruvRE753uN/registry/generic-array-0.14.7/Cargo.toml CARGO_PKG_AUTHORS='Bartłomiej Kamiński :Aaron Trent ' CARGO_PKG_DESCRIPTION='Generic types implementing functionality of arrays' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=generic-array CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/fizyk20/generic-array.git' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.14.7 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=14 CARGO_PKG_VERSION_PATCH=7 CARGO_PKG_VERSION_PRE='' DEBUG=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.ruvRE753uN/target/debug/deps:/tmp/tmp.ruvRE753uN/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/build/generic-array-da8fba9a25807be8/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.ruvRE753uN/target/debug/build/generic-array-160edb9b35222b14/build-script-build` 238s [generic-array 0.14.7] cargo:rustc-cfg=relaxed_coherence 238s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=typenum CARGO_MANIFEST_DIR=/tmp/tmp.ruvRE753uN/registry/typenum-1.17.0 CARGO_MANIFEST_PATH=/tmp/tmp.ruvRE753uN/registry/typenum-1.17.0/Cargo.toml CARGO_PKG_AUTHORS='Paho Lurie-Gregg :Andre Bogus ' CARGO_PKG_DESCRIPTION='Typenum is a Rust library for type-level numbers evaluated at 238s compile time. It currently supports bits, unsigned integers, and signed 238s integers. It also provides a type-level array of type-level numbers, but its 238s implementation is incomplete.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=typenum CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/paholg/typenum' CARGO_PKG_RUST_VERSION=1.37.0 CARGO_PKG_VERSION=1.17.0 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=17 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.ruvRE753uN/target/debug/deps OUT_DIR=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/build/typenum-b1daa52c37018028/out rustc --crate-name typenum --edition=2018 /tmp/tmp.ruvRE753uN/registry/typenum-1.17.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("const-generics", "force_unix_path_separator", "i128", "no_std", "strict"))' -C metadata=c66037e8139405ff -C extra-filename=-c66037e8139405ff --out-dir /tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.ruvRE753uN/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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.ruvRE753uN/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 238s warning: unexpected `cfg` condition value: `cargo-clippy` 238s --> /usr/share/cargo/registry/typenum-1.17.0/src/lib.rs:50:5 238s | 238s 50 | feature = "cargo-clippy", 238s | ^^^^^^^^^^^^^^^^^^^^^^^^ 238s | 238s = note: expected values for `feature` are: `const-generics`, `force_unix_path_separator`, `i128`, `no_std`, and `strict` 238s = help: consider adding `cargo-clippy` as a feature in `Cargo.toml` 238s = note: see for more information about checking conditional configuration 238s = note: `#[warn(unexpected_cfgs)]` on by default 238s 238s warning: unexpected `cfg` condition value: `cargo-clippy` 238s --> /usr/share/cargo/registry/typenum-1.17.0/src/lib.rs:60:13 238s | 238s 60 | #![cfg_attr(feature = "cargo-clippy", deny(clippy::missing_inline_in_public_items))] 238s | ^^^^^^^^^^^^^^^^^^^^^^^^ 238s | 238s = note: expected values for `feature` are: `const-generics`, `force_unix_path_separator`, `i128`, `no_std`, and `strict` 238s = help: consider adding `cargo-clippy` as a feature in `Cargo.toml` 238s = note: see for more information about checking conditional configuration 238s 238s warning: unexpected `cfg` condition value: `scale_info` 238s --> /usr/share/cargo/registry/typenum-1.17.0/src/lib.rs:119:12 238s | 238s 119 | #[cfg_attr(feature = "scale_info", derive(scale_info::TypeInfo))] 238s | ^^^^^^^^^^^^^^^^^^^^^^ 238s | 238s = note: expected values for `feature` are: `const-generics`, `force_unix_path_separator`, `i128`, `no_std`, and `strict` 238s = help: consider adding `scale_info` as a feature in `Cargo.toml` 238s = note: see for more information about checking conditional configuration 238s 238s warning: unexpected `cfg` condition value: `scale_info` 238s --> /usr/share/cargo/registry/typenum-1.17.0/src/lib.rs:125:12 238s | 238s 125 | #[cfg_attr(feature = "scale_info", derive(scale_info::TypeInfo))] 238s | ^^^^^^^^^^^^^^^^^^^^^^ 238s | 238s = note: expected values for `feature` are: `const-generics`, `force_unix_path_separator`, `i128`, `no_std`, and `strict` 238s = help: consider adding `scale_info` as a feature in `Cargo.toml` 238s = note: see for more information about checking conditional configuration 238s 238s warning: unexpected `cfg` condition value: `scale_info` 238s --> /usr/share/cargo/registry/typenum-1.17.0/src/lib.rs:131:12 238s | 238s 131 | #[cfg_attr(feature = "scale_info", derive(scale_info::TypeInfo))] 238s | ^^^^^^^^^^^^^^^^^^^^^^ 238s | 238s = note: expected values for `feature` are: `const-generics`, `force_unix_path_separator`, `i128`, `no_std`, and `strict` 238s = help: consider adding `scale_info` as a feature in `Cargo.toml` 238s = note: see for more information about checking conditional configuration 238s 238s warning: unexpected `cfg` condition value: `scale_info` 238s --> /usr/share/cargo/registry/typenum-1.17.0/src/bit.rs:19:12 238s | 238s 19 | #[cfg_attr(feature = "scale_info", derive(scale_info::TypeInfo))] 238s | ^^^^^^^^^^^^^^^^^^^^^^ 238s | 238s = note: expected values for `feature` are: `const-generics`, `force_unix_path_separator`, `i128`, `no_std`, and `strict` 238s = help: consider adding `scale_info` as a feature in `Cargo.toml` 238s = note: see for more information about checking conditional configuration 238s 238s warning: unexpected `cfg` condition value: `scale_info` 238s --> /usr/share/cargo/registry/typenum-1.17.0/src/bit.rs:32:12 238s | 238s 32 | #[cfg_attr(feature = "scale_info", derive(scale_info::TypeInfo))] 238s | ^^^^^^^^^^^^^^^^^^^^^^ 238s | 238s = note: expected values for `feature` are: `const-generics`, `force_unix_path_separator`, `i128`, `no_std`, and `strict` 238s = help: consider adding `scale_info` as a feature in `Cargo.toml` 238s = note: see for more information about checking conditional configuration 238s 238s warning: unexpected `cfg` condition name: `tests` 238s --> /usr/share/cargo/registry/typenum-1.17.0/src/bit.rs:187:7 238s | 238s 187 | #[cfg(tests)] 238s | ^^^^^ help: there is a config with a similar name: `test` 238s | 238s = help: consider using a Cargo feature instead 238s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 238s [lints.rust] 238s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tests)'] } 238s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tests)");` to the top of the `build.rs` 238s = note: see for more information about checking conditional configuration 238s 238s warning: unexpected `cfg` condition value: `scale_info` 238s --> /usr/share/cargo/registry/typenum-1.17.0/src/int.rs:41:12 238s | 238s 41 | #[cfg_attr(feature = "scale_info", derive(scale_info::TypeInfo))] 238s | ^^^^^^^^^^^^^^^^^^^^^^ 238s | 238s = note: expected values for `feature` are: `const-generics`, `force_unix_path_separator`, `i128`, `no_std`, and `strict` 238s = help: consider adding `scale_info` as a feature in `Cargo.toml` 238s = note: see for more information about checking conditional configuration 238s 238s warning: unexpected `cfg` condition value: `scale_info` 238s --> /usr/share/cargo/registry/typenum-1.17.0/src/int.rs:48:12 238s | 238s 48 | #[cfg_attr(feature = "scale_info", derive(scale_info::TypeInfo))] 238s | ^^^^^^^^^^^^^^^^^^^^^^ 238s | 238s = note: expected values for `feature` are: `const-generics`, `force_unix_path_separator`, `i128`, `no_std`, and `strict` 238s = help: consider adding `scale_info` as a feature in `Cargo.toml` 238s = note: see for more information about checking conditional configuration 238s 238s warning: unexpected `cfg` condition value: `scale_info` 238s --> /usr/share/cargo/registry/typenum-1.17.0/src/int.rs:71:12 238s | 238s 71 | #[cfg_attr(feature = "scale_info", derive(scale_info::TypeInfo))] 238s | ^^^^^^^^^^^^^^^^^^^^^^ 238s | 238s = note: expected values for `feature` are: `const-generics`, `force_unix_path_separator`, `i128`, `no_std`, and `strict` 238s = help: consider adding `scale_info` as a feature in `Cargo.toml` 238s = note: see for more information about checking conditional configuration 238s 238s warning: unexpected `cfg` condition value: `scale_info` 238s --> /usr/share/cargo/registry/typenum-1.17.0/src/uint.rs:49:12 238s | 238s 49 | #[cfg_attr(feature = "scale_info", derive(scale_info::TypeInfo))] 238s | ^^^^^^^^^^^^^^^^^^^^^^ 238s | 238s = note: expected values for `feature` are: `const-generics`, `force_unix_path_separator`, `i128`, `no_std`, and `strict` 238s = help: consider adding `scale_info` as a feature in `Cargo.toml` 238s = note: see for more information about checking conditional configuration 238s 238s warning: unexpected `cfg` condition value: `scale_info` 238s --> /usr/share/cargo/registry/typenum-1.17.0/src/uint.rs:147:12 238s | 238s 147 | #[cfg_attr(feature = "scale_info", derive(scale_info::TypeInfo))] 238s | ^^^^^^^^^^^^^^^^^^^^^^ 238s | 238s = note: expected values for `feature` are: `const-generics`, `force_unix_path_separator`, `i128`, `no_std`, and `strict` 238s = help: consider adding `scale_info` as a feature in `Cargo.toml` 238s = note: see for more information about checking conditional configuration 238s 238s warning: unexpected `cfg` condition name: `tests` 238s --> /usr/share/cargo/registry/typenum-1.17.0/src/uint.rs:1656:7 238s | 238s 1656 | #[cfg(tests)] 238s | ^^^^^ help: there is a config with a similar name: `test` 238s | 238s = help: consider using a Cargo feature instead 238s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 238s [lints.rust] 238s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tests)'] } 238s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tests)");` to the top of the `build.rs` 238s = note: see for more information about checking conditional configuration 238s 238s warning: unexpected `cfg` condition value: `cargo-clippy` 238s --> /usr/share/cargo/registry/typenum-1.17.0/src/uint.rs:1709:16 238s | 238s 1709 | #[cfg_attr(feature = "cargo-clippy", allow(clippy::suspicious_arithmetic_impl))] 238s | ^^^^^^^^^^^^^^^^^^^^^^^^ 238s | 238s = note: expected values for `feature` are: `const-generics`, `force_unix_path_separator`, `i128`, `no_std`, and `strict` 238s = help: consider adding `cargo-clippy` as a feature in `Cargo.toml` 238s = note: see for more information about checking conditional configuration 238s 238s warning: unexpected `cfg` condition value: `scale_info` 238s --> /usr/share/cargo/registry/typenum-1.17.0/src/array.rs:11:12 238s | 238s 11 | #[cfg_attr(feature = "scale_info", derive(scale_info::TypeInfo))] 238s | ^^^^^^^^^^^^^^^^^^^^^^ 238s | 238s = note: expected values for `feature` are: `const-generics`, `force_unix_path_separator`, `i128`, `no_std`, and `strict` 238s = help: consider adding `scale_info` as a feature in `Cargo.toml` 238s = note: see for more information about checking conditional configuration 238s 238s warning: unexpected `cfg` condition value: `scale_info` 238s --> /usr/share/cargo/registry/typenum-1.17.0/src/array.rs:23:12 238s | 238s 23 | #[cfg_attr(feature = "scale_info", derive(scale_info::TypeInfo))] 238s | ^^^^^^^^^^^^^^^^^^^^^^ 238s | 238s = note: expected values for `feature` are: `const-generics`, `force_unix_path_separator`, `i128`, `no_std`, and `strict` 238s = help: consider adding `scale_info` as a feature in `Cargo.toml` 238s = note: see for more information about checking conditional configuration 238s 238s warning: unused import: `*` 238s --> /usr/share/cargo/registry/typenum-1.17.0/src/lib.rs:106:25 238s | 238s 106 | N1, N2, Z0, P1, P2, *, 238s | ^ 238s | 238s = note: `#[warn(unused_imports)]` on by default 238s 238s warning: `winnow` (lib) generated 10 warnings 238s Compiling toml_edit v0.22.20 238s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=toml_edit CARGO_MANIFEST_DIR=/tmp/tmp.ruvRE753uN/registry/toml_edit-0.22.20 CARGO_MANIFEST_PATH=/tmp/tmp.ruvRE753uN/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.ruvRE753uN/target/debug/deps rustc --crate-name toml_edit --edition=2021 /tmp/tmp.ruvRE753uN/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.ruvRE753uN/target/debug/deps -L dependency=/tmp/tmp.ruvRE753uN/target/debug/deps --extern indexmap=/tmp/tmp.ruvRE753uN/target/debug/deps/libindexmap-1e18ac9265fbd6ac.rmeta --extern toml_datetime=/tmp/tmp.ruvRE753uN/target/debug/deps/libtoml_datetime-df29d6121930b5d6.rmeta --extern winnow=/tmp/tmp.ruvRE753uN/target/debug/deps/libwinnow-0f17435733cfc3dc.rmeta --cap-lints warn` 238s warning: `typenum` (lib) generated 19 warnings (1 duplicate) 238s Compiling slab v0.4.9 238s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.ruvRE753uN/registry/slab-0.4.9 CARGO_MANIFEST_PATH=/tmp/tmp.ruvRE753uN/registry/slab-0.4.9/Cargo.toml CARGO_PKG_AUTHORS='Carl Lerche ' CARGO_PKG_DESCRIPTION='Pre-allocated storage for a uniform data type' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=slab CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/tokio-rs/slab' CARGO_PKG_RUST_VERSION=1.31 CARGO_PKG_VERSION=0.4.9 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=4 CARGO_PKG_VERSION_PATCH=9 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.ruvRE753uN/target/debug/deps rustc --crate-name build_script_build --edition=2018 /tmp/tmp.ruvRE753uN/registry/slab-0.4.9/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "serde", "std"))' -C metadata=95cba3e02497b263 -C extra-filename=-95cba3e02497b263 --out-dir /tmp/tmp.ruvRE753uN/target/debug/build/slab-95cba3e02497b263 -L dependency=/tmp/tmp.ruvRE753uN/target/debug/deps --extern autocfg=/tmp/tmp.ruvRE753uN/target/debug/deps/libautocfg-9ebcd9511383083c.rlib --cap-lints warn` 238s Compiling serde v1.0.217 238s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.ruvRE753uN/registry/serde-1.0.217 CARGO_MANIFEST_PATH=/tmp/tmp.ruvRE753uN/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.ruvRE753uN/target/debug/deps rustc --crate-name build_script_build --edition=2018 /tmp/tmp.ruvRE753uN/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.ruvRE753uN/target/debug/build/serde-c22c8603f1f999ec -L dependency=/tmp/tmp.ruvRE753uN/target/debug/deps --cap-lints warn` 239s Compiling fastrand v2.1.1 239s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=fastrand CARGO_MANIFEST_DIR=/tmp/tmp.ruvRE753uN/registry/fastrand-2.1.1 CARGO_MANIFEST_PATH=/tmp/tmp.ruvRE753uN/registry/fastrand-2.1.1/Cargo.toml CARGO_PKG_AUTHORS='Stjepan Glavina ' CARGO_PKG_DESCRIPTION='A simple and fast random number generator' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=fastrand CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/smol-rs/fastrand' CARGO_PKG_RUST_VERSION=1.36 CARGO_PKG_VERSION=2.1.1 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.ruvRE753uN/target/debug/deps rustc --crate-name fastrand --edition=2018 /tmp/tmp.ruvRE753uN/registry/fastrand-2.1.1/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="alloc"' --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "default", "std"))' -C metadata=b0f30b63d6f103db -C extra-filename=-b0f30b63d6f103db --out-dir /tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.ruvRE753uN/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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.ruvRE753uN/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 239s warning: unexpected `cfg` condition value: `js` 239s --> /usr/share/cargo/registry/fastrand-2.1.1/src/global_rng.rs:202:5 239s | 239s 202 | feature = "js" 239s | ^^^^^^^^^^^^^^ 239s | 239s = note: expected values for `feature` are: `alloc`, `default`, and `std` 239s = help: consider adding `js` as a feature in `Cargo.toml` 239s = note: see for more information about checking conditional configuration 239s = note: `#[warn(unexpected_cfgs)]` on by default 239s 239s warning: unexpected `cfg` condition value: `js` 239s --> /usr/share/cargo/registry/fastrand-2.1.1/src/global_rng.rs:214:9 239s | 239s 214 | not(feature = "js") 239s | ^^^^^^^^^^^^^^ 239s | 239s = note: expected values for `feature` are: `alloc`, `default`, and `std` 239s = help: consider adding `js` as a feature in `Cargo.toml` 239s = note: see for more information about checking conditional configuration 239s 239s warning: `fastrand` (lib) generated 3 warnings (1 duplicate) 239s Compiling futures-lite v2.3.0 239s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=futures_lite CARGO_MANIFEST_DIR=/tmp/tmp.ruvRE753uN/registry/futures-lite-2.3.0 CARGO_MANIFEST_PATH=/tmp/tmp.ruvRE753uN/registry/futures-lite-2.3.0/Cargo.toml CARGO_PKG_AUTHORS='Stjepan Glavina :Contributors to futures-rs' CARGO_PKG_DESCRIPTION='Futures, streams, and async I/O combinators' CARGO_PKG_HOMEPAGE='https://github.com/smol-rs/futures-lite' CARGO_PKG_LICENSE='Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=futures-lite CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/smol-rs/futures-lite' CARGO_PKG_RUST_VERSION=1.60 CARGO_PKG_VERSION=2.3.0 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.ruvRE753uN/target/debug/deps rustc --crate-name futures_lite --edition=2021 /tmp/tmp.ruvRE753uN/registry/futures-lite-2.3.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="alloc"' --cfg 'feature="default"' --cfg 'feature="fastrand"' --cfg 'feature="futures-io"' --cfg 'feature="parking"' --cfg 'feature="race"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "default", "fastrand", "futures-io", "memchr", "parking", "race", "std"))' -C metadata=b3966bcb93a5ad2f -C extra-filename=-b3966bcb93a5ad2f --out-dir /tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.ruvRE753uN/target/debug/deps --extern fastrand=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps/libfastrand-b0f30b63d6f103db.rmeta --extern futures_core=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps/libfutures_core-8d305950da6bf5c8.rmeta --extern futures_io=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps/libfutures_io-1a4387591f8b2b95.rmeta --extern parking=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps/libparking-0a38dc17b1bc33e2.rmeta --extern pin_project_lite=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps/libpin_project_lite-5dc815523e98d889.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.ruvRE753uN/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 239s warning: elided lifetime has a name 239s --> /usr/share/cargo/registry/futures-lite-2.3.0/src/io.rs:1625:88 239s | 239s 1625 | fn read_until<'a>(&'a mut self, byte: u8, buf: &'a mut Vec) -> ReadUntilFuture<'_, Self> 239s | -- lifetime `'a` declared here ^^ this elided lifetime gets resolved as `'a` 239s | 239s = note: `#[warn(elided_named_lifetimes)]` on by default 239s 239s warning: elided lifetime has a name 239s --> /usr/share/cargo/registry/futures-lite-2.3.0/src/io.rs:1658:75 239s | 239s 1658 | fn read_line<'a>(&'a mut self, buf: &'a mut String) -> ReadLineFuture<'_, Self> 239s | -- lifetime `'a` declared here ^^ this elided lifetime gets resolved as `'a` 239s 239s warning: `futures-lite` (lib) generated 3 warnings (1 duplicate) 239s Compiling proc-macro-crate v3.2.0 239s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=proc_macro_crate CARGO_MANIFEST_DIR=/tmp/tmp.ruvRE753uN/registry/proc-macro-crate-3.2.0 CARGO_MANIFEST_PATH=/tmp/tmp.ruvRE753uN/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 239s ' 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.ruvRE753uN/target/debug/deps rustc --crate-name proc_macro_crate --edition=2021 /tmp/tmp.ruvRE753uN/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.ruvRE753uN/target/debug/deps -L dependency=/tmp/tmp.ruvRE753uN/target/debug/deps --extern toml_edit=/tmp/tmp.ruvRE753uN/target/debug/deps/libtoml_edit-89b547630831cc85.rmeta --cap-lints warn` 240s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CFG_PANIC=unwind CARGO_CFG_TARGET_ABI='' CARGO_CFG_TARGET_ARCH=s390x CARGO_CFG_TARGET_ENDIAN=big CARGO_CFG_TARGET_ENV=gnu CARGO_CFG_TARGET_FAMILY=unix CARGO_CFG_TARGET_HAS_ATOMIC=128,16,32,64,8,ptr CARGO_CFG_TARGET_OS=linux CARGO_CFG_TARGET_POINTER_WIDTH=64 CARGO_CFG_TARGET_VENDOR=unknown CARGO_CFG_UNIX='' CARGO_ENCODED_RUSTFLAGS='-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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0--remap-path-prefix/tmp/tmp.ruvRE753uN/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.ruvRE753uN/registry/serde-1.0.217 CARGO_MANIFEST_PATH=/tmp/tmp.ruvRE753uN/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.ruvRE753uN/target/debug/deps:/tmp/tmp.ruvRE753uN/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/build/serde-c08ea6899e623ec6/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.ruvRE753uN/target/debug/build/serde-c22c8603f1f999ec/build-script-build` 240s [serde 1.0.217] cargo:rerun-if-changed=build.rs 240s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_core_cstr) 240s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_core_error) 240s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_core_net) 240s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_core_num_saturating) 240s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_core_try_from) 240s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_diagnostic_namespace) 240s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_float_copysign) 240s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_num_nonzero_signed) 240s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_relaxed_trait_bounds) 240s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_serde_derive) 240s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_std_atomic) 240s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_std_atomic64) 240s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_systemtime_checked_add) 240s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_target_has_atomic) 240s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CFG_PANIC=unwind CARGO_CFG_TARGET_ABI='' CARGO_CFG_TARGET_ARCH=s390x CARGO_CFG_TARGET_ENDIAN=big CARGO_CFG_TARGET_ENV=gnu CARGO_CFG_TARGET_FAMILY=unix CARGO_CFG_TARGET_HAS_ATOMIC=128,16,32,64,8,ptr CARGO_CFG_TARGET_OS=linux CARGO_CFG_TARGET_POINTER_WIDTH=64 CARGO_CFG_TARGET_VENDOR=unknown CARGO_CFG_UNIX='' CARGO_ENCODED_RUSTFLAGS='-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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0--remap-path-prefix/tmp/tmp.ruvRE753uN/registry=/usr/share/cargo/registry-Ctarget-feature=+backchain' CARGO_FEATURE_DEFAULT=1 CARGO_FEATURE_STD=1 CARGO_MANIFEST_DIR=/tmp/tmp.ruvRE753uN/registry/slab-0.4.9 CARGO_MANIFEST_PATH=/tmp/tmp.ruvRE753uN/registry/slab-0.4.9/Cargo.toml CARGO_PKG_AUTHORS='Carl Lerche ' CARGO_PKG_DESCRIPTION='Pre-allocated storage for a uniform data type' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=slab CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/tokio-rs/slab' CARGO_PKG_RUST_VERSION=1.31 CARGO_PKG_VERSION=0.4.9 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=4 CARGO_PKG_VERSION_PATCH=9 CARGO_PKG_VERSION_PRE='' DEBUG=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.ruvRE753uN/target/debug/deps:/tmp/tmp.ruvRE753uN/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/build/slab-2c89ee66d35953a1/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.ruvRE753uN/target/debug/build/slab-95cba3e02497b263/build-script-build` 240s [slab 0.4.9] warning: unstable feature specified for `-Ctarget-feature`: `backchain` 240s [slab 0.4.9] | 240s [slab 0.4.9] = note: this feature is not stably supported; its behavior can change in the future 240s [slab 0.4.9] 240s [slab 0.4.9] warning: 1 warning emitted 240s [slab 0.4.9] 240s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=generic_array CARGO_MANIFEST_DIR=/tmp/tmp.ruvRE753uN/registry/generic-array-0.14.7 CARGO_MANIFEST_PATH=/tmp/tmp.ruvRE753uN/registry/generic-array-0.14.7/Cargo.toml CARGO_PKG_AUTHORS='Bartłomiej Kamiński :Aaron Trent ' CARGO_PKG_DESCRIPTION='Generic types implementing functionality of arrays' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=generic-array CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/fizyk20/generic-array.git' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.14.7 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=14 CARGO_PKG_VERSION_PATCH=7 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.ruvRE753uN/target/debug/deps OUT_DIR=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/build/generic-array-da8fba9a25807be8/out rustc --crate-name generic_array --edition=2015 /tmp/tmp.ruvRE753uN/registry/generic-array-0.14.7/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="more_lengths"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("more_lengths", "serde", "zeroize"))' -C metadata=d02d059964c7aee0 -C extra-filename=-d02d059964c7aee0 --out-dir /tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.ruvRE753uN/target/debug/deps --extern typenum=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps/libtypenum-c66037e8139405ff.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.ruvRE753uN/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain --cfg relaxed_coherence` 240s warning: unexpected `cfg` condition name: `relaxed_coherence` 240s --> /usr/share/cargo/registry/generic-array-0.14.7/src/impls.rs:136:19 240s | 240s 136 | #[cfg(relaxed_coherence)] 240s | ^^^^^^^^^^^^^^^^^ 240s ... 240s 183 | / impl_from! { 240s 184 | | 1 => ::typenum::U1, 240s 185 | | 2 => ::typenum::U2, 240s 186 | | 3 => ::typenum::U3, 240s ... | 240s 215 | | 32 => ::typenum::U32 240s 216 | | } 240s | |_- in this macro invocation 240s | 240s = help: expected names are: `clippy`, `debug_assertions`, `doc`, `docsrs`, `doctest`, `feature`, `fmt_debug`, `miri`, `overflow_checks`, `panic`, `proc_macro`, `relocation_model`, `rustfmt`, `sanitize`, `sanitizer_cfi_generalize_pointers`, `sanitizer_cfi_normalize_integers`, `target_abi`, `target_arch`, `target_endian`, `target_env`, `target_family`, `target_feature`, `target_has_atomic`, `target_has_atomic_equal_alignment`, `target_has_atomic_load_store`, `target_os`, `target_pointer_width`, `target_thread_local`, `target_vendor`, `test`, `ub_checks`, `unix`, and `windows` 240s = help: consider using a Cargo feature instead 240s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 240s [lints.rust] 240s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(relaxed_coherence)'] } 240s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(relaxed_coherence)");` to the top of the `build.rs` 240s = note: see for more information about checking conditional configuration 240s = note: `#[warn(unexpected_cfgs)]` on by default 240s = note: this warning originates in the macro `impl_from` (in Nightly builds, run with -Z macro-backtrace for more info) 240s 240s warning: unexpected `cfg` condition name: `relaxed_coherence` 240s --> /usr/share/cargo/registry/generic-array-0.14.7/src/impls.rs:158:23 240s | 240s 158 | #[cfg(not(relaxed_coherence))] 240s | ^^^^^^^^^^^^^^^^^ 240s ... 240s 183 | / impl_from! { 240s 184 | | 1 => ::typenum::U1, 240s 185 | | 2 => ::typenum::U2, 240s 186 | | 3 => ::typenum::U3, 240s ... | 240s 215 | | 32 => ::typenum::U32 240s 216 | | } 240s | |_- in this macro invocation 240s | 240s = help: consider using a Cargo feature instead 240s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 240s [lints.rust] 240s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(relaxed_coherence)'] } 240s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(relaxed_coherence)");` to the top of the `build.rs` 240s = note: see for more information about checking conditional configuration 240s = note: this warning originates in the macro `impl_from` (in Nightly builds, run with -Z macro-backtrace for more info) 240s 240s warning: unexpected `cfg` condition name: `relaxed_coherence` 240s --> /usr/share/cargo/registry/generic-array-0.14.7/src/impls.rs:136:19 240s | 240s 136 | #[cfg(relaxed_coherence)] 240s | ^^^^^^^^^^^^^^^^^ 240s ... 240s 219 | / impl_from! { 240s 220 | | 33 => ::typenum::U33, 240s 221 | | 34 => ::typenum::U34, 240s 222 | | 35 => ::typenum::U35, 240s ... | 240s 268 | | 1024 => ::typenum::U1024 240s 269 | | } 240s | |_- in this macro invocation 240s | 240s = help: consider using a Cargo feature instead 240s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 240s [lints.rust] 240s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(relaxed_coherence)'] } 240s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(relaxed_coherence)");` to the top of the `build.rs` 240s = note: see for more information about checking conditional configuration 240s = note: this warning originates in the macro `impl_from` (in Nightly builds, run with -Z macro-backtrace for more info) 240s 240s warning: unexpected `cfg` condition name: `relaxed_coherence` 240s --> /usr/share/cargo/registry/generic-array-0.14.7/src/impls.rs:158:23 240s | 240s 158 | #[cfg(not(relaxed_coherence))] 240s | ^^^^^^^^^^^^^^^^^ 240s ... 240s 219 | / impl_from! { 240s 220 | | 33 => ::typenum::U33, 240s 221 | | 34 => ::typenum::U34, 240s 222 | | 35 => ::typenum::U35, 240s ... | 240s 268 | | 1024 => ::typenum::U1024 240s 269 | | } 240s | |_- in this macro invocation 240s | 240s = help: consider using a Cargo feature instead 240s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 240s [lints.rust] 240s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(relaxed_coherence)'] } 240s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(relaxed_coherence)");` to the top of the `build.rs` 240s = note: see for more information about checking conditional configuration 240s = note: this warning originates in the macro `impl_from` (in Nightly builds, run with -Z macro-backtrace for more info) 240s 241s warning: `generic-array` (lib) generated 5 warnings (1 duplicate) 241s Compiling zerocopy-derive v0.7.34 241s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=zerocopy_derive CARGO_MANIFEST_DIR=/tmp/tmp.ruvRE753uN/registry/zerocopy-derive-0.7.34 CARGO_MANIFEST_PATH=/tmp/tmp.ruvRE753uN/registry/zerocopy-derive-0.7.34/Cargo.toml CARGO_PKG_AUTHORS='Joshua Liebow-Feeser ' CARGO_PKG_DESCRIPTION='Custom derive for traits from the zerocopy crate' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='BSD-2-Clause OR Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=zerocopy-derive CARGO_PKG_README='' CARGO_PKG_REPOSITORY='https://github.com/google/zerocopy' CARGO_PKG_RUST_VERSION=1.60.0 CARGO_PKG_VERSION=0.7.34 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=7 CARGO_PKG_VERSION_PATCH=34 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.ruvRE753uN/target/debug/deps rustc --crate-name zerocopy_derive --edition=2018 /tmp/tmp.ruvRE753uN/registry/zerocopy-derive-0.7.34/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type proc-macro --emit=dep-info,link -C prefer-dynamic -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=676bad9287e184ca -C extra-filename=-676bad9287e184ca --out-dir /tmp/tmp.ruvRE753uN/target/debug/deps -L dependency=/tmp/tmp.ruvRE753uN/target/debug/deps --extern proc_macro2=/tmp/tmp.ruvRE753uN/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rlib --extern quote=/tmp/tmp.ruvRE753uN/target/debug/deps/libquote-dc92c6f25ee0f0c6.rlib --extern syn=/tmp/tmp.ruvRE753uN/target/debug/deps/libsyn-0167beed9e699402.rlib --extern proc_macro --cap-lints warn` 241s Compiling serde_derive v1.0.217 241s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=serde_derive CARGO_MANIFEST_DIR=/tmp/tmp.ruvRE753uN/registry/serde_derive-1.0.217 CARGO_MANIFEST_PATH=/tmp/tmp.ruvRE753uN/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.ruvRE753uN/target/debug/deps rustc --crate-name serde_derive --edition=2015 /tmp/tmp.ruvRE753uN/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=85fb19fec9ccb150 -C extra-filename=-85fb19fec9ccb150 --out-dir /tmp/tmp.ruvRE753uN/target/debug/deps -L dependency=/tmp/tmp.ruvRE753uN/target/debug/deps --extern proc_macro2=/tmp/tmp.ruvRE753uN/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rlib --extern quote=/tmp/tmp.ruvRE753uN/target/debug/deps/libquote-dc92c6f25ee0f0c6.rlib --extern syn=/tmp/tmp.ruvRE753uN/target/debug/deps/libsyn-0167beed9e699402.rlib --extern proc_macro --cap-lints warn` 242s Compiling zvariant_utils v2.1.0 242s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=zvariant_utils CARGO_MANIFEST_DIR=/tmp/tmp.ruvRE753uN/registry/zvariant_utils-2.1.0 CARGO_MANIFEST_PATH=/tmp/tmp.ruvRE753uN/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.ruvRE753uN/target/debug/deps rustc --crate-name zvariant_utils --edition=2021 /tmp/tmp.ruvRE753uN/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=555d90bad4acf190 -C extra-filename=-555d90bad4acf190 --out-dir /tmp/tmp.ruvRE753uN/target/debug/deps -L dependency=/tmp/tmp.ruvRE753uN/target/debug/deps --extern proc_macro2=/tmp/tmp.ruvRE753uN/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rmeta --extern quote=/tmp/tmp.ruvRE753uN/target/debug/deps/libquote-dc92c6f25ee0f0c6.rmeta --extern syn=/tmp/tmp.ruvRE753uN/target/debug/deps/libsyn-0167beed9e699402.rmeta --cap-lints warn` 242s Compiling once_cell v1.20.2 242s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=once_cell CARGO_MANIFEST_DIR=/tmp/tmp.ruvRE753uN/registry/once_cell-1.20.2 CARGO_MANIFEST_PATH=/tmp/tmp.ruvRE753uN/registry/once_cell-1.20.2/Cargo.toml CARGO_PKG_AUTHORS='Aleksey Kladov ' CARGO_PKG_DESCRIPTION='Single assignment cells and lazy values.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=once_cell CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/matklad/once_cell' CARGO_PKG_RUST_VERSION=1.60 CARGO_PKG_VERSION=1.20.2 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=20 CARGO_PKG_VERSION_PATCH=2 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.ruvRE753uN/target/debug/deps rustc --crate-name once_cell --edition=2021 /tmp/tmp.ruvRE753uN/registry/once_cell-1.20.2/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="alloc"' --cfg 'feature="default"' --cfg 'feature="race"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "atomic-polyfill", "critical-section", "default", "parking_lot", "portable-atomic", "race", "std", "unstable"))' -C metadata=f9b984852945e4ac -C extra-filename=-f9b984852945e4ac --out-dir /tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.ruvRE753uN/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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.ruvRE753uN/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 242s warning: `once_cell` (lib) generated 1 warning (1 duplicate) 242s Compiling rustix v0.38.37 242s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.ruvRE753uN/registry/rustix-0.38.37 CARGO_MANIFEST_PATH=/tmp/tmp.ruvRE753uN/registry/rustix-0.38.37/Cargo.toml CARGO_PKG_AUTHORS='Dan Gohman :Jakub Konka ' CARGO_PKG_DESCRIPTION='Safe Rust bindings to POSIX/Unix/Linux/Winsock-like syscalls' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=rustix CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/bytecodealliance/rustix' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=0.38.37 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=38 CARGO_PKG_VERSION_PATCH=37 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.ruvRE753uN/target/debug/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.ruvRE753uN/registry/rustix-0.38.37/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --warn=unexpected_cfgs --check-cfg 'cfg(alloc_c_string)' --check-cfg 'cfg(alloc_ffi)' --check-cfg 'cfg(apple)' --check-cfg 'cfg(asm_experimental_arch)' --check-cfg 'cfg(bsd)' --check-cfg 'cfg(core_c_str)' --check-cfg 'cfg(core_ffi_c)' --check-cfg 'cfg(core_intrinsics)' --check-cfg 'cfg(criterion)' --check-cfg 'cfg(document_experimental_runtime_api)' --check-cfg 'cfg(fix_y2038)' --check-cfg 'cfg(freebsdlike)' --check-cfg 'cfg(libc)' --check-cfg 'cfg(linux_kernel)' --check-cfg 'cfg(linux_like)' --check-cfg 'cfg(linux_raw)' --check-cfg 'cfg(netbsdlike)' --check-cfg 'cfg(rustc_attrs)' --check-cfg 'cfg(solarish)' --check-cfg 'cfg(staged_api)' --check-cfg 'cfg(static_assertions)' --check-cfg 'cfg(thumb_mode)' --check-cfg 'cfg(wasi)' --check-cfg 'cfg(wasi_ext)' --check-cfg 'cfg(target_arch, values("xtensa"))' --cfg 'feature="alloc"' --cfg 'feature="event"' --cfg 'feature="fs"' --cfg 'feature="libc-extra-traits"' --cfg 'feature="net"' --cfg 'feature="pipe"' --cfg 'feature="process"' --cfg 'feature="std"' --cfg 'feature="time"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("all-apis", "alloc", "cc", "compiler_builtins", "core", "default", "event", "fs", "io_uring", "itoa", "libc", "libc-extra-traits", "libc_errno", "linux_4_11", "linux_latest", "mm", "mount", "net", "once_cell", "param", "pipe", "process", "procfs", "pty", "rand", "runtime", "rustc-dep-of-std", "shm", "std", "stdio", "system", "termios", "thread", "time", "try_close", "use-explicitly-provided-auxv", "use-libc", "use-libc-auxv"))' -C metadata=8b93b51d2d94d594 -C extra-filename=-8b93b51d2d94d594 --out-dir /tmp/tmp.ruvRE753uN/target/debug/build/rustix-8b93b51d2d94d594 -L dependency=/tmp/tmp.ruvRE753uN/target/debug/deps --cap-lints warn` 243s Compiling bitflags v2.8.0 243s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=bitflags CARGO_MANIFEST_DIR=/tmp/tmp.ruvRE753uN/registry/bitflags-2.8.0 CARGO_MANIFEST_PATH=/tmp/tmp.ruvRE753uN/registry/bitflags-2.8.0/Cargo.toml CARGO_PKG_AUTHORS='The Rust Project Developers' CARGO_PKG_DESCRIPTION='A macro to generate structures which behave like bitflags. 243s ' CARGO_PKG_HOMEPAGE='https://github.com/bitflags/bitflags' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=bitflags CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/bitflags/bitflags' CARGO_PKG_RUST_VERSION=1.56.0 CARGO_PKG_VERSION=2.8.0 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=8 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.ruvRE753uN/target/debug/deps rustc --crate-name bitflags --edition=2021 /tmp/tmp.ruvRE753uN/registry/bitflags-2.8.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("arbitrary", "bytemuck", "compiler_builtins", "core", "example_generated", "rustc-dep-of-std", "serde", "std"))' -C metadata=65f3f529c7b65778 -C extra-filename=-65f3f529c7b65778 --out-dir /tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.ruvRE753uN/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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.ruvRE753uN/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 243s warning: `bitflags` (lib) generated 1 warning (1 duplicate) 243s Compiling byteorder v1.5.0 243s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=byteorder CARGO_MANIFEST_DIR=/tmp/tmp.ruvRE753uN/registry/byteorder-1.5.0 CARGO_MANIFEST_PATH=/tmp/tmp.ruvRE753uN/registry/byteorder-1.5.0/Cargo.toml CARGO_PKG_AUTHORS='Andrew Gallant ' CARGO_PKG_DESCRIPTION='Library for reading/writing numbers in big-endian and little-endian.' CARGO_PKG_HOMEPAGE='https://github.com/BurntSushi/byteorder' CARGO_PKG_LICENSE='Unlicense OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=byteorder CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/BurntSushi/byteorder' CARGO_PKG_RUST_VERSION=1.60 CARGO_PKG_VERSION=1.5.0 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=5 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.ruvRE753uN/target/debug/deps rustc --crate-name byteorder --edition=2021 /tmp/tmp.ruvRE753uN/registry/byteorder-1.5.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "i128", "std"))' -C metadata=89ebf31d1f97ee77 -C extra-filename=-89ebf31d1f97ee77 --out-dir /tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.ruvRE753uN/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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.ruvRE753uN/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 243s warning: `byteorder` (lib) generated 1 warning (1 duplicate) 243s Compiling zerocopy v0.7.34 243s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=zerocopy CARGO_MANIFEST_DIR=/tmp/tmp.ruvRE753uN/registry/zerocopy-0.7.34 CARGO_MANIFEST_PATH=/tmp/tmp.ruvRE753uN/registry/zerocopy-0.7.34/Cargo.toml CARGO_PKG_AUTHORS='Joshua Liebow-Feeser ' CARGO_PKG_DESCRIPTION='Utilities for zero-copy parsing and serialization' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='BSD-2-Clause OR Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=zerocopy CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/google/zerocopy' CARGO_PKG_RUST_VERSION=1.60.0 CARGO_PKG_VERSION=0.7.34 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=7 CARGO_PKG_VERSION_PATCH=34 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.ruvRE753uN/target/debug/deps rustc --crate-name zerocopy --edition=2018 /tmp/tmp.ruvRE753uN/registry/zerocopy-0.7.34/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="byteorder"' --cfg 'feature="default"' --cfg 'feature="derive"' --cfg 'feature="simd"' --cfg 'feature="zerocopy-derive"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("__internal_use_only_features_that_work_on_stable", "alloc", "byteorder", "default", "derive", "simd", "simd-nightly", "zerocopy-derive"))' -C metadata=777d8c6c10ffcfc6 -C extra-filename=-777d8c6c10ffcfc6 --out-dir /tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.ruvRE753uN/target/debug/deps --extern byteorder=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps/libbyteorder-89ebf31d1f97ee77.rmeta --extern zerocopy_derive=/tmp/tmp.ruvRE753uN/target/debug/deps/libzerocopy_derive-676bad9287e184ca.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.ruvRE753uN/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 243s warning: unnecessary qualification 243s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/util.rs:597:32 243s | 243s 597 | let remainder = t.addr() % mem::align_of::(); 243s | ^^^^^^^^^^^^^^^^^^ 243s | 243s note: the lint level is defined here 243s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:174:5 243s | 243s 174 | unused_qualifications, 243s | ^^^^^^^^^^^^^^^^^^^^^ 243s help: remove the unnecessary path segments 243s | 243s 597 - let remainder = t.addr() % mem::align_of::(); 243s 597 + let remainder = t.addr() % align_of::(); 243s | 243s 243s warning: unnecessary qualification 243s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:333:35 243s | 243s 333 | const POINTER_WIDTH_BITS: usize = mem::size_of::() * 8; 243s | ^^^^^^^^^^^^^^^^^^^^^ 243s | 243s help: remove the unnecessary path segments 243s | 243s 333 - const POINTER_WIDTH_BITS: usize = mem::size_of::() * 8; 243s 333 + const POINTER_WIDTH_BITS: usize = size_of::() * 8; 243s | 243s 243s warning: unnecessary qualification 243s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:488:44 243s | 243s 488 | align: match NonZeroUsize::new(mem::align_of::()) { 243s | ^^^^^^^^^^^^^^^^^^ 243s | 243s help: remove the unnecessary path segments 243s | 243s 488 - align: match NonZeroUsize::new(mem::align_of::()) { 243s 488 + align: match NonZeroUsize::new(align_of::()) { 243s | 243s 243s warning: unnecessary qualification 243s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:492:49 243s | 243s 492 | size_info: SizeInfo::Sized { _size: mem::size_of::() }, 243s | ^^^^^^^^^^^^^^^^^ 243s | 243s help: remove the unnecessary path segments 243s | 243s 492 - size_info: SizeInfo::Sized { _size: mem::size_of::() }, 243s 492 + size_info: SizeInfo::Sized { _size: size_of::() }, 243s | 243s 243s warning: unnecessary qualification 243s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:511:44 243s | 243s 511 | align: match NonZeroUsize::new(mem::align_of::()) { 243s | ^^^^^^^^^^^^^^^^^^ 243s | 243s help: remove the unnecessary path segments 243s | 243s 511 - align: match NonZeroUsize::new(mem::align_of::()) { 243s 511 + align: match NonZeroUsize::new(align_of::()) { 243s | 243s 243s warning: unnecessary qualification 243s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:517:29 243s | 243s 517 | _elem_size: mem::size_of::(), 243s | ^^^^^^^^^^^^^^^^^ 243s | 243s help: remove the unnecessary path segments 243s | 243s 517 - _elem_size: mem::size_of::(), 243s 517 + _elem_size: size_of::(), 243s | 243s 243s warning: unnecessary qualification 243s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:1418:19 243s | 243s 1418 | let len = mem::size_of_val(self); 243s | ^^^^^^^^^^^^^^^^ 243s | 243s help: remove the unnecessary path segments 243s | 243s 1418 - let len = mem::size_of_val(self); 243s 1418 + let len = size_of_val(self); 243s | 243s 243s warning: unnecessary qualification 243s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:2714:19 243s | 243s 2714 | let len = mem::size_of_val(self); 243s | ^^^^^^^^^^^^^^^^ 243s | 243s help: remove the unnecessary path segments 243s | 243s 2714 - let len = mem::size_of_val(self); 243s 2714 + let len = size_of_val(self); 243s | 243s 243s warning: unnecessary qualification 243s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:2789:19 243s | 243s 2789 | let len = mem::size_of_val(self); 243s | ^^^^^^^^^^^^^^^^ 243s | 243s help: remove the unnecessary path segments 243s | 243s 2789 - let len = mem::size_of_val(self); 243s 2789 + let len = size_of_val(self); 243s | 243s 243s warning: unnecessary qualification 243s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:2863:27 243s | 243s 2863 | if bytes.len() != mem::size_of_val(self) { 243s | ^^^^^^^^^^^^^^^^ 243s | 243s help: remove the unnecessary path segments 243s | 243s 2863 - if bytes.len() != mem::size_of_val(self) { 243s 2863 + if bytes.len() != size_of_val(self) { 243s | 243s 243s warning: unnecessary qualification 243s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:2920:20 243s | 243s 2920 | let size = mem::size_of_val(self); 243s | ^^^^^^^^^^^^^^^^ 243s | 243s help: remove the unnecessary path segments 243s | 243s 2920 - let size = mem::size_of_val(self); 243s 2920 + let size = size_of_val(self); 243s | 243s 243s warning: unnecessary qualification 243s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:2981:45 243s | 243s 2981 | let start = bytes.len().checked_sub(mem::size_of_val(self))?; 243s | ^^^^^^^^^^^^^^^^ 243s | 243s help: remove the unnecessary path segments 243s | 243s 2981 - let start = bytes.len().checked_sub(mem::size_of_val(self))?; 243s 2981 + let start = bytes.len().checked_sub(size_of_val(self))?; 243s | 243s 243s warning: unnecessary qualification 243s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:4161:27 243s | 243s 4161 | if bytes.len() != mem::size_of::() || !util::aligned_to::<_, T>(bytes.deref()) { 243s | ^^^^^^^^^^^^^^^^^ 243s | 243s help: remove the unnecessary path segments 243s | 243s 4161 - if bytes.len() != mem::size_of::() || !util::aligned_to::<_, T>(bytes.deref()) { 243s 4161 + if bytes.len() != size_of::() || !util::aligned_to::<_, T>(bytes.deref()) { 243s | 243s 243s warning: unnecessary qualification 243s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:4176:26 243s | 243s 4176 | if bytes.len() < mem::size_of::() || !util::aligned_to::<_, T>(bytes.deref()) { 243s | ^^^^^^^^^^^^^^^^^ 243s | 243s help: remove the unnecessary path segments 243s | 243s 4176 - if bytes.len() < mem::size_of::() || !util::aligned_to::<_, T>(bytes.deref()) { 243s 4176 + if bytes.len() < size_of::() || !util::aligned_to::<_, T>(bytes.deref()) { 243s | 243s 243s warning: unnecessary qualification 243s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:4179:46 243s | 243s 4179 | let (bytes, suffix) = bytes.split_at(mem::size_of::()); 243s | ^^^^^^^^^^^^^^^^^ 243s | 243s help: remove the unnecessary path segments 243s | 243s 4179 - let (bytes, suffix) = bytes.split_at(mem::size_of::()); 243s 4179 + let (bytes, suffix) = bytes.split_at(size_of::()); 243s | 243s 243s warning: unnecessary qualification 243s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:4194:46 243s | 243s 4194 | let split_at = bytes_len.checked_sub(mem::size_of::())?; 243s | ^^^^^^^^^^^^^^^^^ 243s | 243s help: remove the unnecessary path segments 243s | 243s 4194 - let split_at = bytes_len.checked_sub(mem::size_of::())?; 243s 4194 + let split_at = bytes_len.checked_sub(size_of::())?; 243s | 243s 243s warning: unnecessary qualification 243s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:4221:26 243s | 243s 4221 | .checked_rem(mem::size_of::()) 243s | ^^^^^^^^^^^^^^^^^ 243s | 243s help: remove the unnecessary path segments 243s | 243s 4221 - .checked_rem(mem::size_of::()) 243s 4221 + .checked_rem(size_of::()) 243s | 243s 243s warning: unnecessary qualification 243s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:4243:34 243s | 243s 4243 | let expected_len = match mem::size_of::().checked_mul(count) { 243s | ^^^^^^^^^^^^^^^^^ 243s | 243s help: remove the unnecessary path segments 243s | 243s 4243 - let expected_len = match mem::size_of::().checked_mul(count) { 243s 4243 + let expected_len = match size_of::().checked_mul(count) { 243s | 243s 243s warning: unnecessary qualification 243s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:4268:34 243s | 243s 4268 | let expected_len = match mem::size_of::().checked_mul(count) { 243s | ^^^^^^^^^^^^^^^^^ 243s | 243s help: remove the unnecessary path segments 243s | 243s 4268 - let expected_len = match mem::size_of::().checked_mul(count) { 243s 4268 + let expected_len = match size_of::().checked_mul(count) { 243s | 243s 243s warning: unnecessary qualification 243s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:4795:25 243s | 243s 4795 | let elem_size = mem::size_of::(); 243s | ^^^^^^^^^^^^^^^^^ 243s | 243s help: remove the unnecessary path segments 243s | 243s 4795 - let elem_size = mem::size_of::(); 243s 4795 + let elem_size = size_of::(); 243s | 243s 243s warning: unnecessary qualification 243s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:4825:25 243s | 243s 4825 | let elem_size = mem::size_of::(); 243s | ^^^^^^^^^^^^^^^^^ 243s | 243s help: remove the unnecessary path segments 243s | 243s 4825 - let elem_size = mem::size_of::(); 243s 4825 + let elem_size = size_of::(); 243s | 243s 243s warning: `zerocopy` (lib) generated 22 warnings (1 duplicate) 243s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CFG_PANIC=unwind CARGO_CFG_TARGET_ABI='' CARGO_CFG_TARGET_ARCH=s390x CARGO_CFG_TARGET_ENDIAN=big CARGO_CFG_TARGET_ENV=gnu CARGO_CFG_TARGET_FAMILY=unix CARGO_CFG_TARGET_HAS_ATOMIC=128,16,32,64,8,ptr CARGO_CFG_TARGET_OS=linux CARGO_CFG_TARGET_POINTER_WIDTH=64 CARGO_CFG_TARGET_VENDOR=unknown CARGO_CFG_UNIX='' CARGO_ENCODED_RUSTFLAGS='-Cdebuginfo=2-Cstrip=none--cap-lintswarn-Clinker=s390x-linux-gnu-gcc-Clink-arg=-Wl,-Bsymbolic-functions-Clink-arg=-flto=auto-Clink-arg=-ffat-lto-objects-Clink-arg=-Wl,-z,relro--remap-path-prefix/usr/share/cargo/registry/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0--remap-path-prefix/tmp/tmp.ruvRE753uN/registry=/usr/share/cargo/registry-Ctarget-feature=+backchain' CARGO_FEATURE_ALLOC=1 CARGO_FEATURE_EVENT=1 CARGO_FEATURE_FS=1 CARGO_FEATURE_LIBC_EXTRA_TRAITS=1 CARGO_FEATURE_NET=1 CARGO_FEATURE_PIPE=1 CARGO_FEATURE_PROCESS=1 CARGO_FEATURE_STD=1 CARGO_FEATURE_TIME=1 CARGO_MANIFEST_DIR=/tmp/tmp.ruvRE753uN/registry/rustix-0.38.37 CARGO_MANIFEST_PATH=/tmp/tmp.ruvRE753uN/registry/rustix-0.38.37/Cargo.toml CARGO_PKG_AUTHORS='Dan Gohman :Jakub Konka ' CARGO_PKG_DESCRIPTION='Safe Rust bindings to POSIX/Unix/Linux/Winsock-like syscalls' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=rustix CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/bytecodealliance/rustix' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=0.38.37 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=38 CARGO_PKG_VERSION_PATCH=37 CARGO_PKG_VERSION_PRE='' DEBUG=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.ruvRE753uN/target/debug/deps:/tmp/tmp.ruvRE753uN/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/build/rustix-bc16aac95f297369/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.ruvRE753uN/target/debug/build/rustix-8b93b51d2d94d594/build-script-build` 243s [rustix 0.38.37] cargo:rerun-if-changed=build.rs 243s [rustix 0.38.37] cargo:rustc-cfg=static_assertions 243s [rustix 0.38.37] cargo:rustc-cfg=libc 243s [rustix 0.38.37] cargo:rustc-cfg=linux_like 243s [rustix 0.38.37] cargo:rustc-cfg=linux_kernel 243s [rustix 0.38.37] cargo:rerun-if-env-changed=CARGO_CFG_RUSTIX_USE_EXPERIMENTAL_ASM 243s [rustix 0.38.37] cargo:rerun-if-env-changed=CARGO_CFG_RUSTIX_USE_LIBC 243s [rustix 0.38.37] cargo:rerun-if-env-changed=CARGO_FEATURE_USE_LIBC 243s [rustix 0.38.37] cargo:rerun-if-env-changed=CARGO_FEATURE_RUSTC_DEP_OF_STD 243s [rustix 0.38.37] cargo:rerun-if-env-changed=CARGO_CFG_MIRI 243s Compiling tracing-core v0.1.32 243s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=tracing_core CARGO_MANIFEST_DIR=/tmp/tmp.ruvRE753uN/registry/tracing-core-0.1.32 CARGO_MANIFEST_PATH=/tmp/tmp.ruvRE753uN/registry/tracing-core-0.1.32/Cargo.toml CARGO_PKG_AUTHORS='Tokio Contributors ' CARGO_PKG_DESCRIPTION='Core primitives for application-level tracing. 243s ' CARGO_PKG_HOMEPAGE='https://tokio.rs' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=tracing-core CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/tokio-rs/tracing' CARGO_PKG_RUST_VERSION=1.56.0 CARGO_PKG_VERSION=0.1.32 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=32 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.ruvRE753uN/target/debug/deps rustc --crate-name tracing_core --edition=2018 /tmp/tmp.ruvRE753uN/registry/tracing-core-0.1.32/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="once_cell"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "once_cell", "std", "valuable"))' -C metadata=4c8af7279fad1469 -C extra-filename=-4c8af7279fad1469 --out-dir /tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.ruvRE753uN/target/debug/deps --extern once_cell=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps/libonce_cell-f9b984852945e4ac.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.ruvRE753uN/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 243s warning: lint `private_in_public` has been removed: replaced with another group of lints, see RFC for more information 243s --> /usr/share/cargo/registry/tracing-core-0.1.32/src/lib.rs:138:5 243s | 243s 138 | private_in_public, 243s | ^^^^^^^^^^^^^^^^^ 243s | 243s = note: `#[warn(renamed_and_removed_lints)]` on by default 243s 243s warning: unexpected `cfg` condition value: `alloc` 243s --> /usr/share/cargo/registry/tracing-core-0.1.32/src/dispatcher.rs:147:7 243s | 243s 147 | #[cfg(feature = "alloc")] 243s | ^^^^^^^^^^^^^^^^^ 243s | 243s = note: expected values for `feature` are: `default`, `once_cell`, `std`, and `valuable` 243s = help: consider adding `alloc` as a feature in `Cargo.toml` 243s = note: see for more information about checking conditional configuration 243s = note: `#[warn(unexpected_cfgs)]` on by default 243s 243s warning: unexpected `cfg` condition value: `alloc` 243s --> /usr/share/cargo/registry/tracing-core-0.1.32/src/dispatcher.rs:150:7 243s | 243s 150 | #[cfg(feature = "alloc")] 243s | ^^^^^^^^^^^^^^^^^ 243s | 243s = note: expected values for `feature` are: `default`, `once_cell`, `std`, and `valuable` 243s = help: consider adding `alloc` as a feature in `Cargo.toml` 243s = note: see for more information about checking conditional configuration 243s 243s warning: unexpected `cfg` condition name: `tracing_unstable` 243s --> /usr/share/cargo/registry/tracing-core-0.1.32/src/field.rs:374:11 243s | 243s 374 | #[cfg(all(tracing_unstable, feature = "valuable"))] 243s | ^^^^^^^^^^^^^^^^ 243s | 243s = help: expected names are: `clippy`, `debug_assertions`, `doc`, `docsrs`, `doctest`, `feature`, `fmt_debug`, `miri`, `overflow_checks`, `panic`, `proc_macro`, `relocation_model`, `rustfmt`, `sanitize`, `sanitizer_cfi_generalize_pointers`, `sanitizer_cfi_normalize_integers`, `target_abi`, `target_arch`, `target_endian`, `target_env`, `target_family`, `target_feature`, `target_has_atomic`, `target_has_atomic_equal_alignment`, `target_has_atomic_load_store`, `target_os`, `target_pointer_width`, `target_thread_local`, `target_vendor`, `test`, `ub_checks`, `unix`, and `windows` 243s = help: consider using a Cargo feature instead 243s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 243s [lints.rust] 243s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tracing_unstable)'] } 243s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tracing_unstable)");` to the top of the `build.rs` 243s = note: see for more information about checking conditional configuration 243s 243s warning: unexpected `cfg` condition name: `tracing_unstable` 243s --> /usr/share/cargo/registry/tracing-core-0.1.32/src/field.rs:719:11 243s | 243s 719 | #[cfg(all(tracing_unstable, feature = "valuable"))] 243s | ^^^^^^^^^^^^^^^^ 243s | 243s = help: consider using a Cargo feature instead 243s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 243s [lints.rust] 243s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tracing_unstable)'] } 243s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tracing_unstable)");` to the top of the `build.rs` 243s = note: see for more information about checking conditional configuration 243s 243s warning: unexpected `cfg` condition name: `tracing_unstable` 243s --> /usr/share/cargo/registry/tracing-core-0.1.32/src/field.rs:722:11 243s | 243s 722 | #[cfg(all(tracing_unstable, feature = "valuable"))] 243s | ^^^^^^^^^^^^^^^^ 243s | 243s = help: consider using a Cargo feature instead 243s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 243s [lints.rust] 243s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tracing_unstable)'] } 243s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tracing_unstable)");` to the top of the `build.rs` 243s = note: see for more information about checking conditional configuration 243s 243s warning: unexpected `cfg` condition name: `tracing_unstable` 243s --> /usr/share/cargo/registry/tracing-core-0.1.32/src/field.rs:730:11 243s | 243s 730 | #[cfg(all(tracing_unstable, feature = "valuable"))] 243s | ^^^^^^^^^^^^^^^^ 243s | 243s = help: consider using a Cargo feature instead 243s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 243s [lints.rust] 243s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tracing_unstable)'] } 243s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tracing_unstable)");` to the top of the `build.rs` 243s = note: see for more information about checking conditional configuration 243s 243s warning: unexpected `cfg` condition name: `tracing_unstable` 243s --> /usr/share/cargo/registry/tracing-core-0.1.32/src/field.rs:733:11 243s | 243s 733 | #[cfg(all(tracing_unstable, feature = "valuable"))] 243s | ^^^^^^^^^^^^^^^^ 243s | 243s = help: consider using a Cargo feature instead 243s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 243s [lints.rust] 243s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tracing_unstable)'] } 243s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tracing_unstable)");` to the top of the `build.rs` 243s = note: see for more information about checking conditional configuration 243s 243s warning: unexpected `cfg` condition name: `tracing_unstable` 243s --> /usr/share/cargo/registry/tracing-core-0.1.32/src/field.rs:270:15 243s | 243s 270 | #[cfg(all(tracing_unstable, feature = "valuable"))] 243s | ^^^^^^^^^^^^^^^^ 243s | 243s = help: consider using a Cargo feature instead 243s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 243s [lints.rust] 243s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tracing_unstable)'] } 243s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tracing_unstable)");` to the top of the `build.rs` 243s = note: see for more information about checking conditional configuration 243s 244s warning: creating a shared reference to mutable static is discouraged 244s --> /usr/share/cargo/registry/tracing-core-0.1.32/src/dispatcher.rs:458:9 244s | 244s 458 | &GLOBAL_DISPATCH 244s | ^^^^^^^^^^^^^^^^ shared reference to mutable static 244s | 244s = note: for more information, see 244s = note: shared references to mutable statics are dangerous; it's undefined behavior if the static is mutated or if a mutable reference is created for it while the shared reference lives 244s = note: `#[warn(static_mut_refs)]` on by default 244s help: use `&raw const` instead to create a raw pointer 244s | 244s 458 | &raw const GLOBAL_DISPATCH 244s | ~~~~~~~~~~ 244s 244s warning: `tracing-core` (lib) generated 11 warnings (1 duplicate) 244s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=slab CARGO_MANIFEST_DIR=/tmp/tmp.ruvRE753uN/registry/slab-0.4.9 CARGO_MANIFEST_PATH=/tmp/tmp.ruvRE753uN/registry/slab-0.4.9/Cargo.toml CARGO_PKG_AUTHORS='Carl Lerche ' CARGO_PKG_DESCRIPTION='Pre-allocated storage for a uniform data type' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=slab CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/tokio-rs/slab' CARGO_PKG_RUST_VERSION=1.31 CARGO_PKG_VERSION=0.4.9 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=4 CARGO_PKG_VERSION_PATCH=9 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.ruvRE753uN/target/debug/deps OUT_DIR=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/build/slab-2c89ee66d35953a1/out rustc --crate-name slab --edition=2018 /tmp/tmp.ruvRE753uN/registry/slab-0.4.9/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "serde", "std"))' -C metadata=36320af34be0827b -C extra-filename=-36320af34be0827b --out-dir /tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.ruvRE753uN/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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.ruvRE753uN/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 244s warning: unexpected `cfg` condition name: `slab_no_const_vec_new` 244s --> /usr/share/cargo/registry/slab-0.4.9/src/lib.rs:250:15 244s | 244s 250 | #[cfg(not(slab_no_const_vec_new))] 244s | ^^^^^^^^^^^^^^^^^^^^^ 244s | 244s = help: expected names are: `clippy`, `debug_assertions`, `doc`, `docsrs`, `doctest`, `feature`, `fmt_debug`, `miri`, `overflow_checks`, `panic`, `proc_macro`, `relocation_model`, `rustfmt`, `sanitize`, `sanitizer_cfi_generalize_pointers`, `sanitizer_cfi_normalize_integers`, `target_abi`, `target_arch`, `target_endian`, `target_env`, `target_family`, `target_feature`, `target_has_atomic`, `target_has_atomic_equal_alignment`, `target_has_atomic_load_store`, `target_os`, `target_pointer_width`, `target_thread_local`, `target_vendor`, `test`, `ub_checks`, `unix`, and `windows` 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(slab_no_const_vec_new)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(slab_no_const_vec_new)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s = note: `#[warn(unexpected_cfgs)]` on by default 244s 244s warning: unexpected `cfg` condition name: `slab_no_const_vec_new` 244s --> /usr/share/cargo/registry/slab-0.4.9/src/lib.rs:264:11 244s | 244s 264 | #[cfg(slab_no_const_vec_new)] 244s | ^^^^^^^^^^^^^^^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(slab_no_const_vec_new)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(slab_no_const_vec_new)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `slab_no_track_caller` 244s --> /usr/share/cargo/registry/slab-0.4.9/src/lib.rs:929:20 244s | 244s 929 | #[cfg_attr(not(slab_no_track_caller), track_caller)] 244s | ^^^^^^^^^^^^^^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(slab_no_track_caller)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(slab_no_track_caller)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `slab_no_track_caller` 244s --> /usr/share/cargo/registry/slab-0.4.9/src/lib.rs:1098:20 244s | 244s 1098 | #[cfg_attr(not(slab_no_track_caller), track_caller)] 244s | ^^^^^^^^^^^^^^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(slab_no_track_caller)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(slab_no_track_caller)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `slab_no_track_caller` 244s --> /usr/share/cargo/registry/slab-0.4.9/src/lib.rs:1206:20 244s | 244s 1206 | #[cfg_attr(not(slab_no_track_caller), track_caller)] 244s | ^^^^^^^^^^^^^^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(slab_no_track_caller)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(slab_no_track_caller)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `slab_no_track_caller` 244s --> /usr/share/cargo/registry/slab-0.4.9/src/lib.rs:1216:20 244s | 244s 1216 | #[cfg_attr(not(slab_no_track_caller), track_caller)] 244s | ^^^^^^^^^^^^^^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(slab_no_track_caller)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(slab_no_track_caller)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: `slab` (lib) generated 7 warnings (1 duplicate) 244s Compiling enumflags2_derive v0.7.10 244s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=enumflags2_derive CARGO_MANIFEST_DIR=/tmp/tmp.ruvRE753uN/registry/enumflags2_derive-0.7.10 CARGO_MANIFEST_PATH=/tmp/tmp.ruvRE753uN/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.ruvRE753uN/target/debug/deps rustc --crate-name enumflags2_derive --edition=2018 /tmp/tmp.ruvRE753uN/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=588090abb48fd7e4 -C extra-filename=-588090abb48fd7e4 --out-dir /tmp/tmp.ruvRE753uN/target/debug/deps -L dependency=/tmp/tmp.ruvRE753uN/target/debug/deps --extern proc_macro2=/tmp/tmp.ruvRE753uN/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rlib --extern quote=/tmp/tmp.ruvRE753uN/target/debug/deps/libquote-dc92c6f25ee0f0c6.rlib --extern syn=/tmp/tmp.ruvRE753uN/target/debug/deps/libsyn-0167beed9e699402.rlib --extern proc_macro --cap-lints warn` 245s Compiling tracing-attributes v0.1.27 245s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=tracing_attributes CARGO_MANIFEST_DIR=/tmp/tmp.ruvRE753uN/registry/tracing-attributes-0.1.27 CARGO_MANIFEST_PATH=/tmp/tmp.ruvRE753uN/registry/tracing-attributes-0.1.27/Cargo.toml CARGO_PKG_AUTHORS='Tokio Contributors :Eliza Weisman :David Barsky ' CARGO_PKG_DESCRIPTION='Procedural macro attributes for automatically instrumenting functions. 245s ' CARGO_PKG_HOMEPAGE='https://tokio.rs' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=tracing-attributes CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/tokio-rs/tracing' CARGO_PKG_RUST_VERSION=1.56.0 CARGO_PKG_VERSION=0.1.27 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=27 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.ruvRE753uN/target/debug/deps rustc --crate-name tracing_attributes --edition=2018 /tmp/tmp.ruvRE753uN/registry/tracing-attributes-0.1.27/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("async-await"))' -C metadata=7f00f49c1aac99bb -C extra-filename=-7f00f49c1aac99bb --out-dir /tmp/tmp.ruvRE753uN/target/debug/deps -L dependency=/tmp/tmp.ruvRE753uN/target/debug/deps --extern proc_macro2=/tmp/tmp.ruvRE753uN/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rlib --extern quote=/tmp/tmp.ruvRE753uN/target/debug/deps/libquote-dc92c6f25ee0f0c6.rlib --extern syn=/tmp/tmp.ruvRE753uN/target/debug/deps/libsyn-0167beed9e699402.rlib --extern proc_macro --cap-lints warn` 245s warning: lint `private_in_public` has been removed: replaced with another group of lints, see RFC for more information 245s --> /tmp/tmp.ruvRE753uN/registry/tracing-attributes-0.1.27/src/lib.rs:73:5 245s | 245s 73 | private_in_public, 245s | ^^^^^^^^^^^^^^^^^ 245s | 245s = note: `#[warn(renamed_and_removed_lints)]` on by default 245s 245s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=serde CARGO_MANIFEST_DIR=/tmp/tmp.ruvRE753uN/registry/serde-1.0.217 CARGO_MANIFEST_PATH=/tmp/tmp.ruvRE753uN/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.ruvRE753uN/target/debug/deps OUT_DIR=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/build/serde-c08ea6899e623ec6/out rustc --crate-name serde --edition=2018 /tmp/tmp.ruvRE753uN/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=0e7dff716e38da0d -C extra-filename=-0e7dff716e38da0d --out-dir /tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.ruvRE753uN/target/debug/deps --extern serde_derive=/tmp/tmp.ruvRE753uN/target/debug/deps/libserde_derive-85fb19fec9ccb150.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.ruvRE753uN/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)'` 247s warning: `tracing-attributes` (lib) generated 1 warning 247s Compiling getrandom v0.2.15 247s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=getrandom CARGO_MANIFEST_DIR=/tmp/tmp.ruvRE753uN/registry/getrandom-0.2.15 CARGO_MANIFEST_PATH=/tmp/tmp.ruvRE753uN/registry/getrandom-0.2.15/Cargo.toml CARGO_PKG_AUTHORS='The Rand Project Developers' CARGO_PKG_DESCRIPTION='A small cross-platform library for retrieving random data from system source' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=getrandom CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-random/getrandom' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.2.15 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=15 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.ruvRE753uN/target/debug/deps rustc --crate-name getrandom --edition=2018 /tmp/tmp.ruvRE753uN/registry/getrandom-0.2.15/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("compiler_builtins", "core", "custom", "linux_disable_fallback", "rdrand", "rustc-dep-of-std", "std", "test-in-browser"))' -C metadata=ed47f71499f7e17d -C extra-filename=-ed47f71499f7e17d --out-dir /tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.ruvRE753uN/target/debug/deps --extern cfg_if=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps/libcfg_if-ff3ff84a061de73f.rmeta --extern libc=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps/liblibc-cf2521928ac070dc.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.ruvRE753uN/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 247s warning: unexpected `cfg` condition value: `js` 247s --> /usr/share/cargo/registry/getrandom-0.2.15/src/lib.rs:334:25 247s | 247s 334 | } else if #[cfg(all(feature = "js", 247s | ^^^^^^^^^^^^^^ 247s | 247s = note: expected values for `feature` are: `compiler_builtins`, `core`, `custom`, `linux_disable_fallback`, `rdrand`, `rustc-dep-of-std`, `std`, and `test-in-browser` 247s = help: consider adding `js` as a feature in `Cargo.toml` 247s = note: see for more information about checking conditional configuration 247s = note: `#[warn(unexpected_cfgs)]` on by default 247s 247s warning: `getrandom` (lib) generated 2 warnings (1 duplicate) 247s Compiling memoffset v0.8.0 247s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.ruvRE753uN/registry/memoffset-0.8.0 CARGO_MANIFEST_PATH=/tmp/tmp.ruvRE753uN/registry/memoffset-0.8.0/Cargo.toml CARGO_PKG_AUTHORS='Gilad Naaman ' CARGO_PKG_DESCRIPTION='offset_of functionality for Rust structs.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=memoffset CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/Gilnaa/memoffset' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.8.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=8 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.ruvRE753uN/target/debug/deps rustc --crate-name build_script_build --edition=2015 /tmp/tmp.ruvRE753uN/registry/memoffset-0.8.0/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "unstable_const"))' -C metadata=b637076bbed49000 -C extra-filename=-b637076bbed49000 --out-dir /tmp/tmp.ruvRE753uN/target/debug/build/memoffset-b637076bbed49000 -L dependency=/tmp/tmp.ruvRE753uN/target/debug/deps --extern autocfg=/tmp/tmp.ruvRE753uN/target/debug/deps/libautocfg-9ebcd9511383083c.rlib --cap-lints warn` 247s Compiling errno v0.3.8 247s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=errno CARGO_MANIFEST_DIR=/tmp/tmp.ruvRE753uN/registry/errno-0.3.8 CARGO_MANIFEST_PATH=/tmp/tmp.ruvRE753uN/registry/errno-0.3.8/Cargo.toml CARGO_PKG_AUTHORS='Chris Wong ' CARGO_PKG_DESCRIPTION='Cross-platform interface to the `errno` variable.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=errno CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/lambda-fairy/rust-errno' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=0.3.8 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=8 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.ruvRE753uN/target/debug/deps rustc --crate-name errno --edition=2018 /tmp/tmp.ruvRE753uN/registry/errno-0.3.8/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "std"))' -C metadata=a511b7e92317ca2a -C extra-filename=-a511b7e92317ca2a --out-dir /tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.ruvRE753uN/target/debug/deps --extern libc=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps/liblibc-cf2521928ac070dc.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.ruvRE753uN/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 247s warning: unexpected `cfg` condition value: `bitrig` 247s --> /usr/share/cargo/registry/errno-0.3.8/src/unix.rs:77:13 247s | 247s 77 | target_os = "bitrig", 247s | ^^^^^^^^^^^^^^^^^^^^ 247s | 247s = note: expected values for `target_os` are: `aix`, `android`, `cuda`, `dragonfly`, `emscripten`, `espidf`, `freebsd`, `fuchsia`, `haiku`, `hermit`, `horizon`, `hurd`, `illumos`, `ios`, `l4re`, `linux`, `macos`, `netbsd`, `none`, `nto`, `nuttx`, `openbsd`, `psp`, `psx`, `redox`, `rtems`, `solaris`, `solid_asp3`, `teeos`, `trusty`, `tvos`, `uefi`, `unknown`, `visionos`, and `vita` and 6 more 247s = note: see for more information about checking conditional configuration 247s = note: `#[warn(unexpected_cfgs)]` on by default 247s 247s warning: `errno` (lib) generated 2 warnings (1 duplicate) 247s Compiling linux-raw-sys v0.4.14 247s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=linux_raw_sys CARGO_MANIFEST_DIR=/tmp/tmp.ruvRE753uN/registry/linux-raw-sys-0.4.14 CARGO_MANIFEST_PATH=/tmp/tmp.ruvRE753uN/registry/linux-raw-sys-0.4.14/Cargo.toml CARGO_PKG_AUTHORS='Dan Gohman ' CARGO_PKG_DESCRIPTION='Generated bindings for Linux'\''s userspace API' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=linux-raw-sys CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/sunfishcode/linux-raw-sys' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=0.4.14 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=4 CARGO_PKG_VERSION_PATCH=14 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.ruvRE753uN/target/debug/deps rustc --crate-name linux_raw_sys --edition=2021 /tmp/tmp.ruvRE753uN/registry/linux-raw-sys-0.4.14/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="general"' --cfg 'feature="if_ether"' --cfg 'feature="ioctl"' --cfg 'feature="net"' --cfg 'feature="netlink"' --cfg 'feature="no_std"' --cfg 'feature="prctl"' --cfg 'feature="xdp"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("bootparam", "compiler_builtins", "core", "default", "elf", "errno", "general", "if_arp", "if_ether", "if_packet", "io_uring", "ioctl", "loop_device", "mempolicy", "net", "netlink", "no_std", "prctl", "rustc-dep-of-std", "std", "system", "xdp"))' -C metadata=df2e18974a94e4e2 -C extra-filename=-df2e18974a94e4e2 --out-dir /tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.ruvRE753uN/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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.ruvRE753uN/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 248s warning: `serde` (lib) generated 1 warning (1 duplicate) 248s Compiling async-task v4.7.1 248s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=async_task CARGO_MANIFEST_DIR=/tmp/tmp.ruvRE753uN/registry/async-task-4.7.1 CARGO_MANIFEST_PATH=/tmp/tmp.ruvRE753uN/registry/async-task-4.7.1/Cargo.toml CARGO_PKG_AUTHORS='Stjepan Glavina ' CARGO_PKG_DESCRIPTION='Task abstraction for building executors' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=async-task CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/smol-rs/async-task' CARGO_PKG_RUST_VERSION=1.57 CARGO_PKG_VERSION=4.7.1 CARGO_PKG_VERSION_MAJOR=4 CARGO_PKG_VERSION_MINOR=7 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.ruvRE753uN/target/debug/deps rustc --crate-name async_task --edition=2021 /tmp/tmp.ruvRE753uN/registry/async-task-4.7.1/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "portable-atomic", "std"))' -C metadata=18059860e85d74b4 -C extra-filename=-18059860e85d74b4 --out-dir /tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.ruvRE753uN/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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.ruvRE753uN/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 248s warning: `async-task` (lib) generated 1 warning (1 duplicate) 248s Compiling cfg_aliases v0.2.1 248s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=cfg_aliases CARGO_MANIFEST_DIR=/tmp/tmp.ruvRE753uN/registry/cfg_aliases-0.2.1 CARGO_MANIFEST_PATH=/tmp/tmp.ruvRE753uN/registry/cfg_aliases-0.2.1/Cargo.toml CARGO_PKG_AUTHORS='Zicklag ' CARGO_PKG_DESCRIPTION='A tiny utility to help save you a lot of effort with long winded `#[cfg()]` checks.' CARGO_PKG_HOMEPAGE='https://github.com/katharostech/cfg_aliases' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=cfg_aliases CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/katharostech/cfg_aliases' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.2.1 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.ruvRE753uN/target/debug/deps rustc --crate-name cfg_aliases --edition=2018 /tmp/tmp.ruvRE753uN/registry/cfg_aliases-0.2.1/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 '--deny=clippy::str_to_string' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=8701cbe9ff8ee006 -C extra-filename=-8701cbe9ff8ee006 --out-dir /tmp/tmp.ruvRE753uN/target/debug/deps -L dependency=/tmp/tmp.ruvRE753uN/target/debug/deps --cap-lints warn` 248s Compiling nix v0.29.0 248s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.ruvRE753uN/registry/nix-0.29.0 CARGO_MANIFEST_PATH=/tmp/tmp.ruvRE753uN/registry/nix-0.29.0/Cargo.toml CARGO_PKG_AUTHORS='The nix-rust Project Developers' CARGO_PKG_DESCRIPTION='Rust friendly bindings to *nix APIs' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=nix CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/nix-rust/nix' CARGO_PKG_RUST_VERSION=1.69 CARGO_PKG_VERSION=0.29.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=29 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.ruvRE753uN/target/debug/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.ruvRE753uN/registry/nix-0.29.0/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="feature"' --cfg 'feature="memoffset"' --cfg 'feature="socket"' --cfg 'feature="uio"' --cfg 'feature="user"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("acct", "aio", "default", "dir", "env", "event", "fanotify", "feature", "fs", "hostname", "inotify", "ioctl", "kmod", "memoffset", "mman", "mount", "mqueue", "net", "personality", "pin-utils", "poll", "process", "pthread", "ptrace", "quota", "reboot", "resource", "sched", "signal", "socket", "term", "time", "ucontext", "uio", "user", "zerocopy"))' -C metadata=9cc97a3a2fcb749b -C extra-filename=-9cc97a3a2fcb749b --out-dir /tmp/tmp.ruvRE753uN/target/debug/build/nix-9cc97a3a2fcb749b -L dependency=/tmp/tmp.ruvRE753uN/target/debug/deps --extern cfg_aliases=/tmp/tmp.ruvRE753uN/target/debug/deps/libcfg_aliases-8701cbe9ff8ee006.rlib --cap-lints warn` 248s warning: `linux-raw-sys` (lib) generated 1 warning (1 duplicate) 248s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=rustix CARGO_MANIFEST_DIR=/tmp/tmp.ruvRE753uN/registry/rustix-0.38.37 CARGO_MANIFEST_PATH=/tmp/tmp.ruvRE753uN/registry/rustix-0.38.37/Cargo.toml CARGO_PKG_AUTHORS='Dan Gohman :Jakub Konka ' CARGO_PKG_DESCRIPTION='Safe Rust bindings to POSIX/Unix/Linux/Winsock-like syscalls' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=rustix CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/bytecodealliance/rustix' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=0.38.37 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=38 CARGO_PKG_VERSION_PATCH=37 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.ruvRE753uN/target/debug/deps OUT_DIR=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/build/rustix-bc16aac95f297369/out rustc --crate-name rustix --edition=2021 /tmp/tmp.ruvRE753uN/registry/rustix-0.38.37/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --warn=unexpected_cfgs --check-cfg 'cfg(alloc_c_string)' --check-cfg 'cfg(alloc_ffi)' --check-cfg 'cfg(apple)' --check-cfg 'cfg(asm_experimental_arch)' --check-cfg 'cfg(bsd)' --check-cfg 'cfg(core_c_str)' --check-cfg 'cfg(core_ffi_c)' --check-cfg 'cfg(core_intrinsics)' --check-cfg 'cfg(criterion)' --check-cfg 'cfg(document_experimental_runtime_api)' --check-cfg 'cfg(fix_y2038)' --check-cfg 'cfg(freebsdlike)' --check-cfg 'cfg(libc)' --check-cfg 'cfg(linux_kernel)' --check-cfg 'cfg(linux_like)' --check-cfg 'cfg(linux_raw)' --check-cfg 'cfg(netbsdlike)' --check-cfg 'cfg(rustc_attrs)' --check-cfg 'cfg(solarish)' --check-cfg 'cfg(staged_api)' --check-cfg 'cfg(static_assertions)' --check-cfg 'cfg(thumb_mode)' --check-cfg 'cfg(wasi)' --check-cfg 'cfg(wasi_ext)' --check-cfg 'cfg(target_arch, values("xtensa"))' --cfg 'feature="alloc"' --cfg 'feature="event"' --cfg 'feature="fs"' --cfg 'feature="libc-extra-traits"' --cfg 'feature="net"' --cfg 'feature="pipe"' --cfg 'feature="process"' --cfg 'feature="std"' --cfg 'feature="time"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("all-apis", "alloc", "cc", "compiler_builtins", "core", "default", "event", "fs", "io_uring", "itoa", "libc", "libc-extra-traits", "libc_errno", "linux_4_11", "linux_latest", "mm", "mount", "net", "once_cell", "param", "pipe", "process", "procfs", "pty", "rand", "runtime", "rustc-dep-of-std", "shm", "std", "stdio", "system", "termios", "thread", "time", "try_close", "use-explicitly-provided-auxv", "use-libc", "use-libc-auxv"))' -C metadata=c5174677adcec892 -C extra-filename=-c5174677adcec892 --out-dir /tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.ruvRE753uN/target/debug/deps --extern bitflags=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps/libbitflags-65f3f529c7b65778.rmeta --extern libc_errno=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps/liberrno-a511b7e92317ca2a.rmeta --extern libc=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps/liblibc-cf2521928ac070dc.rmeta --extern linux_raw_sys=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps/liblinux_raw_sys-df2e18974a94e4e2.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.ruvRE753uN/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain --cfg static_assertions --cfg libc --cfg linux_like --cfg linux_kernel` 248s Compiling enumflags2 v0.7.10 248s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=enumflags2 CARGO_MANIFEST_DIR=/tmp/tmp.ruvRE753uN/registry/enumflags2-0.7.10 CARGO_MANIFEST_PATH=/tmp/tmp.ruvRE753uN/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.ruvRE753uN/target/debug/deps rustc --crate-name enumflags2 --edition=2018 /tmp/tmp.ruvRE753uN/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=2867d32c4b4f39e8 -C extra-filename=-2867d32c4b4f39e8 --out-dir /tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.ruvRE753uN/target/debug/deps --extern enumflags2_derive=/tmp/tmp.ruvRE753uN/target/debug/deps/libenumflags2_derive-588090abb48fd7e4.so --extern serde=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps/libserde-0e7dff716e38da0d.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.ruvRE753uN/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 248s warning: `enumflags2` (lib) generated 1 warning (1 duplicate) 248s 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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0--remap-path-prefix/tmp/tmp.ruvRE753uN/registry=/usr/share/cargo/registry-Ctarget-feature=+backchain' CARGO_FEATURE_DEFAULT=1 CARGO_MANIFEST_DIR=/tmp/tmp.ruvRE753uN/registry/memoffset-0.8.0 CARGO_MANIFEST_PATH=/tmp/tmp.ruvRE753uN/registry/memoffset-0.8.0/Cargo.toml CARGO_PKG_AUTHORS='Gilad Naaman ' CARGO_PKG_DESCRIPTION='offset_of functionality for Rust structs.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=memoffset CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/Gilnaa/memoffset' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.8.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=8 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' DEBUG=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.ruvRE753uN/target/debug/deps:/tmp/tmp.ruvRE753uN/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/build/memoffset-b32fed70cf81e31f/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.ruvRE753uN/target/debug/build/memoffset-b637076bbed49000/build-script-build` 248s [memoffset 0.8.0] warning: unstable feature specified for `-Ctarget-feature`: `backchain` 248s [memoffset 0.8.0] | 248s [memoffset 0.8.0] = note: this feature is not stably supported; its behavior can change in the future 248s [memoffset 0.8.0] 248s [memoffset 0.8.0] warning: 1 warning emitted 248s [memoffset 0.8.0] 248s [memoffset 0.8.0] cargo:rustc-cfg=tuple_ty 248s [memoffset 0.8.0] cargo:rustc-cfg=allow_clippy 248s [memoffset 0.8.0] cargo:rustc-cfg=maybe_uninit 248s [memoffset 0.8.0] cargo:rustc-cfg=doctests 248s [memoffset 0.8.0] cargo:rustc-cfg=raw_ref_macros 248s [memoffset 0.8.0] cargo:rustc-cfg=stable_const 248s Compiling rand_core v0.6.4 248s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=rand_core CARGO_MANIFEST_DIR=/tmp/tmp.ruvRE753uN/registry/rand_core-0.6.4 CARGO_MANIFEST_PATH=/tmp/tmp.ruvRE753uN/registry/rand_core-0.6.4/Cargo.toml CARGO_PKG_AUTHORS='The Rand Project Developers:The Rust Project Developers' CARGO_PKG_DESCRIPTION='Core random number generator traits and tools for implementation. 248s ' CARGO_PKG_HOMEPAGE='https://rust-random.github.io/book' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=rand_core CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-random/rand' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.6.4 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=6 CARGO_PKG_VERSION_PATCH=4 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.ruvRE753uN/target/debug/deps rustc --crate-name rand_core --edition=2018 /tmp/tmp.ruvRE753uN/registry/rand_core-0.6.4/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="alloc"' --cfg 'feature="getrandom"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "getrandom", "serde", "serde1", "std"))' -C metadata=3c7246ca3f419bbc -C extra-filename=-3c7246ca3f419bbc --out-dir /tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.ruvRE753uN/target/debug/deps --extern getrandom=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps/libgetrandom-ed47f71499f7e17d.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.ruvRE753uN/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 248s warning: unexpected `cfg` condition name: `doc_cfg` 248s --> /usr/share/cargo/registry/rand_core-0.6.4/src/lib.rs:38:13 248s | 248s 38 | #![cfg_attr(doc_cfg, feature(doc_cfg))] 248s | ^^^^^^^ 248s | 248s = help: expected names are: `clippy`, `debug_assertions`, `doc`, `docsrs`, `doctest`, `feature`, `fmt_debug`, `miri`, `overflow_checks`, `panic`, `proc_macro`, `relocation_model`, `rustfmt`, `sanitize`, `sanitizer_cfi_generalize_pointers`, `sanitizer_cfi_normalize_integers`, `target_abi`, `target_arch`, `target_endian`, `target_env`, `target_family`, `target_feature`, `target_has_atomic`, `target_has_atomic_equal_alignment`, `target_has_atomic_load_store`, `target_os`, `target_pointer_width`, `target_thread_local`, `target_vendor`, `test`, `ub_checks`, `unix`, and `windows` 248s = help: consider using a Cargo feature instead 248s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 248s [lints.rust] 248s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 248s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 248s = note: see for more information about checking conditional configuration 248s = note: `#[warn(unexpected_cfgs)]` on by default 248s 248s warning: unexpected `cfg` condition name: `doc_cfg` 248s --> /usr/share/cargo/registry/rand_core-0.6.4/src/error.rs:50:16 248s | 248s 50 | #[cfg_attr(doc_cfg, doc(cfg(feature = "std")))] 248s | ^^^^^^^ 248s | 248s = help: consider using a Cargo feature instead 248s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 248s [lints.rust] 248s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 248s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 248s = note: see for more information about checking conditional configuration 248s 248s warning: unexpected `cfg` condition name: `doc_cfg` 248s --> /usr/share/cargo/registry/rand_core-0.6.4/src/error.rs:64:16 248s | 248s 64 | #[cfg_attr(doc_cfg, doc(cfg(feature = "std")))] 248s | ^^^^^^^ 248s | 248s = help: consider using a Cargo feature instead 248s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 248s [lints.rust] 248s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 248s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 248s = note: see for more information about checking conditional configuration 248s 248s warning: unexpected `cfg` condition name: `doc_cfg` 248s --> /usr/share/cargo/registry/rand_core-0.6.4/src/error.rs:75:16 248s | 248s 75 | #[cfg_attr(doc_cfg, doc(cfg(feature = "std")))] 248s | ^^^^^^^ 248s | 248s = help: consider using a Cargo feature instead 248s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 248s [lints.rust] 248s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 248s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 248s = note: see for more information about checking conditional configuration 248s 248s warning: unexpected `cfg` condition name: `doc_cfg` 248s --> /usr/share/cargo/registry/rand_core-0.6.4/src/os.rs:46:12 248s | 248s 46 | #[cfg_attr(doc_cfg, doc(cfg(feature = "getrandom")))] 248s | ^^^^^^^ 248s | 248s = help: consider using a Cargo feature instead 248s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 248s [lints.rust] 248s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 248s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 248s = note: see for more information about checking conditional configuration 248s 248s warning: unexpected `cfg` condition name: `doc_cfg` 248s --> /usr/share/cargo/registry/rand_core-0.6.4/src/lib.rs:411:16 248s | 248s 411 | #[cfg_attr(doc_cfg, doc(cfg(feature = "getrandom")))] 248s | ^^^^^^^ 248s | 248s = help: consider using a Cargo feature instead 248s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 248s [lints.rust] 248s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 248s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 248s = note: see for more information about checking conditional configuration 248s 249s warning: `rand_core` (lib) generated 7 warnings (1 duplicate) 249s Compiling tracing v0.1.40 249s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=tracing CARGO_MANIFEST_DIR=/tmp/tmp.ruvRE753uN/registry/tracing-0.1.40 CARGO_MANIFEST_PATH=/tmp/tmp.ruvRE753uN/registry/tracing-0.1.40/Cargo.toml CARGO_PKG_AUTHORS='Eliza Weisman :Tokio Contributors ' CARGO_PKG_DESCRIPTION='Application-level tracing for Rust. 249s ' CARGO_PKG_HOMEPAGE='https://tokio.rs' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=tracing CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/tokio-rs/tracing' CARGO_PKG_RUST_VERSION=1.56.0 CARGO_PKG_VERSION=0.1.40 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=40 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.ruvRE753uN/target/debug/deps rustc --crate-name tracing --edition=2018 /tmp/tmp.ruvRE753uN/registry/tracing-0.1.40/src/lib.rs --error-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="attributes"' --cfg 'feature="default"' --cfg 'feature="std"' --cfg 'feature="tracing-attributes"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("async-await", "attributes", "default", "log", "log-always", "max_level_debug", "max_level_error", "max_level_info", "max_level_off", "max_level_trace", "max_level_warn", "release_max_level_debug", "release_max_level_error", "release_max_level_info", "release_max_level_off", "release_max_level_trace", "release_max_level_warn", "std", "tracing-attributes"))' -C metadata=5f8a2432d30b4ef1 -C extra-filename=-5f8a2432d30b4ef1 --out-dir /tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.ruvRE753uN/target/debug/deps --extern pin_project_lite=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps/libpin_project_lite-5dc815523e98d889.rmeta --extern tracing_attributes=/tmp/tmp.ruvRE753uN/target/debug/deps/libtracing_attributes-7f00f49c1aac99bb.so --extern tracing_core=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps/libtracing_core-4c8af7279fad1469.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.ruvRE753uN/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 249s warning: lint `private_in_public` has been removed: replaced with another group of lints, see RFC for more information 249s --> /usr/share/cargo/registry/tracing-0.1.40/src/lib.rs:932:5 249s | 249s 932 | private_in_public, 249s | ^^^^^^^^^^^^^^^^^ 249s | 249s = note: `#[warn(renamed_and_removed_lints)]` on by default 249s 249s warning: `tracing` (lib) generated 2 warnings (1 duplicate) 249s Compiling ppv-lite86 v0.2.20 249s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=ppv_lite86 CARGO_MANIFEST_DIR=/tmp/tmp.ruvRE753uN/registry/ppv-lite86-0.2.20 CARGO_MANIFEST_PATH=/tmp/tmp.ruvRE753uN/registry/ppv-lite86-0.2.20/Cargo.toml CARGO_PKG_AUTHORS='The CryptoCorrosion Contributors' CARGO_PKG_DESCRIPTION='Implementation of the crypto-simd API for x86' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=ppv-lite86 CARGO_PKG_README='' CARGO_PKG_REPOSITORY='https://github.com/cryptocorrosion/cryptocorrosion' CARGO_PKG_RUST_VERSION=1.61 CARGO_PKG_VERSION=0.2.20 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=20 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.ruvRE753uN/target/debug/deps rustc --crate-name ppv_lite86 --edition=2021 /tmp/tmp.ruvRE753uN/registry/ppv-lite86-0.2.20/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="simd"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "no_simd", "simd", "std"))' -C metadata=57e5b566e2a71c09 -C extra-filename=-57e5b566e2a71c09 --out-dir /tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.ruvRE753uN/target/debug/deps --extern zerocopy=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps/libzerocopy-777d8c6c10ffcfc6.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.ruvRE753uN/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 249s warning: `ppv-lite86` (lib) generated 1 warning (1 duplicate) 249s Compiling zvariant_derive v4.2.0 249s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=zvariant_derive CARGO_MANIFEST_DIR=/tmp/tmp.ruvRE753uN/registry/zvariant_derive-4.2.0 CARGO_MANIFEST_PATH=/tmp/tmp.ruvRE753uN/registry/zvariant_derive-4.2.0/Cargo.toml CARGO_PKG_AUTHORS='Zeeshan Ali Khan ' CARGO_PKG_DESCRIPTION='D-Bus & GVariant encoding & decoding' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=zvariant_derive CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dbus2/zbus/' CARGO_PKG_RUST_VERSION=1.75 CARGO_PKG_VERSION=4.2.0 CARGO_PKG_VERSION_MAJOR=4 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.ruvRE753uN/target/debug/deps rustc --crate-name zvariant_derive --edition=2021 /tmp/tmp.ruvRE753uN/registry/zvariant_derive-4.2.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type proc-macro --emit=dep-info,link -C prefer-dynamic -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=307afde79edbb6d8 -C extra-filename=-307afde79edbb6d8 --out-dir /tmp/tmp.ruvRE753uN/target/debug/deps -L dependency=/tmp/tmp.ruvRE753uN/target/debug/deps --extern proc_macro_crate=/tmp/tmp.ruvRE753uN/target/debug/deps/libproc_macro_crate-900b46bff7d8f3e2.rlib --extern proc_macro2=/tmp/tmp.ruvRE753uN/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rlib --extern quote=/tmp/tmp.ruvRE753uN/target/debug/deps/libquote-dc92c6f25ee0f0c6.rlib --extern syn=/tmp/tmp.ruvRE753uN/target/debug/deps/libsyn-0167beed9e699402.rlib --extern zvariant_utils=/tmp/tmp.ruvRE753uN/target/debug/deps/libzvariant_utils-555d90bad4acf190.rlib --extern proc_macro --cap-lints warn` 250s Compiling block-buffer v0.10.2 250s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=block_buffer CARGO_MANIFEST_DIR=/tmp/tmp.ruvRE753uN/registry/block-buffer-0.10.2 CARGO_MANIFEST_PATH=/tmp/tmp.ruvRE753uN/registry/block-buffer-0.10.2/Cargo.toml CARGO_PKG_AUTHORS='RustCrypto Developers' CARGO_PKG_DESCRIPTION='Buffer type for block processing of data' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=block-buffer CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/RustCrypto/utils' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.10.2 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=10 CARGO_PKG_VERSION_PATCH=2 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.ruvRE753uN/target/debug/deps rustc --crate-name block_buffer --edition=2018 /tmp/tmp.ruvRE753uN/registry/block-buffer-0.10.2/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=4cd3db619b1d8e9e -C extra-filename=-4cd3db619b1d8e9e --out-dir /tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.ruvRE753uN/target/debug/deps --extern generic_array=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps/libgeneric_array-d02d059964c7aee0.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.ruvRE753uN/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 250s warning: `block-buffer` (lib) generated 1 warning (1 duplicate) 250s Compiling crypto-common v0.1.6 250s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=crypto_common CARGO_MANIFEST_DIR=/tmp/tmp.ruvRE753uN/registry/crypto-common-0.1.6 CARGO_MANIFEST_PATH=/tmp/tmp.ruvRE753uN/registry/crypto-common-0.1.6/Cargo.toml CARGO_PKG_AUTHORS='RustCrypto Developers' CARGO_PKG_DESCRIPTION='Common cryptographic traits' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=crypto-common CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/RustCrypto/traits' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.1.6 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=6 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.ruvRE753uN/target/debug/deps rustc --crate-name crypto_common --edition=2018 /tmp/tmp.ruvRE753uN/registry/crypto-common-0.1.6/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("getrandom", "rand_core", "std"))' -C metadata=77cd648c700afbb2 -C extra-filename=-77cd648c700afbb2 --out-dir /tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.ruvRE753uN/target/debug/deps --extern generic_array=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps/libgeneric_array-d02d059964c7aee0.rmeta --extern typenum=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps/libtypenum-c66037e8139405ff.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.ruvRE753uN/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 250s warning: `crypto-common` (lib) generated 1 warning (1 duplicate) 250s Compiling async-lock v3.4.0 250s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=async_lock CARGO_MANIFEST_DIR=/tmp/tmp.ruvRE753uN/registry/async-lock-3.4.0 CARGO_MANIFEST_PATH=/tmp/tmp.ruvRE753uN/registry/async-lock-3.4.0/Cargo.toml CARGO_PKG_AUTHORS='Stjepan Glavina ' CARGO_PKG_DESCRIPTION='Async synchronization primitives' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=async-lock CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/smol-rs/async-lock' CARGO_PKG_RUST_VERSION=1.60 CARGO_PKG_VERSION=3.4.0 CARGO_PKG_VERSION_MAJOR=3 CARGO_PKG_VERSION_MINOR=4 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.ruvRE753uN/target/debug/deps rustc --crate-name async_lock --edition=2021 /tmp/tmp.ruvRE753uN/registry/async-lock-3.4.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --warn=unexpected_cfgs --check-cfg 'cfg(loom)' --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "std"))' -C metadata=ac8045c9d37e641a -C extra-filename=-ac8045c9d37e641a --out-dir /tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.ruvRE753uN/target/debug/deps --extern event_listener=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps/libevent_listener-4260d59234261e59.rmeta --extern event_listener_strategy=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps/libevent_listener_strategy-53ebcc1cb10a7931.rmeta --extern pin_project_lite=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps/libpin_project_lite-5dc815523e98d889.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.ruvRE753uN/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 251s warning: `async-lock` (lib) generated 1 warning (1 duplicate) 251s Compiling async-channel v2.3.1 251s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=async_channel CARGO_MANIFEST_DIR=/tmp/tmp.ruvRE753uN/registry/async-channel-2.3.1 CARGO_MANIFEST_PATH=/tmp/tmp.ruvRE753uN/registry/async-channel-2.3.1/Cargo.toml CARGO_PKG_AUTHORS='Stjepan Glavina ' CARGO_PKG_DESCRIPTION='Async multi-producer multi-consumer channel' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=async-channel CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/smol-rs/async-channel' CARGO_PKG_RUST_VERSION=1.60 CARGO_PKG_VERSION=2.3.1 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.ruvRE753uN/target/debug/deps rustc --crate-name async_channel --edition=2021 /tmp/tmp.ruvRE753uN/registry/async-channel-2.3.1/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "std"))' -C metadata=b5364c34e3b23819 -C extra-filename=-b5364c34e3b23819 --out-dir /tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.ruvRE753uN/target/debug/deps --extern concurrent_queue=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps/libconcurrent_queue-7e82393ecc7068db.rmeta --extern event_listener_strategy=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps/libevent_listener_strategy-53ebcc1cb10a7931.rmeta --extern futures_core=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps/libfutures_core-8d305950da6bf5c8.rmeta --extern pin_project_lite=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps/libpin_project_lite-5dc815523e98d889.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.ruvRE753uN/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 251s warning: `async-channel` (lib) generated 1 warning (1 duplicate) 251s Compiling atomic-waker v1.1.2 251s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=atomic_waker CARGO_MANIFEST_DIR=/tmp/tmp.ruvRE753uN/registry/atomic-waker-1.1.2 CARGO_MANIFEST_PATH=/tmp/tmp.ruvRE753uN/registry/atomic-waker-1.1.2/Cargo.toml CARGO_PKG_AUTHORS='Stjepan Glavina :Contributors to futures-rs' CARGO_PKG_DESCRIPTION='A synchronization primitive for task wakeup' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=atomic-waker CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/smol-rs/atomic-waker' CARGO_PKG_RUST_VERSION=1.36 CARGO_PKG_VERSION=1.1.2 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=2 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.ruvRE753uN/target/debug/deps rustc --crate-name atomic_waker --edition=2018 /tmp/tmp.ruvRE753uN/registry/atomic-waker-1.1.2/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=9de928cbdc5a8495 -C extra-filename=-9de928cbdc5a8495 --out-dir /tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.ruvRE753uN/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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.ruvRE753uN/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 251s warning: unexpected `cfg` condition value: `portable-atomic` 251s --> /usr/share/cargo/registry/atomic-waker-1.1.2/src/lib.rs:26:11 251s | 251s 26 | #[cfg(not(feature = "portable-atomic"))] 251s | ^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: remove the condition 251s | 251s = note: no expected values for `feature` 251s = help: consider adding `portable-atomic` as a feature in `Cargo.toml` 251s = note: see for more information about checking conditional configuration 251s = note: `#[warn(unexpected_cfgs)]` on by default 251s 251s warning: unexpected `cfg` condition value: `portable-atomic` 251s --> /usr/share/cargo/registry/atomic-waker-1.1.2/src/lib.rs:28:7 251s | 251s 28 | #[cfg(feature = "portable-atomic")] 251s | ^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: remove the condition 251s | 251s = note: no expected values for `feature` 251s = help: consider adding `portable-atomic` as a feature in `Cargo.toml` 251s = note: see for more information about checking conditional configuration 251s 251s warning: trait `AssertSync` is never used 251s --> /usr/share/cargo/registry/atomic-waker-1.1.2/src/lib.rs:226:15 251s | 251s 226 | trait AssertSync: Sync {} 251s | ^^^^^^^^^^ 251s | 251s = note: `#[warn(dead_code)]` on by default 251s 251s warning: `atomic-waker` (lib) generated 4 warnings (1 duplicate) 251s Compiling static_assertions v1.1.0 251s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=static_assertions CARGO_MANIFEST_DIR=/tmp/tmp.ruvRE753uN/registry/static_assertions-1.1.0 CARGO_MANIFEST_PATH=/tmp/tmp.ruvRE753uN/registry/static_assertions-1.1.0/Cargo.toml CARGO_PKG_AUTHORS='Nikolai Vazquez' CARGO_PKG_DESCRIPTION='Compile-time assertions to ensure that invariants are met.' CARGO_PKG_HOMEPAGE='https://github.com/nvzqz/static-assertions-rs' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=static_assertions CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/nvzqz/static-assertions-rs' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=1.1.0 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.ruvRE753uN/target/debug/deps rustc --crate-name static_assertions --edition=2015 /tmp/tmp.ruvRE753uN/registry/static_assertions-1.1.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("nightly"))' -C metadata=18df01cc327facaa -C extra-filename=-18df01cc327facaa --out-dir /tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.ruvRE753uN/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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.ruvRE753uN/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 251s warning: `static_assertions` (lib) generated 1 warning (1 duplicate) 251s Compiling endi v1.1.0 251s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=endi CARGO_MANIFEST_DIR=/tmp/tmp.ruvRE753uN/registry/endi-1.1.0 CARGO_MANIFEST_PATH=/tmp/tmp.ruvRE753uN/registry/endi-1.1.0/Cargo.toml CARGO_PKG_AUTHORS='Zeeshan Ali Khan ' CARGO_PKG_DESCRIPTION='A simple endian-handling library' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=endi CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/zeenix/endi' CARGO_PKG_RUST_VERSION=1.60 CARGO_PKG_VERSION=1.1.0 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.ruvRE753uN/target/debug/deps rustc --crate-name endi --edition=2021 /tmp/tmp.ruvRE753uN/registry/endi-1.1.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "std"))' -C metadata=6479300693b4fccf -C extra-filename=-6479300693b4fccf --out-dir /tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.ruvRE753uN/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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.ruvRE753uN/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 251s warning: `endi` (lib) generated 1 warning (1 duplicate) 251s Compiling zvariant v4.2.0 251s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=zvariant CARGO_MANIFEST_DIR=/tmp/tmp.ruvRE753uN/registry/zvariant-4.2.0 CARGO_MANIFEST_PATH=/tmp/tmp.ruvRE753uN/registry/zvariant-4.2.0/Cargo.toml CARGO_PKG_AUTHORS='Zeeshan Ali Khan ' CARGO_PKG_DESCRIPTION='D-Bus & GVariant encoding & decoding' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=zvariant CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dbus2/zbus/' CARGO_PKG_RUST_VERSION=1.75 CARGO_PKG_VERSION=4.2.0 CARGO_PKG_VERSION_MAJOR=4 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.ruvRE753uN/target/debug/deps rustc --crate-name zvariant --edition=2021 /tmp/tmp.ruvRE753uN/registry/zvariant-4.2.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="enumflags2"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("arrayvec", "chrono", "default", "enumflags2", "gvariant", "heapless", "option-as-array", "ostree-tests", "serde_bytes", "time", "url", "uuid"))' -C metadata=f63ab59735f855c5 -C extra-filename=-f63ab59735f855c5 --out-dir /tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.ruvRE753uN/target/debug/deps --extern endi=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps/libendi-6479300693b4fccf.rmeta --extern enumflags2=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps/libenumflags2-2867d32c4b4f39e8.rmeta --extern serde=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps/libserde-0e7dff716e38da0d.rmeta --extern static_assertions=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps/libstatic_assertions-18df01cc327facaa.rmeta --extern zvariant_derive=/tmp/tmp.ruvRE753uN/target/debug/deps/libzvariant_derive-307afde79edbb6d8.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.ruvRE753uN/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 252s warning: `rustix` (lib) generated 1 warning (1 duplicate) 252s Compiling blocking v1.6.1 252s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=blocking CARGO_MANIFEST_DIR=/tmp/tmp.ruvRE753uN/registry/blocking-1.6.1 CARGO_MANIFEST_PATH=/tmp/tmp.ruvRE753uN/registry/blocking-1.6.1/Cargo.toml CARGO_PKG_AUTHORS='Stjepan Glavina ' CARGO_PKG_DESCRIPTION='A thread pool for isolating blocking I/O in async programs' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=blocking CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/smol-rs/blocking' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=1.6.1 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=6 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.ruvRE753uN/target/debug/deps rustc --crate-name blocking --edition=2021 /tmp/tmp.ruvRE753uN/registry/blocking-1.6.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("tracing"))' -C metadata=eab10f1f364dd315 -C extra-filename=-eab10f1f364dd315 --out-dir /tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.ruvRE753uN/target/debug/deps --extern async_channel=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps/libasync_channel-b5364c34e3b23819.rmeta --extern async_task=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps/libasync_task-18059860e85d74b4.rmeta --extern atomic_waker=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps/libatomic_waker-9de928cbdc5a8495.rmeta --extern fastrand=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps/libfastrand-b0f30b63d6f103db.rmeta --extern futures_io=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps/libfutures_io-1a4387591f8b2b95.rmeta --extern futures_lite=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps/libfutures_lite-b3966bcb93a5ad2f.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.ruvRE753uN/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 253s warning: `blocking` (lib) generated 1 warning (1 duplicate) 253s Compiling polling v3.4.0 253s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=polling CARGO_MANIFEST_DIR=/tmp/tmp.ruvRE753uN/registry/polling-3.4.0 CARGO_MANIFEST_PATH=/tmp/tmp.ruvRE753uN/registry/polling-3.4.0/Cargo.toml CARGO_PKG_AUTHORS='Stjepan Glavina :John Nunley ' CARGO_PKG_DESCRIPTION='Portable interface to epoll, kqueue, event ports, and IOCP' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=polling CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/smol-rs/polling' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=3.4.0 CARGO_PKG_VERSION_MAJOR=3 CARGO_PKG_VERSION_MINOR=4 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.ruvRE753uN/target/debug/deps rustc --crate-name polling --edition=2021 /tmp/tmp.ruvRE753uN/registry/polling-3.4.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=8ea21ac6becc74d7 -C extra-filename=-8ea21ac6becc74d7 --out-dir /tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.ruvRE753uN/target/debug/deps --extern cfg_if=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps/libcfg_if-ff3ff84a061de73f.rmeta --extern rustix=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps/librustix-c5174677adcec892.rmeta --extern tracing=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps/libtracing-5f8a2432d30b4ef1.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.ruvRE753uN/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 253s warning: unexpected `cfg` condition name: `polling_test_poll_backend` 253s --> /usr/share/cargo/registry/polling-3.4.0/src/lib.rs:954:9 253s | 253s 954 | not(polling_test_poll_backend), 253s | ^^^^^^^^^^^^^^^^^^^^^^^^^ 253s | 253s = help: expected names are: `clippy`, `debug_assertions`, `doc`, `docsrs`, `doctest`, `feature`, `fmt_debug`, `miri`, `overflow_checks`, `panic`, `proc_macro`, `relocation_model`, `rustfmt`, `sanitize`, `sanitizer_cfi_generalize_pointers`, `sanitizer_cfi_normalize_integers`, `target_abi`, `target_arch`, `target_endian`, `target_env`, `target_family`, `target_feature`, `target_has_atomic`, `target_has_atomic_equal_alignment`, `target_has_atomic_load_store`, `target_os`, `target_pointer_width`, `target_thread_local`, `target_vendor`, `test`, `ub_checks`, `unix`, and `windows` 253s = help: consider using a Cargo feature instead 253s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 253s [lints.rust] 253s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(polling_test_poll_backend)'] } 253s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(polling_test_poll_backend)");` to the top of the `build.rs` 253s = note: see for more information about checking conditional configuration 253s = note: `#[warn(unexpected_cfgs)]` on by default 253s 253s warning: unexpected `cfg` condition name: `polling_test_poll_backend` 253s --> /usr/share/cargo/registry/polling-3.4.0/src/lib.rs:80:14 253s | 253s 80 | if #[cfg(polling_test_poll_backend)] { 253s | ^^^^^^^^^^^^^^^^^^^^^^^^^ 253s | 253s = help: consider using a Cargo feature instead 253s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 253s [lints.rust] 253s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(polling_test_poll_backend)'] } 253s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(polling_test_poll_backend)");` to the top of the `build.rs` 253s = note: see for more information about checking conditional configuration 253s 253s warning: unexpected `cfg` condition name: `polling_test_epoll_pipe` 253s --> /usr/share/cargo/registry/polling-3.4.0/src/epoll.rs:404:18 253s | 253s 404 | if !cfg!(polling_test_epoll_pipe) { 253s | ^^^^^^^^^^^^^^^^^^^^^^^ 253s | 253s = help: consider using a Cargo feature instead 253s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 253s [lints.rust] 253s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(polling_test_epoll_pipe)'] } 253s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(polling_test_epoll_pipe)");` to the top of the `build.rs` 253s = note: see for more information about checking conditional configuration 253s 253s warning: unexpected `cfg` condition name: `polling_test_poll_backend` 253s --> /usr/share/cargo/registry/polling-3.4.0/src/os.rs:14:9 253s | 253s 14 | not(polling_test_poll_backend), 253s | ^^^^^^^^^^^^^^^^^^^^^^^^^ 253s | 253s = help: consider using a Cargo feature instead 253s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 253s [lints.rust] 253s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(polling_test_poll_backend)'] } 253s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(polling_test_poll_backend)");` to the top of the `build.rs` 253s = note: see for more information about checking conditional configuration 253s 253s warning: trait `PollerSealed` is never used 253s --> /usr/share/cargo/registry/polling-3.4.0/src/os.rs:23:15 253s | 253s 23 | pub trait PollerSealed {} 253s | ^^^^^^^^^^^^ 253s | 253s = note: `#[warn(dead_code)]` on by default 253s 253s warning: `polling` (lib) generated 6 warnings (1 duplicate) 253s Compiling digest v0.10.7 253s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=digest CARGO_MANIFEST_DIR=/tmp/tmp.ruvRE753uN/registry/digest-0.10.7 CARGO_MANIFEST_PATH=/tmp/tmp.ruvRE753uN/registry/digest-0.10.7/Cargo.toml CARGO_PKG_AUTHORS='RustCrypto Developers' CARGO_PKG_DESCRIPTION='Traits for cryptographic hash functions and message authentication codes' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=digest CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/RustCrypto/traits' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.10.7 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=10 CARGO_PKG_VERSION_PATCH=7 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.ruvRE753uN/target/debug/deps rustc --crate-name digest --edition=2018 /tmp/tmp.ruvRE753uN/registry/digest-0.10.7/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="alloc"' --cfg 'feature="block-buffer"' --cfg 'feature="core-api"' --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "blobby", "block-buffer", "const-oid", "core-api", "default", "dev", "mac", "oid", "rand_core", "std", "subtle"))' -C metadata=027272cf65436a63 -C extra-filename=-027272cf65436a63 --out-dir /tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.ruvRE753uN/target/debug/deps --extern block_buffer=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps/libblock_buffer-4cd3db619b1d8e9e.rmeta --extern crypto_common=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps/libcrypto_common-77cd648c700afbb2.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.ruvRE753uN/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 253s warning: `digest` (lib) generated 1 warning (1 duplicate) 253s Compiling rand_chacha v0.3.1 253s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=rand_chacha CARGO_MANIFEST_DIR=/tmp/tmp.ruvRE753uN/registry/rand_chacha-0.3.1 CARGO_MANIFEST_PATH=/tmp/tmp.ruvRE753uN/registry/rand_chacha-0.3.1/Cargo.toml CARGO_PKG_AUTHORS='The Rand Project Developers:The Rust Project Developers:The CryptoCorrosion Contributors' CARGO_PKG_DESCRIPTION='ChaCha random number generator 253s ' CARGO_PKG_HOMEPAGE='https://rust-random.github.io/book' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=rand_chacha CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-random/rand' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.3.1 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.ruvRE753uN/target/debug/deps rustc --crate-name rand_chacha --edition=2018 /tmp/tmp.ruvRE753uN/registry/rand_chacha-0.3.1/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "serde", "serde1", "simd", "std"))' -C metadata=dd56c23de683d750 -C extra-filename=-dd56c23de683d750 --out-dir /tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.ruvRE753uN/target/debug/deps --extern ppv_lite86=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps/libppv_lite86-57e5b566e2a71c09.rmeta --extern rand_core=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps/librand_core-3c7246ca3f419bbc.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.ruvRE753uN/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 253s warning: `rand_chacha` (lib) generated 1 warning (1 duplicate) 253s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=memoffset CARGO_MANIFEST_DIR=/tmp/tmp.ruvRE753uN/registry/memoffset-0.8.0 CARGO_MANIFEST_PATH=/tmp/tmp.ruvRE753uN/registry/memoffset-0.8.0/Cargo.toml CARGO_PKG_AUTHORS='Gilad Naaman ' CARGO_PKG_DESCRIPTION='offset_of functionality for Rust structs.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=memoffset CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/Gilnaa/memoffset' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.8.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=8 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.ruvRE753uN/target/debug/deps OUT_DIR=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/build/memoffset-b32fed70cf81e31f/out rustc --crate-name memoffset --edition=2015 /tmp/tmp.ruvRE753uN/registry/memoffset-0.8.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "unstable_const"))' -C metadata=2f432c32070b84ca -C extra-filename=-2f432c32070b84ca --out-dir /tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.ruvRE753uN/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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.ruvRE753uN/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain --cfg tuple_ty --cfg allow_clippy --cfg maybe_uninit --cfg doctests --cfg raw_ref_macros --cfg stable_const` 253s warning: unexpected `cfg` condition name: `stable_const` 253s --> /usr/share/cargo/registry/memoffset-0.8.0/src/lib.rs:60:41 253s | 253s 60 | all(feature = "unstable_const", not(stable_const)), 253s | ^^^^^^^^^^^^ 253s | 253s = help: expected names are: `clippy`, `debug_assertions`, `doc`, `docsrs`, `doctest`, `feature`, `fmt_debug`, `miri`, `overflow_checks`, `panic`, `proc_macro`, `relocation_model`, `rustfmt`, `sanitize`, `sanitizer_cfi_generalize_pointers`, `sanitizer_cfi_normalize_integers`, `target_abi`, `target_arch`, `target_endian`, `target_env`, `target_family`, `target_feature`, `target_has_atomic`, `target_has_atomic_equal_alignment`, `target_has_atomic_load_store`, `target_os`, `target_pointer_width`, `target_thread_local`, `target_vendor`, `test`, `ub_checks`, `unix`, and `windows` 253s = help: consider using a Cargo feature instead 253s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 253s [lints.rust] 253s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(stable_const)'] } 253s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(stable_const)");` to the top of the `build.rs` 253s = note: see for more information about checking conditional configuration 253s = note: `#[warn(unexpected_cfgs)]` on by default 253s 253s warning: unexpected `cfg` condition name: `doctests` 253s --> /usr/share/cargo/registry/memoffset-0.8.0/src/lib.rs:66:7 253s | 253s 66 | #[cfg(doctests)] 253s | ^^^^^^^^ help: there is a config with a similar name: `doctest` 253s | 253s = help: consider using a Cargo feature instead 253s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 253s [lints.rust] 253s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doctests)'] } 253s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doctests)");` to the top of the `build.rs` 253s = note: see for more information about checking conditional configuration 253s 253s warning: unexpected `cfg` condition name: `doctests` 253s --> /usr/share/cargo/registry/memoffset-0.8.0/src/lib.rs:69:7 253s | 253s 69 | #[cfg(doctests)] 253s | ^^^^^^^^ help: there is a config with a similar name: `doctest` 253s | 253s = help: consider using a Cargo feature instead 253s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 253s [lints.rust] 253s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doctests)'] } 253s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doctests)");` to the top of the `build.rs` 253s = note: see for more information about checking conditional configuration 253s 253s warning: unexpected `cfg` condition name: `raw_ref_macros` 253s --> /usr/share/cargo/registry/memoffset-0.8.0/src/raw_field.rs:22:7 253s | 253s 22 | #[cfg(raw_ref_macros)] 253s | ^^^^^^^^^^^^^^ 253s | 253s = help: consider using a Cargo feature instead 253s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 253s [lints.rust] 253s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(raw_ref_macros)'] } 253s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(raw_ref_macros)");` to the top of the `build.rs` 253s = note: see for more information about checking conditional configuration 253s 253s warning: unexpected `cfg` condition name: `raw_ref_macros` 253s --> /usr/share/cargo/registry/memoffset-0.8.0/src/raw_field.rs:30:11 253s | 253s 30 | #[cfg(not(raw_ref_macros))] 253s | ^^^^^^^^^^^^^^ 253s | 253s = help: consider using a Cargo feature instead 253s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 253s [lints.rust] 253s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(raw_ref_macros)'] } 253s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(raw_ref_macros)");` to the top of the `build.rs` 253s = note: see for more information about checking conditional configuration 253s 253s warning: unexpected `cfg` condition name: `allow_clippy` 253s --> /usr/share/cargo/registry/memoffset-0.8.0/src/raw_field.rs:57:7 253s | 253s 57 | #[cfg(allow_clippy)] 253s | ^^^^^^^^^^^^ 253s | 253s = help: consider using a Cargo feature instead 253s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 253s [lints.rust] 253s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(allow_clippy)'] } 253s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(allow_clippy)");` to the top of the `build.rs` 253s = note: see for more information about checking conditional configuration 253s 253s warning: unexpected `cfg` condition name: `allow_clippy` 253s --> /usr/share/cargo/registry/memoffset-0.8.0/src/raw_field.rs:69:11 253s | 253s 69 | #[cfg(not(allow_clippy))] 253s | ^^^^^^^^^^^^ 253s | 253s = help: consider using a Cargo feature instead 253s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 253s [lints.rust] 253s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(allow_clippy)'] } 253s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(allow_clippy)");` to the top of the `build.rs` 253s = note: see for more information about checking conditional configuration 253s 253s warning: unexpected `cfg` condition name: `allow_clippy` 253s --> /usr/share/cargo/registry/memoffset-0.8.0/src/raw_field.rs:90:7 253s | 253s 90 | #[cfg(allow_clippy)] 253s | ^^^^^^^^^^^^ 253s | 253s = help: consider using a Cargo feature instead 253s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 253s [lints.rust] 253s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(allow_clippy)'] } 253s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(allow_clippy)");` to the top of the `build.rs` 253s = note: see for more information about checking conditional configuration 253s 253s warning: unexpected `cfg` condition name: `allow_clippy` 253s --> /usr/share/cargo/registry/memoffset-0.8.0/src/raw_field.rs:100:11 253s | 253s 100 | #[cfg(not(allow_clippy))] 253s | ^^^^^^^^^^^^ 253s | 253s = help: consider using a Cargo feature instead 253s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 253s [lints.rust] 253s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(allow_clippy)'] } 253s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(allow_clippy)");` to the top of the `build.rs` 253s = note: see for more information about checking conditional configuration 253s 253s warning: unexpected `cfg` condition name: `allow_clippy` 253s --> /usr/share/cargo/registry/memoffset-0.8.0/src/raw_field.rs:125:7 253s | 253s 125 | #[cfg(allow_clippy)] 253s | ^^^^^^^^^^^^ 253s | 253s = help: consider using a Cargo feature instead 253s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 253s [lints.rust] 253s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(allow_clippy)'] } 253s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(allow_clippy)");` to the top of the `build.rs` 253s = note: see for more information about checking conditional configuration 253s 253s warning: unexpected `cfg` condition name: `allow_clippy` 253s --> /usr/share/cargo/registry/memoffset-0.8.0/src/raw_field.rs:141:11 253s | 253s 141 | #[cfg(not(allow_clippy))] 253s | ^^^^^^^^^^^^ 253s | 253s = help: consider using a Cargo feature instead 253s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 253s [lints.rust] 253s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(allow_clippy)'] } 253s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(allow_clippy)");` to the top of the `build.rs` 253s = note: see for more information about checking conditional configuration 253s 253s warning: unexpected `cfg` condition name: `tuple_ty` 253s --> /usr/share/cargo/registry/memoffset-0.8.0/src/raw_field.rs:183:7 253s | 253s 183 | #[cfg(tuple_ty)] 253s | ^^^^^^^^ 253s | 253s = help: consider using a Cargo feature instead 253s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 253s [lints.rust] 253s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tuple_ty)'] } 253s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tuple_ty)");` to the top of the `build.rs` 253s = note: see for more information about checking conditional configuration 253s 253s warning: unexpected `cfg` condition name: `maybe_uninit` 253s --> /usr/share/cargo/registry/memoffset-0.8.0/src/offset_of.rs:23:7 253s | 253s 23 | #[cfg(maybe_uninit)] 253s | ^^^^^^^^^^^^ 253s | 253s = help: consider using a Cargo feature instead 253s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 253s [lints.rust] 253s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(maybe_uninit)'] } 253s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(maybe_uninit)");` to the top of the `build.rs` 253s = note: see for more information about checking conditional configuration 253s 253s warning: unexpected `cfg` condition name: `maybe_uninit` 253s --> /usr/share/cargo/registry/memoffset-0.8.0/src/offset_of.rs:37:11 253s | 253s 37 | #[cfg(not(maybe_uninit))] 253s | ^^^^^^^^^^^^ 253s | 253s = help: consider using a Cargo feature instead 253s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 253s [lints.rust] 253s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(maybe_uninit)'] } 253s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(maybe_uninit)");` to the top of the `build.rs` 253s = note: see for more information about checking conditional configuration 253s 253s warning: unexpected `cfg` condition name: `stable_const` 253s --> /usr/share/cargo/registry/memoffset-0.8.0/src/offset_of.rs:49:39 253s | 253s 49 | #[cfg(any(feature = "unstable_const", stable_const))] 253s | ^^^^^^^^^^^^ 253s | 253s = help: consider using a Cargo feature instead 253s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 253s [lints.rust] 253s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(stable_const)'] } 253s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(stable_const)");` to the top of the `build.rs` 253s = note: see for more information about checking conditional configuration 253s 253s warning: unexpected `cfg` condition name: `stable_const` 253s --> /usr/share/cargo/registry/memoffset-0.8.0/src/offset_of.rs:61:43 253s | 253s 61 | #[cfg(not(any(feature = "unstable_const", stable_const)))] 253s | ^^^^^^^^^^^^ 253s | 253s = help: consider using a Cargo feature instead 253s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 253s [lints.rust] 253s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(stable_const)'] } 253s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(stable_const)");` to the top of the `build.rs` 253s = note: see for more information about checking conditional configuration 253s 253s warning: unexpected `cfg` condition name: `tuple_ty` 253s --> /usr/share/cargo/registry/memoffset-0.8.0/src/offset_of.rs:121:7 253s | 253s 121 | #[cfg(tuple_ty)] 253s | ^^^^^^^^ 253s | 253s = help: consider using a Cargo feature instead 253s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 253s [lints.rust] 253s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tuple_ty)'] } 253s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tuple_ty)");` to the top of the `build.rs` 253s = note: see for more information about checking conditional configuration 253s 253s warning: `memoffset` (lib) generated 18 warnings (1 duplicate) 253s 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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0--remap-path-prefix/tmp/tmp.ruvRE753uN/registry=/usr/share/cargo/registry-Ctarget-feature=+backchain' CARGO_FEATURE_FEATURE=1 CARGO_FEATURE_MEMOFFSET=1 CARGO_FEATURE_SOCKET=1 CARGO_FEATURE_UIO=1 CARGO_FEATURE_USER=1 CARGO_MANIFEST_DIR=/tmp/tmp.ruvRE753uN/registry/nix-0.29.0 CARGO_MANIFEST_PATH=/tmp/tmp.ruvRE753uN/registry/nix-0.29.0/Cargo.toml CARGO_PKG_AUTHORS='The nix-rust Project Developers' CARGO_PKG_DESCRIPTION='Rust friendly bindings to *nix APIs' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=nix CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/nix-rust/nix' CARGO_PKG_RUST_VERSION=1.69 CARGO_PKG_VERSION=0.29.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=29 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' DEBUG=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.ruvRE753uN/target/debug/deps:/tmp/tmp.ruvRE753uN/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/build/nix-8065280fb097eaec/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.ruvRE753uN/target/debug/build/nix-9cc97a3a2fcb749b/build-script-build` 253s [nix 0.29.0] cargo:rustc-check-cfg=cfg(android) 253s [nix 0.29.0] cargo:rustc-check-cfg=cfg(dragonfly) 253s [nix 0.29.0] cargo:rustc-check-cfg=cfg(ios) 253s [nix 0.29.0] cargo:rustc-check-cfg=cfg(freebsd) 253s [nix 0.29.0] cargo:rustc-check-cfg=cfg(illumos) 253s [nix 0.29.0] cargo:rustc-check-cfg=cfg(linux) 253s [nix 0.29.0] cargo:rustc-cfg=linux 253s [nix 0.29.0] cargo:rustc-check-cfg=cfg(macos) 253s [nix 0.29.0] cargo:rustc-check-cfg=cfg(netbsd) 253s [nix 0.29.0] cargo:rustc-check-cfg=cfg(openbsd) 253s [nix 0.29.0] cargo:rustc-check-cfg=cfg(solaris) 253s [nix 0.29.0] cargo:rustc-check-cfg=cfg(watchos) 253s [nix 0.29.0] cargo:rustc-check-cfg=cfg(tvos) 253s [nix 0.29.0] cargo:rustc-check-cfg=cfg(visionos) 253s [nix 0.29.0] cargo:rustc-check-cfg=cfg(apple_targets) 253s [nix 0.29.0] cargo:rustc-check-cfg=cfg(bsd) 253s [nix 0.29.0] cargo:rustc-check-cfg=cfg(bsd_without_apple) 253s [nix 0.29.0] cargo:rustc-check-cfg=cfg(linux_android) 253s [nix 0.29.0] cargo:rustc-cfg=linux_android 253s [nix 0.29.0] cargo:rustc-check-cfg=cfg(freebsdlike) 253s [nix 0.29.0] cargo:rustc-check-cfg=cfg(netbsdlike) 253s [nix 0.29.0] cargo:rustc-check-cfg=cfg(solarish) 253s [nix 0.29.0] cargo:rustc-check-cfg=cfg(apple_targets) 253s [nix 0.29.0] cargo:rustc-check-cfg=cfg(bsd) 253s [nix 0.29.0] cargo:rustc-check-cfg=cfg(bsd_without_apple) 253s [nix 0.29.0] cargo:rustc-check-cfg=cfg(linux_android) 253s [nix 0.29.0] cargo:rustc-check-cfg=cfg(freebsdlike) 253s [nix 0.29.0] cargo:rustc-check-cfg=cfg(netbsdlike) 253s [nix 0.29.0] cargo:rustc-check-cfg=cfg(solarish) 253s [nix 0.29.0] cargo:rustc-check-cfg=cfg(fbsd14) 253s [nix 0.29.0] cargo:rustc-check-cfg=cfg(qemu) 253s Compiling futures-macro v0.3.31 253s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=futures_macro CARGO_MANIFEST_DIR=/tmp/tmp.ruvRE753uN/registry/futures-macro-0.3.31 CARGO_MANIFEST_PATH=/tmp/tmp.ruvRE753uN/registry/futures-macro-0.3.31/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='The futures-rs procedural macro implementations. 253s ' CARGO_PKG_HOMEPAGE='https://rust-lang.github.io/futures-rs' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=futures-macro CARGO_PKG_README='' CARGO_PKG_REPOSITORY='https://github.com/rust-lang/futures-rs' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=0.3.31 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=31 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.ruvRE753uN/target/debug/deps rustc --crate-name futures_macro --edition=2018 /tmp/tmp.ruvRE753uN/registry/futures-macro-0.3.31/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type proc-macro --emit=dep-info,link -C prefer-dynamic -C embed-bitcode=no -C debuginfo=2 --warn=unreachable_pub --warn=unexpected_cfgs --warn=single_use_lifetimes --warn=rust_2018_idioms --warn=missing_debug_implementations --check-cfg 'cfg(futures_sanitizer)' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=4cace2739cb7abd5 -C extra-filename=-4cace2739cb7abd5 --out-dir /tmp/tmp.ruvRE753uN/target/debug/deps -L dependency=/tmp/tmp.ruvRE753uN/target/debug/deps --extern proc_macro2=/tmp/tmp.ruvRE753uN/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rlib --extern quote=/tmp/tmp.ruvRE753uN/target/debug/deps/libquote-dc92c6f25ee0f0c6.rlib --extern syn=/tmp/tmp.ruvRE753uN/target/debug/deps/libsyn-0167beed9e699402.rlib --extern proc_macro --cap-lints warn` 254s warning: `zvariant` (lib) generated 1 warning (1 duplicate) 254s Compiling futures-sink v0.3.31 254s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=futures_sink CARGO_MANIFEST_DIR=/tmp/tmp.ruvRE753uN/registry/futures-sink-0.3.31 CARGO_MANIFEST_PATH=/tmp/tmp.ruvRE753uN/registry/futures-sink-0.3.31/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='The asynchronous `Sink` trait for the futures-rs library. 254s ' CARGO_PKG_HOMEPAGE='https://rust-lang.github.io/futures-rs' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=futures-sink CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/futures-rs' CARGO_PKG_RUST_VERSION=1.36 CARGO_PKG_VERSION=0.3.31 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=31 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.ruvRE753uN/target/debug/deps rustc --crate-name futures_sink --edition=2018 /tmp/tmp.ruvRE753uN/registry/futures-sink-0.3.31/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --warn=unreachable_pub --warn=unexpected_cfgs --warn=single_use_lifetimes --warn=rust_2018_idioms --warn=missing_debug_implementations --check-cfg 'cfg(futures_sanitizer)' --cfg 'feature="alloc"' --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "default", "std"))' -C metadata=2335bc9d806f8753 -C extra-filename=-2335bc9d806f8753 --out-dir /tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.ruvRE753uN/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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.ruvRE753uN/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 254s warning: `futures-sink` (lib) generated 1 warning (1 duplicate) 254s Compiling pin-utils v0.1.0 254s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=pin_utils CARGO_MANIFEST_DIR=/tmp/tmp.ruvRE753uN/registry/pin-utils-0.1.0 CARGO_MANIFEST_PATH=/tmp/tmp.ruvRE753uN/registry/pin-utils-0.1.0/Cargo.toml CARGO_PKG_AUTHORS='Josef Brandl ' CARGO_PKG_DESCRIPTION='Utilities for pinning 254s ' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=pin-utils CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang-nursery/pin-utils' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.1.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.ruvRE753uN/target/debug/deps rustc --crate-name pin_utils --edition=2018 /tmp/tmp.ruvRE753uN/registry/pin-utils-0.1.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=9646380a39f6bb39 -C extra-filename=-9646380a39f6bb39 --out-dir /tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.ruvRE753uN/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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.ruvRE753uN/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 254s warning: `pin-utils` (lib) generated 1 warning (1 duplicate) 254s Compiling futures-task v0.3.31 254s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=futures_task CARGO_MANIFEST_DIR=/tmp/tmp.ruvRE753uN/registry/futures-task-0.3.31 CARGO_MANIFEST_PATH=/tmp/tmp.ruvRE753uN/registry/futures-task-0.3.31/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='Tools for working with tasks. 254s ' CARGO_PKG_HOMEPAGE='https://rust-lang.github.io/futures-rs' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=futures-task CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/futures-rs' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=0.3.31 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=31 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.ruvRE753uN/target/debug/deps rustc --crate-name futures_task --edition=2018 /tmp/tmp.ruvRE753uN/registry/futures-task-0.3.31/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --warn=unreachable_pub --warn=unexpected_cfgs --warn=single_use_lifetimes --warn=rust_2018_idioms --warn=missing_debug_implementations --check-cfg 'cfg(futures_sanitizer)' --cfg 'feature="alloc"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "cfg-target-has-atomic", "default", "std", "unstable"))' -C metadata=47c3a7d17767e18f -C extra-filename=-47c3a7d17767e18f --out-dir /tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.ruvRE753uN/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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.ruvRE753uN/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 254s warning: `futures-task` (lib) generated 1 warning (1 duplicate) 254s Compiling memchr v2.7.4 254s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=memchr CARGO_MANIFEST_DIR=/tmp/tmp.ruvRE753uN/registry/memchr-2.7.4 CARGO_MANIFEST_PATH=/tmp/tmp.ruvRE753uN/registry/memchr-2.7.4/Cargo.toml CARGO_PKG_AUTHORS='Andrew Gallant :bluss' CARGO_PKG_DESCRIPTION='Provides extremely fast (uses SIMD on x86_64, aarch64 and wasm32) routines for 254s 1, 2 or 3 byte search and single substring search. 254s ' CARGO_PKG_HOMEPAGE='https://github.com/BurntSushi/memchr' CARGO_PKG_LICENSE='Unlicense OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=memchr CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/BurntSushi/memchr' CARGO_PKG_RUST_VERSION=1.61 CARGO_PKG_VERSION=2.7.4 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=7 CARGO_PKG_VERSION_PATCH=4 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.ruvRE753uN/target/debug/deps rustc --crate-name memchr --edition=2021 /tmp/tmp.ruvRE753uN/registry/memchr-2.7.4/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="alloc"' --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "compiler_builtins", "core", "default", "libc", "logging", "rustc-dep-of-std", "std", "use_std"))' -C metadata=944ab1891fd21906 -C extra-filename=-944ab1891fd21906 --out-dir /tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.ruvRE753uN/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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.ruvRE753uN/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 254s warning: `memchr` (lib) generated 1 warning (1 duplicate) 254s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=nix CARGO_MANIFEST_DIR=/tmp/tmp.ruvRE753uN/registry/nix-0.29.0 CARGO_MANIFEST_PATH=/tmp/tmp.ruvRE753uN/registry/nix-0.29.0/Cargo.toml CARGO_PKG_AUTHORS='The nix-rust Project Developers' CARGO_PKG_DESCRIPTION='Rust friendly bindings to *nix APIs' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=nix CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/nix-rust/nix' CARGO_PKG_RUST_VERSION=1.69 CARGO_PKG_VERSION=0.29.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=29 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.ruvRE753uN/target/debug/deps OUT_DIR=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/build/nix-8065280fb097eaec/out rustc --crate-name nix --edition=2021 /tmp/tmp.ruvRE753uN/registry/nix-0.29.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="feature"' --cfg 'feature="memoffset"' --cfg 'feature="socket"' --cfg 'feature="uio"' --cfg 'feature="user"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("acct", "aio", "default", "dir", "env", "event", "fanotify", "feature", "fs", "hostname", "inotify", "ioctl", "kmod", "memoffset", "mman", "mount", "mqueue", "net", "personality", "pin-utils", "poll", "process", "pthread", "ptrace", "quota", "reboot", "resource", "sched", "signal", "socket", "term", "time", "ucontext", "uio", "user", "zerocopy"))' -C metadata=30ad0bf244578707 -C extra-filename=-30ad0bf244578707 --out-dir /tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.ruvRE753uN/target/debug/deps --extern bitflags=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps/libbitflags-65f3f529c7b65778.rmeta --extern cfg_if=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps/libcfg_if-ff3ff84a061de73f.rmeta --extern libc=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps/liblibc-cf2521928ac070dc.rmeta --extern memoffset=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps/libmemoffset-2f432c32070b84ca.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.ruvRE753uN/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain --cfg linux --cfg linux_android --check-cfg 'cfg(android)' --check-cfg 'cfg(dragonfly)' --check-cfg 'cfg(ios)' --check-cfg 'cfg(freebsd)' --check-cfg 'cfg(illumos)' --check-cfg 'cfg(linux)' --check-cfg 'cfg(macos)' --check-cfg 'cfg(netbsd)' --check-cfg 'cfg(openbsd)' --check-cfg 'cfg(solaris)' --check-cfg 'cfg(watchos)' --check-cfg 'cfg(tvos)' --check-cfg 'cfg(visionos)' --check-cfg 'cfg(apple_targets)' --check-cfg 'cfg(bsd)' --check-cfg 'cfg(bsd_without_apple)' --check-cfg 'cfg(linux_android)' --check-cfg 'cfg(freebsdlike)' --check-cfg 'cfg(netbsdlike)' --check-cfg 'cfg(solarish)' --check-cfg 'cfg(apple_targets)' --check-cfg 'cfg(bsd)' --check-cfg 'cfg(bsd_without_apple)' --check-cfg 'cfg(linux_android)' --check-cfg 'cfg(freebsdlike)' --check-cfg 'cfg(netbsdlike)' --check-cfg 'cfg(solarish)' --check-cfg 'cfg(fbsd14)' --check-cfg 'cfg(qemu)'` 254s warning: elided lifetime has a name 254s --> /usr/share/cargo/registry/nix-0.29.0/src/sys/socket/sockopt.rs:1577:34 254s | 254s 1576 | impl<'a> Set<'a, OsString> for SetOsString<'a> { 254s | -- lifetime `'a` declared here 254s 1577 | fn new(val: &'a OsString) -> SetOsString { 254s | ^^^^^^^^^^^ this elided lifetime gets resolved as `'a` 254s | 254s = note: `#[warn(elided_named_lifetimes)]` on by default 254s 254s Compiling futures-util v0.3.31 254s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=futures_util CARGO_MANIFEST_DIR=/tmp/tmp.ruvRE753uN/registry/futures-util-0.3.31 CARGO_MANIFEST_PATH=/tmp/tmp.ruvRE753uN/registry/futures-util-0.3.31/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='Common utilities and extension traits for the futures-rs library. 254s ' CARGO_PKG_HOMEPAGE='https://rust-lang.github.io/futures-rs' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=futures-util CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/futures-rs' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=0.3.31 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=31 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.ruvRE753uN/target/debug/deps rustc --crate-name futures_util --edition=2018 /tmp/tmp.ruvRE753uN/registry/futures-util-0.3.31/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --warn=unreachable_pub --warn=unexpected_cfgs --warn=single_use_lifetimes --warn=rust_2018_idioms --warn=missing_debug_implementations --check-cfg 'cfg(futures_sanitizer)' --cfg 'feature="alloc"' --cfg 'feature="async-await"' --cfg 'feature="async-await-macro"' --cfg 'feature="default"' --cfg 'feature="futures-io"' --cfg 'feature="futures-macro"' --cfg 'feature="futures-sink"' --cfg 'feature="io"' --cfg 'feature="memchr"' --cfg 'feature="sink"' --cfg 'feature="slab"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "async-await", "async-await-macro", "bilock", "channel", "default", "futures-channel", "futures-io", "futures-macro", "futures-sink", "io", "memchr", "sink", "slab", "std", "unstable", "write-all-vectored"))' -C metadata=724575be975598c0 -C extra-filename=-724575be975598c0 --out-dir /tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.ruvRE753uN/target/debug/deps --extern futures_core=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps/libfutures_core-8d305950da6bf5c8.rmeta --extern futures_io=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps/libfutures_io-1a4387591f8b2b95.rmeta --extern futures_macro=/tmp/tmp.ruvRE753uN/target/debug/deps/libfutures_macro-4cace2739cb7abd5.so --extern futures_sink=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps/libfutures_sink-2335bc9d806f8753.rmeta --extern futures_task=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps/libfutures_task-47c3a7d17767e18f.rmeta --extern memchr=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps/libmemchr-944ab1891fd21906.rmeta --extern pin_project_lite=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps/libpin_project_lite-5dc815523e98d889.rmeta --extern pin_utils=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps/libpin_utils-9646380a39f6bb39.rmeta --extern slab=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps/libslab-36320af34be0827b.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.ruvRE753uN/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 255s warning: unexpected `cfg` condition value: `compat` 255s --> /usr/share/cargo/registry/futures-util-0.3.31/src/lib.rs:308:7 255s | 255s 308 | #[cfg(feature = "compat")] 255s | ^^^^^^^^^^^^^^^^^^ 255s | 255s = note: expected values for `feature` are: `alloc`, `async-await`, `async-await-macro`, `bilock`, `channel`, `default`, `futures-channel`, `futures-io`, `futures-macro`, `futures-sink`, `io`, `memchr`, `sink`, `slab`, `std`, `unstable`, and `write-all-vectored` 255s = help: consider adding `compat` as a feature in `Cargo.toml` 255s = note: see for more information about checking conditional configuration 255s = note: requested on the command line with `-W unexpected-cfgs` 255s 255s warning: unexpected `cfg` condition value: `compat` 255s --> /usr/share/cargo/registry/futures-util-0.3.31/src/future/try_future/mod.rs:6:7 255s | 255s 6 | #[cfg(feature = "compat")] 255s | ^^^^^^^^^^^^^^^^^^ 255s | 255s = note: expected values for `feature` are: `alloc`, `async-await`, `async-await-macro`, `bilock`, `channel`, `default`, `futures-channel`, `futures-io`, `futures-macro`, `futures-sink`, `io`, `memchr`, `sink`, `slab`, `std`, `unstable`, and `write-all-vectored` 255s = help: consider adding `compat` as a feature in `Cargo.toml` 255s = note: see for more information about checking conditional configuration 255s 255s warning: unexpected `cfg` condition value: `compat` 255s --> /usr/share/cargo/registry/futures-util-0.3.31/src/future/try_future/mod.rs:580:11 255s | 255s 580 | #[cfg(feature = "compat")] 255s | ^^^^^^^^^^^^^^^^^^ 255s | 255s = note: expected values for `feature` are: `alloc`, `async-await`, `async-await-macro`, `bilock`, `channel`, `default`, `futures-channel`, `futures-io`, `futures-macro`, `futures-sink`, `io`, `memchr`, `sink`, `slab`, `std`, `unstable`, and `write-all-vectored` 255s = help: consider adding `compat` as a feature in `Cargo.toml` 255s = note: see for more information about checking conditional configuration 255s 255s warning: unexpected `cfg` condition value: `compat` 255s --> /usr/share/cargo/registry/futures-util-0.3.31/src/stream/try_stream/mod.rs:6:7 255s | 255s 6 | #[cfg(feature = "compat")] 255s | ^^^^^^^^^^^^^^^^^^ 255s | 255s = note: expected values for `feature` are: `alloc`, `async-await`, `async-await-macro`, `bilock`, `channel`, `default`, `futures-channel`, `futures-io`, `futures-macro`, `futures-sink`, `io`, `memchr`, `sink`, `slab`, `std`, `unstable`, and `write-all-vectored` 255s = help: consider adding `compat` as a feature in `Cargo.toml` 255s = note: see for more information about checking conditional configuration 255s 255s warning: unexpected `cfg` condition value: `compat` 255s --> /usr/share/cargo/registry/futures-util-0.3.31/src/stream/try_stream/mod.rs:1154:11 255s | 255s 1154 | #[cfg(feature = "compat")] 255s | ^^^^^^^^^^^^^^^^^^ 255s | 255s = note: expected values for `feature` are: `alloc`, `async-await`, `async-await-macro`, `bilock`, `channel`, `default`, `futures-channel`, `futures-io`, `futures-macro`, `futures-sink`, `io`, `memchr`, `sink`, `slab`, `std`, `unstable`, and `write-all-vectored` 255s = help: consider adding `compat` as a feature in `Cargo.toml` 255s = note: see for more information about checking conditional configuration 255s 255s warning: unexpected `cfg` condition value: `compat` 255s --> /usr/share/cargo/registry/futures-util-0.3.31/src/sink/mod.rs:15:7 255s | 255s 15 | #[cfg(feature = "compat")] 255s | ^^^^^^^^^^^^^^^^^^ 255s | 255s = note: expected values for `feature` are: `alloc`, `async-await`, `async-await-macro`, `bilock`, `channel`, `default`, `futures-channel`, `futures-io`, `futures-macro`, `futures-sink`, `io`, `memchr`, `sink`, `slab`, `std`, `unstable`, and `write-all-vectored` 255s = help: consider adding `compat` as a feature in `Cargo.toml` 255s = note: see for more information about checking conditional configuration 255s 255s warning: unexpected `cfg` condition value: `compat` 255s --> /usr/share/cargo/registry/futures-util-0.3.31/src/sink/mod.rs:291:11 255s | 255s 291 | #[cfg(feature = "compat")] 255s | ^^^^^^^^^^^^^^^^^^ 255s | 255s = note: expected values for `feature` are: `alloc`, `async-await`, `async-await-macro`, `bilock`, `channel`, `default`, `futures-channel`, `futures-io`, `futures-macro`, `futures-sink`, `io`, `memchr`, `sink`, `slab`, `std`, `unstable`, and `write-all-vectored` 255s = help: consider adding `compat` as a feature in `Cargo.toml` 255s = note: see for more information about checking conditional configuration 255s 255s warning: unexpected `cfg` condition value: `compat` 255s --> /usr/share/cargo/registry/futures-util-0.3.31/src/task/spawn.rs:3:7 255s | 255s 3 | #[cfg(feature = "compat")] 255s | ^^^^^^^^^^^^^^^^^^ 255s | 255s = note: expected values for `feature` are: `alloc`, `async-await`, `async-await-macro`, `bilock`, `channel`, `default`, `futures-channel`, `futures-io`, `futures-macro`, `futures-sink`, `io`, `memchr`, `sink`, `slab`, `std`, `unstable`, and `write-all-vectored` 255s = help: consider adding `compat` as a feature in `Cargo.toml` 255s = note: see for more information about checking conditional configuration 255s 255s warning: unexpected `cfg` condition value: `compat` 255s --> /usr/share/cargo/registry/futures-util-0.3.31/src/task/spawn.rs:92:11 255s | 255s 92 | #[cfg(feature = "compat")] 255s | ^^^^^^^^^^^^^^^^^^ 255s | 255s = note: expected values for `feature` are: `alloc`, `async-await`, `async-await-macro`, `bilock`, `channel`, `default`, `futures-channel`, `futures-io`, `futures-macro`, `futures-sink`, `io`, `memchr`, `sink`, `slab`, `std`, `unstable`, and `write-all-vectored` 255s = help: consider adding `compat` as a feature in `Cargo.toml` 255s = note: see for more information about checking conditional configuration 255s 255s warning: unexpected `cfg` condition value: `io-compat` 255s --> /usr/share/cargo/registry/futures-util-0.3.31/src/io/mod.rs:19:7 255s | 255s 19 | #[cfg(feature = "io-compat")] 255s | ^^^^^^^^^^^^^^^^^^^^^ 255s | 255s = note: expected values for `feature` are: `alloc`, `async-await`, `async-await-macro`, `bilock`, `channel`, `default`, `futures-channel`, `futures-io`, `futures-macro`, `futures-sink`, `io`, `memchr`, `sink`, `slab`, `std`, `unstable`, and `write-all-vectored` 255s = help: consider adding `io-compat` as a feature in `Cargo.toml` 255s = note: see for more information about checking conditional configuration 255s 255s warning: unexpected `cfg` condition value: `io-compat` 255s --> /usr/share/cargo/registry/futures-util-0.3.31/src/io/mod.rs:388:11 255s | 255s 388 | #[cfg(feature = "io-compat")] 255s | ^^^^^^^^^^^^^^^^^^^^^ 255s | 255s = note: expected values for `feature` are: `alloc`, `async-await`, `async-await-macro`, `bilock`, `channel`, `default`, `futures-channel`, `futures-io`, `futures-macro`, `futures-sink`, `io`, `memchr`, `sink`, `slab`, `std`, `unstable`, and `write-all-vectored` 255s = help: consider adding `io-compat` as a feature in `Cargo.toml` 255s = note: see for more information about checking conditional configuration 255s 255s warning: unexpected `cfg` condition value: `io-compat` 255s --> /usr/share/cargo/registry/futures-util-0.3.31/src/io/mod.rs:547:11 255s | 255s 547 | #[cfg(feature = "io-compat")] 255s | ^^^^^^^^^^^^^^^^^^^^^ 255s | 255s = note: expected values for `feature` are: `alloc`, `async-await`, `async-await-macro`, `bilock`, `channel`, `default`, `futures-channel`, `futures-io`, `futures-macro`, `futures-sink`, `io`, `memchr`, `sink`, `slab`, `std`, `unstable`, and `write-all-vectored` 255s = help: consider adding `io-compat` as a feature in `Cargo.toml` 255s = note: see for more information about checking conditional configuration 255s 255s warning: struct `GetU8` is never constructed 255s --> /usr/share/cargo/registry/nix-0.29.0/src/sys/socket/sockopt.rs:1441:8 255s | 255s 1441 | struct GetU8 { 255s | ^^^^^ 255s | 255s = note: `#[warn(dead_code)]` on by default 255s 255s warning: struct `SetU8` is never constructed 255s --> /usr/share/cargo/registry/nix-0.29.0/src/sys/socket/sockopt.rs:1473:8 255s | 255s 1473 | struct SetU8 { 255s | ^^^^^ 255s 255s warning: struct `GetCString` is never constructed 255s --> /usr/share/cargo/registry/nix-0.29.0/src/sys/socket/sockopt.rs:1593:8 255s | 255s 1593 | struct GetCString> { 255s | ^^^^^^^^^^ 255s 255s warning: `nix` (lib) generated 5 warnings (1 duplicate) 255s Compiling rand v0.8.5 255s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=rand CARGO_MANIFEST_DIR=/tmp/tmp.ruvRE753uN/registry/rand-0.8.5 CARGO_MANIFEST_PATH=/tmp/tmp.ruvRE753uN/registry/rand-0.8.5/Cargo.toml CARGO_PKG_AUTHORS='The Rand Project Developers:The Rust Project Developers' CARGO_PKG_DESCRIPTION='Random number generators and other randomness functionality. 255s ' CARGO_PKG_HOMEPAGE='https://rust-random.github.io/book' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=rand CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-random/rand' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.8.5 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=8 CARGO_PKG_VERSION_PATCH=5 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.ruvRE753uN/target/debug/deps rustc --crate-name rand --edition=2018 /tmp/tmp.ruvRE753uN/registry/rand-0.8.5/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="alloc"' --cfg 'feature="default"' --cfg 'feature="getrandom"' --cfg 'feature="libc"' --cfg 'feature="rand_chacha"' --cfg 'feature="std"' --cfg 'feature="std_rng"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "default", "getrandom", "libc", "log", "min_const_gen", "nightly", "rand_chacha", "serde", "serde1", "small_rng", "std", "std_rng"))' -C metadata=da2a195293a4eb5f -C extra-filename=-da2a195293a4eb5f --out-dir /tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.ruvRE753uN/target/debug/deps --extern libc=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps/liblibc-cf2521928ac070dc.rmeta --extern rand_chacha=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps/librand_chacha-dd56c23de683d750.rmeta --extern rand_core=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps/librand_core-3c7246ca3f419bbc.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.ruvRE753uN/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 255s warning: unexpected `cfg` condition value: `simd_support` 255s --> /usr/share/cargo/registry/rand-0.8.5/src/lib.rs:52:13 255s | 255s 52 | #![cfg_attr(feature = "simd_support", feature(stdsimd))] 255s | ^^^^^^^^^^^^^^^^^^^^^^^^ 255s | 255s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 255s = help: consider adding `simd_support` as a feature in `Cargo.toml` 255s = note: see for more information about checking conditional configuration 255s = note: `#[warn(unexpected_cfgs)]` on by default 255s 255s warning: unexpected `cfg` condition name: `doc_cfg` 255s --> /usr/share/cargo/registry/rand-0.8.5/src/lib.rs:53:13 255s | 255s 53 | #![cfg_attr(doc_cfg, feature(doc_cfg))] 255s | ^^^^^^^ 255s | 255s = help: expected names are: `clippy`, `debug_assertions`, `doc`, `docsrs`, `doctest`, `feature`, `fmt_debug`, `miri`, `overflow_checks`, `panic`, `proc_macro`, `relocation_model`, `rustfmt`, `sanitize`, `sanitizer_cfi_generalize_pointers`, `sanitizer_cfi_normalize_integers`, `target_abi`, `target_arch`, `target_endian`, `target_env`, `target_family`, `target_feature`, `target_has_atomic`, `target_has_atomic_equal_alignment`, `target_has_atomic_load_store`, `target_os`, `target_pointer_width`, `target_thread_local`, `target_vendor`, `test`, `ub_checks`, `unix`, and `windows` 255s = help: consider using a Cargo feature instead 255s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 255s [lints.rust] 255s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 255s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 255s = note: see for more information about checking conditional configuration 255s 255s warning: unexpected `cfg` condition name: `doc_cfg` 255s --> /usr/share/cargo/registry/rand-0.8.5/src/lib.rs:181:12 255s | 255s 181 | #[cfg_attr(doc_cfg, doc(cfg(all(feature = "std", feature = "std_rng"))))] 255s | ^^^^^^^ 255s | 255s = help: consider using a Cargo feature instead 255s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 255s [lints.rust] 255s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 255s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 255s = note: see for more information about checking conditional configuration 255s 255s warning: unexpected `cfg` condition name: `doc_cfg` 255s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/mod.rs:116:12 255s | 255s 116 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 255s | ^^^^^^^ 255s | 255s = help: consider using a Cargo feature instead 255s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 255s [lints.rust] 255s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 255s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 255s = note: see for more information about checking conditional configuration 255s 255s warning: unexpected `cfg` condition name: `features` 255s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/distribution.rs:162:7 255s | 255s 162 | #[cfg(features = "nightly")] 255s | ^^^^^^^^^^^^^^^^^^^^ 255s | 255s = note: see for more information about checking conditional configuration 255s help: there is a config with a similar name and value 255s | 255s 162 | #[cfg(feature = "nightly")] 255s | ~~~~~~~ 255s 255s warning: unexpected `cfg` condition value: `simd_support` 255s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/float.rs:15:7 255s | 255s 15 | #[cfg(feature = "simd_support")] use packed_simd::*; 255s | ^^^^^^^^^^^^^^^^^^^^^^^^ 255s | 255s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 255s = help: consider adding `simd_support` as a feature in `Cargo.toml` 255s = note: see for more information about checking conditional configuration 255s 255s warning: unexpected `cfg` condition value: `simd_support` 255s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/float.rs:156:7 255s | 255s 156 | #[cfg(feature = "simd_support")] 255s | ^^^^^^^^^^^^^^^^^^^^^^^^ 255s | 255s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 255s = help: consider adding `simd_support` as a feature in `Cargo.toml` 255s = note: see for more information about checking conditional configuration 255s 255s warning: unexpected `cfg` condition value: `simd_support` 255s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/float.rs:158:7 255s | 255s 158 | #[cfg(feature = "simd_support")] 255s | ^^^^^^^^^^^^^^^^^^^^^^^^ 255s | 255s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 255s = help: consider adding `simd_support` as a feature in `Cargo.toml` 255s = note: see for more information about checking conditional configuration 255s 255s warning: unexpected `cfg` condition value: `simd_support` 255s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/float.rs:160:7 255s | 255s 160 | #[cfg(feature = "simd_support")] 255s | ^^^^^^^^^^^^^^^^^^^^^^^^ 255s | 255s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 255s = help: consider adding `simd_support` as a feature in `Cargo.toml` 255s = note: see for more information about checking conditional configuration 255s 255s warning: unexpected `cfg` condition value: `simd_support` 255s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/float.rs:162:7 255s | 255s 162 | #[cfg(feature = "simd_support")] 255s | ^^^^^^^^^^^^^^^^^^^^^^^^ 255s | 255s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 255s = help: consider adding `simd_support` as a feature in `Cargo.toml` 255s = note: see for more information about checking conditional configuration 255s 255s warning: unexpected `cfg` condition value: `simd_support` 255s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/float.rs:165:7 255s | 255s 165 | #[cfg(feature = "simd_support")] 255s | ^^^^^^^^^^^^^^^^^^^^^^^^ 255s | 255s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 255s = help: consider adding `simd_support` as a feature in `Cargo.toml` 255s = note: see for more information about checking conditional configuration 255s 255s warning: unexpected `cfg` condition value: `simd_support` 255s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/float.rs:167:7 255s | 255s 167 | #[cfg(feature = "simd_support")] 255s | ^^^^^^^^^^^^^^^^^^^^^^^^ 255s | 255s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 255s = help: consider adding `simd_support` as a feature in `Cargo.toml` 255s = note: see for more information about checking conditional configuration 255s 255s warning: unexpected `cfg` condition value: `simd_support` 255s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/float.rs:169:7 255s | 255s 169 | #[cfg(feature = "simd_support")] 255s | ^^^^^^^^^^^^^^^^^^^^^^^^ 255s | 255s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 255s = help: consider adding `simd_support` as a feature in `Cargo.toml` 255s = note: see for more information about checking conditional configuration 255s 255s warning: unexpected `cfg` condition value: `simd_support` 255s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/integer.rs:13:32 255s | 255s 13 | #[cfg(all(target_arch = "x86", feature = "simd_support"))] 255s | ^^^^^^^^^^^^^^^^^^^^^^^^ 255s | 255s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 255s = help: consider adding `simd_support` as a feature in `Cargo.toml` 255s = note: see for more information about checking conditional configuration 255s 255s warning: unexpected `cfg` condition value: `simd_support` 255s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/integer.rs:15:35 255s | 255s 15 | #[cfg(all(target_arch = "x86_64", feature = "simd_support"))] 255s | ^^^^^^^^^^^^^^^^^^^^^^^^ 255s | 255s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 255s = help: consider adding `simd_support` as a feature in `Cargo.toml` 255s = note: see for more information about checking conditional configuration 255s 256s warning: unexpected `cfg` condition value: `simd_support` 256s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/integer.rs:19:7 256s | 256s 19 | #[cfg(feature = "simd_support")] use packed_simd::*; 256s | ^^^^^^^^^^^^^^^^^^^^^^^^ 256s | 256s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 256s = help: consider adding `simd_support` as a feature in `Cargo.toml` 256s = note: see for more information about checking conditional configuration 256s 256s warning: unexpected `cfg` condition value: `simd_support` 256s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/integer.rs:112:7 256s | 256s 112 | #[cfg(feature = "simd_support")] 256s | ^^^^^^^^^^^^^^^^^^^^^^^^ 256s | 256s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 256s = help: consider adding `simd_support` as a feature in `Cargo.toml` 256s = note: see for more information about checking conditional configuration 256s 256s warning: unexpected `cfg` condition value: `simd_support` 256s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/integer.rs:142:7 256s | 256s 142 | #[cfg(feature = "simd_support")] 256s | ^^^^^^^^^^^^^^^^^^^^^^^^ 256s | 256s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 256s = help: consider adding `simd_support` as a feature in `Cargo.toml` 256s = note: see for more information about checking conditional configuration 256s 256s warning: unexpected `cfg` condition value: `simd_support` 256s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/integer.rs:144:7 256s | 256s 144 | #[cfg(feature = "simd_support")] 256s | ^^^^^^^^^^^^^^^^^^^^^^^^ 256s | 256s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 256s = help: consider adding `simd_support` as a feature in `Cargo.toml` 256s = note: see for more information about checking conditional configuration 256s 256s warning: unexpected `cfg` condition value: `simd_support` 256s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/integer.rs:146:7 256s | 256s 146 | #[cfg(feature = "simd_support")] 256s | ^^^^^^^^^^^^^^^^^^^^^^^^ 256s | 256s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 256s = help: consider adding `simd_support` as a feature in `Cargo.toml` 256s = note: see for more information about checking conditional configuration 256s 256s warning: unexpected `cfg` condition value: `simd_support` 256s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/integer.rs:148:7 256s | 256s 148 | #[cfg(feature = "simd_support")] 256s | ^^^^^^^^^^^^^^^^^^^^^^^^ 256s | 256s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 256s = help: consider adding `simd_support` as a feature in `Cargo.toml` 256s = note: see for more information about checking conditional configuration 256s 256s warning: unexpected `cfg` condition value: `simd_support` 256s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/integer.rs:150:7 256s | 256s 150 | #[cfg(feature = "simd_support")] 256s | ^^^^^^^^^^^^^^^^^^^^^^^^ 256s | 256s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 256s = help: consider adding `simd_support` as a feature in `Cargo.toml` 256s = note: see for more information about checking conditional configuration 256s 256s warning: unexpected `cfg` condition value: `simd_support` 256s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/integer.rs:152:7 256s | 256s 152 | #[cfg(feature = "simd_support")] 256s | ^^^^^^^^^^^^^^^^^^^^^^^^ 256s | 256s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 256s = help: consider adding `simd_support` as a feature in `Cargo.toml` 256s = note: see for more information about checking conditional configuration 256s 256s warning: unexpected `cfg` condition value: `simd_support` 256s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/integer.rs:155:5 256s | 256s 155 | feature = "simd_support", 256s | ^^^^^^^^^^^^^^^^^^^^^^^^ 256s | 256s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 256s = help: consider adding `simd_support` as a feature in `Cargo.toml` 256s = note: see for more information about checking conditional configuration 256s 256s warning: unexpected `cfg` condition value: `simd_support` 256s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:11:7 256s | 256s 11 | #[cfg(feature = "simd_support")] use packed_simd::*; 256s | ^^^^^^^^^^^^^^^^^^^^^^^^ 256s | 256s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 256s = help: consider adding `simd_support` as a feature in `Cargo.toml` 256s = note: see for more information about checking conditional configuration 256s 256s warning: unexpected `cfg` condition value: `simd_support` 256s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:144:7 256s | 256s 144 | #[cfg(feature = "simd_support")] 256s | ^^^^^^^^^^^^^^^^^^^^^^^^ 256s | 256s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 256s = help: consider adding `simd_support` as a feature in `Cargo.toml` 256s = note: see for more information about checking conditional configuration 256s 256s warning: unexpected `cfg` condition name: `std` 256s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:235:11 256s | 256s 235 | #[cfg(not(std))] 256s | ^^^ help: found config with similar value: `feature = "std"` 256s | 256s = help: consider using a Cargo feature instead 256s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 256s [lints.rust] 256s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(std)'] } 256s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(std)");` to the top of the `build.rs` 256s = note: see for more information about checking conditional configuration 256s 256s warning: unexpected `cfg` condition value: `simd_support` 256s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:363:7 256s | 256s 363 | #[cfg(feature = "simd_support")] 256s | ^^^^^^^^^^^^^^^^^^^^^^^^ 256s | 256s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 256s = help: consider adding `simd_support` as a feature in `Cargo.toml` 256s = note: see for more information about checking conditional configuration 256s 256s warning: unexpected `cfg` condition value: `simd_support` 256s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:423:7 256s | 256s 423 | #[cfg(feature="simd_support")] simd_impl! { f32x2, f32, m32x2, u32x2 } 256s | ^^^^^^^^^^^^^^^^^^^^^^ 256s | 256s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 256s = help: consider adding `simd_support` as a feature in `Cargo.toml` 256s = note: see for more information about checking conditional configuration 256s 256s warning: unexpected `cfg` condition value: `simd_support` 256s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:424:7 256s | 256s 424 | #[cfg(feature="simd_support")] simd_impl! { f32x4, f32, m32x4, u32x4 } 256s | ^^^^^^^^^^^^^^^^^^^^^^ 256s | 256s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 256s = help: consider adding `simd_support` as a feature in `Cargo.toml` 256s = note: see for more information about checking conditional configuration 256s 256s warning: unexpected `cfg` condition value: `simd_support` 256s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:425:7 256s | 256s 425 | #[cfg(feature="simd_support")] simd_impl! { f32x8, f32, m32x8, u32x8 } 256s | ^^^^^^^^^^^^^^^^^^^^^^ 256s | 256s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 256s = help: consider adding `simd_support` as a feature in `Cargo.toml` 256s = note: see for more information about checking conditional configuration 256s 256s warning: unexpected `cfg` condition value: `simd_support` 256s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:426:7 256s | 256s 426 | #[cfg(feature="simd_support")] simd_impl! { f32x16, f32, m32x16, u32x16 } 256s | ^^^^^^^^^^^^^^^^^^^^^^ 256s | 256s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 256s = help: consider adding `simd_support` as a feature in `Cargo.toml` 256s = note: see for more information about checking conditional configuration 256s 256s warning: unexpected `cfg` condition value: `simd_support` 256s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:427:7 256s | 256s 427 | #[cfg(feature="simd_support")] simd_impl! { f64x2, f64, m64x2, u64x2 } 256s | ^^^^^^^^^^^^^^^^^^^^^^ 256s | 256s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 256s = help: consider adding `simd_support` as a feature in `Cargo.toml` 256s = note: see for more information about checking conditional configuration 256s 256s warning: unexpected `cfg` condition value: `simd_support` 256s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:428:7 256s | 256s 428 | #[cfg(feature="simd_support")] simd_impl! { f64x4, f64, m64x4, u64x4 } 256s | ^^^^^^^^^^^^^^^^^^^^^^ 256s | 256s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 256s = help: consider adding `simd_support` as a feature in `Cargo.toml` 256s = note: see for more information about checking conditional configuration 256s 256s warning: unexpected `cfg` condition value: `simd_support` 256s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:429:7 256s | 256s 429 | #[cfg(feature="simd_support")] simd_impl! { f64x8, f64, m64x8, u64x8 } 256s | ^^^^^^^^^^^^^^^^^^^^^^ 256s | 256s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 256s = help: consider adding `simd_support` as a feature in `Cargo.toml` 256s = note: see for more information about checking conditional configuration 256s 256s warning: unexpected `cfg` condition name: `std` 256s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:291:19 256s | 256s 291 | #[cfg(not(std))] 256s | ^^^ help: found config with similar value: `feature = "std"` 256s ... 256s 359 | scalar_float_impl!(f32, u32); 256s | ---------------------------- in this macro invocation 256s | 256s = help: consider using a Cargo feature instead 256s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 256s [lints.rust] 256s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(std)'] } 256s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(std)");` to the top of the `build.rs` 256s = note: see for more information about checking conditional configuration 256s = note: this warning originates in the macro `scalar_float_impl` (in Nightly builds, run with -Z macro-backtrace for more info) 256s 256s warning: unexpected `cfg` condition name: `std` 256s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:291:19 256s | 256s 291 | #[cfg(not(std))] 256s | ^^^ help: found config with similar value: `feature = "std"` 256s ... 256s 360 | scalar_float_impl!(f64, u64); 256s | ---------------------------- in this macro invocation 256s | 256s = help: consider using a Cargo feature instead 256s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 256s [lints.rust] 256s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(std)'] } 256s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(std)");` to the top of the `build.rs` 256s = note: see for more information about checking conditional configuration 256s = note: this warning originates in the macro `scalar_float_impl` (in Nightly builds, run with -Z macro-backtrace for more info) 256s 256s warning: unexpected `cfg` condition name: `doc_cfg` 256s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/weighted_index.rs:80:12 256s | 256s 80 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 256s | ^^^^^^^ 256s | 256s = help: consider using a Cargo feature instead 256s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 256s [lints.rust] 256s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 256s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 256s = note: see for more information about checking conditional configuration 256s 256s warning: unexpected `cfg` condition name: `doc_cfg` 256s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/weighted_index.rs:429:12 256s | 256s 429 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 256s | ^^^^^^^ 256s | 256s = help: consider using a Cargo feature instead 256s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 256s [lints.rust] 256s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 256s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 256s = note: see for more information about checking conditional configuration 256s 256s warning: unexpected `cfg` condition value: `simd_support` 256s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/uniform.rs:121:7 256s | 256s 121 | #[cfg(feature = "simd_support")] use packed_simd::*; 256s | ^^^^^^^^^^^^^^^^^^^^^^^^ 256s | 256s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 256s = help: consider adding `simd_support` as a feature in `Cargo.toml` 256s = note: see for more information about checking conditional configuration 256s 256s warning: unexpected `cfg` condition value: `simd_support` 256s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/uniform.rs:572:7 256s | 256s 572 | #[cfg(feature = "simd_support")] 256s | ^^^^^^^^^^^^^^^^^^^^^^^^ 256s | 256s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 256s = help: consider adding `simd_support` as a feature in `Cargo.toml` 256s = note: see for more information about checking conditional configuration 256s 256s warning: unexpected `cfg` condition value: `simd_support` 256s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/uniform.rs:679:7 256s | 256s 679 | #[cfg(feature = "simd_support")] 256s | ^^^^^^^^^^^^^^^^^^^^^^^^ 256s | 256s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 256s = help: consider adding `simd_support` as a feature in `Cargo.toml` 256s = note: see for more information about checking conditional configuration 256s 256s warning: unexpected `cfg` condition value: `simd_support` 256s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/uniform.rs:687:7 256s | 256s 687 | #[cfg(feature = "simd_support")] 256s | ^^^^^^^^^^^^^^^^^^^^^^^^ 256s | 256s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 256s = help: consider adding `simd_support` as a feature in `Cargo.toml` 256s = note: see for more information about checking conditional configuration 256s 256s warning: unexpected `cfg` condition value: `simd_support` 256s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/uniform.rs:696:7 256s | 256s 696 | #[cfg(feature = "simd_support")] 256s | ^^^^^^^^^^^^^^^^^^^^^^^^ 256s | 256s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 256s = help: consider adding `simd_support` as a feature in `Cargo.toml` 256s = note: see for more information about checking conditional configuration 256s 256s warning: unexpected `cfg` condition value: `simd_support` 256s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/uniform.rs:706:7 256s | 256s 706 | #[cfg(feature = "simd_support")] 256s | ^^^^^^^^^^^^^^^^^^^^^^^^ 256s | 256s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 256s = help: consider adding `simd_support` as a feature in `Cargo.toml` 256s = note: see for more information about checking conditional configuration 256s 256s warning: unexpected `cfg` condition value: `simd_support` 256s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/uniform.rs:1001:7 256s | 256s 1001 | #[cfg(feature = "simd_support")] 256s | ^^^^^^^^^^^^^^^^^^^^^^^^ 256s | 256s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 256s = help: consider adding `simd_support` as a feature in `Cargo.toml` 256s = note: see for more information about checking conditional configuration 256s 256s warning: unexpected `cfg` condition value: `simd_support` 256s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/uniform.rs:1003:7 256s | 256s 1003 | #[cfg(feature = "simd_support")] 256s | ^^^^^^^^^^^^^^^^^^^^^^^^ 256s | 256s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 256s = help: consider adding `simd_support` as a feature in `Cargo.toml` 256s = note: see for more information about checking conditional configuration 256s 256s warning: unexpected `cfg` condition value: `simd_support` 256s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/uniform.rs:1005:7 256s | 256s 1005 | #[cfg(feature = "simd_support")] 256s | ^^^^^^^^^^^^^^^^^^^^^^^^ 256s | 256s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 256s = help: consider adding `simd_support` as a feature in `Cargo.toml` 256s = note: see for more information about checking conditional configuration 256s 256s warning: unexpected `cfg` condition value: `simd_support` 256s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/uniform.rs:1007:7 256s | 256s 1007 | #[cfg(feature = "simd_support")] 256s | ^^^^^^^^^^^^^^^^^^^^^^^^ 256s | 256s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 256s = help: consider adding `simd_support` as a feature in `Cargo.toml` 256s = note: see for more information about checking conditional configuration 256s 256s warning: unexpected `cfg` condition value: `simd_support` 256s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/uniform.rs:1010:7 256s | 256s 1010 | #[cfg(feature = "simd_support")] 256s | ^^^^^^^^^^^^^^^^^^^^^^^^ 256s | 256s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 256s = help: consider adding `simd_support` as a feature in `Cargo.toml` 256s = note: see for more information about checking conditional configuration 256s 256s warning: unexpected `cfg` condition value: `simd_support` 256s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/uniform.rs:1012:7 256s | 256s 1012 | #[cfg(feature = "simd_support")] 256s | ^^^^^^^^^^^^^^^^^^^^^^^^ 256s | 256s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 256s = help: consider adding `simd_support` as a feature in `Cargo.toml` 256s = note: see for more information about checking conditional configuration 256s 256s warning: unexpected `cfg` condition value: `simd_support` 256s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/uniform.rs:1014:7 256s | 256s 1014 | #[cfg(feature = "simd_support")] 256s | ^^^^^^^^^^^^^^^^^^^^^^^^ 256s | 256s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 256s = help: consider adding `simd_support` as a feature in `Cargo.toml` 256s = note: see for more information about checking conditional configuration 256s 256s warning: unexpected `cfg` condition name: `doc_cfg` 256s --> /usr/share/cargo/registry/rand-0.8.5/src/rng.rs:395:12 256s | 256s 395 | #[cfg_attr(doc_cfg, doc(cfg(feature = "min_const_gen")))] 256s | ^^^^^^^ 256s | 256s = help: consider using a Cargo feature instead 256s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 256s [lints.rust] 256s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 256s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 256s = note: see for more information about checking conditional configuration 256s 256s warning: unexpected `cfg` condition name: `doc_cfg` 256s --> /usr/share/cargo/registry/rand-0.8.5/src/rngs/mod.rs:99:12 256s | 256s 99 | #[cfg_attr(doc_cfg, doc(cfg(feature = "std")))] 256s | ^^^^^^^ 256s | 256s = help: consider using a Cargo feature instead 256s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 256s [lints.rust] 256s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 256s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 256s = note: see for more information about checking conditional configuration 256s 256s warning: unexpected `cfg` condition name: `doc_cfg` 256s --> /usr/share/cargo/registry/rand-0.8.5/src/rngs/mod.rs:118:12 256s | 256s 118 | #[cfg_attr(doc_cfg, doc(cfg(feature = "getrandom")))] 256s | ^^^^^^^ 256s | 256s = help: consider using a Cargo feature instead 256s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 256s [lints.rust] 256s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 256s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 256s = note: see for more information about checking conditional configuration 256s 256s warning: unexpected `cfg` condition name: `doc_cfg` 256s --> /usr/share/cargo/registry/rand-0.8.5/src/rngs/std.rs:32:12 256s | 256s 32 | #[cfg_attr(doc_cfg, doc(cfg(feature = "std_rng")))] 256s | ^^^^^^^ 256s | 256s = help: consider using a Cargo feature instead 256s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 256s [lints.rust] 256s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 256s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 256s = note: see for more information about checking conditional configuration 256s 256s warning: unexpected `cfg` condition name: `doc_cfg` 256s --> /usr/share/cargo/registry/rand-0.8.5/src/rngs/thread.rs:60:12 256s | 256s 60 | #[cfg_attr(doc_cfg, doc(cfg(all(feature = "std", feature = "std_rng"))))] 256s | ^^^^^^^ 256s | 256s = help: consider using a Cargo feature instead 256s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 256s [lints.rust] 256s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 256s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 256s = note: see for more information about checking conditional configuration 256s 256s warning: unexpected `cfg` condition name: `doc_cfg` 256s --> /usr/share/cargo/registry/rand-0.8.5/src/rngs/thread.rs:87:12 256s | 256s 87 | #[cfg_attr(doc_cfg, doc(cfg(all(feature = "std", feature = "std_rng"))))] 256s | ^^^^^^^ 256s | 256s = help: consider using a Cargo feature instead 256s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 256s [lints.rust] 256s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 256s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 256s = note: see for more information about checking conditional configuration 256s 256s warning: unexpected `cfg` condition name: `doc_cfg` 256s --> /usr/share/cargo/registry/rand-0.8.5/src/seq/mod.rs:29:12 256s | 256s 29 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 256s | ^^^^^^^ 256s | 256s = help: consider using a Cargo feature instead 256s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 256s [lints.rust] 256s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 256s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 256s = note: see for more information about checking conditional configuration 256s 256s warning: unexpected `cfg` condition name: `doc_cfg` 256s --> /usr/share/cargo/registry/rand-0.8.5/src/seq/mod.rs:623:12 256s | 256s 623 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 256s | ^^^^^^^ 256s | 256s = help: consider using a Cargo feature instead 256s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 256s [lints.rust] 256s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 256s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 256s = note: see for more information about checking conditional configuration 256s 256s warning: unexpected `cfg` condition name: `doc_cfg` 256s --> /usr/share/cargo/registry/rand-0.8.5/src/seq/index.rs:276:12 256s | 256s 276 | #[cfg_attr(doc_cfg, doc(cfg(feature = "std")))] 256s | ^^^^^^^ 256s | 256s = help: consider using a Cargo feature instead 256s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 256s [lints.rust] 256s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 256s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 256s = note: see for more information about checking conditional configuration 256s 256s warning: unexpected `cfg` condition name: `doc_cfg` 256s --> /usr/share/cargo/registry/rand-0.8.5/src/seq/mod.rs:114:16 256s | 256s 114 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 256s | ^^^^^^^ 256s | 256s = help: consider using a Cargo feature instead 256s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 256s [lints.rust] 256s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 256s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 256s = note: see for more information about checking conditional configuration 256s 256s warning: unexpected `cfg` condition name: `doc_cfg` 256s --> /usr/share/cargo/registry/rand-0.8.5/src/seq/mod.rs:142:16 256s | 256s 142 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 256s | ^^^^^^^ 256s | 256s = help: consider using a Cargo feature instead 256s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 256s [lints.rust] 256s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 256s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 256s = note: see for more information about checking conditional configuration 256s 256s warning: unexpected `cfg` condition name: `doc_cfg` 256s --> /usr/share/cargo/registry/rand-0.8.5/src/seq/mod.rs:170:16 256s | 256s 170 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 256s | ^^^^^^^ 256s | 256s = help: consider using a Cargo feature instead 256s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 256s [lints.rust] 256s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 256s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 256s = note: see for more information about checking conditional configuration 256s 256s warning: unexpected `cfg` condition name: `doc_cfg` 256s --> /usr/share/cargo/registry/rand-0.8.5/src/seq/mod.rs:219:16 256s | 256s 219 | #[cfg_attr(doc_cfg, doc(cfg(feature = "std")))] 256s | ^^^^^^^ 256s | 256s = help: consider using a Cargo feature instead 256s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 256s [lints.rust] 256s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 256s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 256s = note: see for more information about checking conditional configuration 256s 256s warning: unexpected `cfg` condition name: `doc_cfg` 256s --> /usr/share/cargo/registry/rand-0.8.5/src/seq/mod.rs:465:16 256s | 256s 465 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 256s | ^^^^^^^ 256s | 256s = help: consider using a Cargo feature instead 256s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 256s [lints.rust] 256s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 256s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 256s = note: see for more information about checking conditional configuration 256s 256s warning: trait `Float` is never used 256s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:238:18 256s | 256s 238 | pub(crate) trait Float: Sized { 256s | ^^^^^ 256s | 256s = note: `#[warn(dead_code)]` on by default 256s 256s warning: associated items `lanes`, `extract`, and `replace` are never used 256s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:247:8 256s | 256s 245 | pub(crate) trait FloatAsSIMD: Sized { 256s | ----------- associated items in this trait 256s 246 | #[inline(always)] 256s 247 | fn lanes() -> usize { 256s | ^^^^^ 256s ... 256s 255 | fn extract(self, index: usize) -> Self { 256s | ^^^^^^^ 256s ... 256s 260 | fn replace(self, index: usize, new_value: Self) -> Self { 256s | ^^^^^^^ 256s 256s warning: method `all` is never used 256s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:268:8 256s | 256s 266 | pub(crate) trait BoolAsSIMD: Sized { 256s | ---------- method in this trait 256s 267 | fn any(self) -> bool; 256s 268 | fn all(self) -> bool; 256s | ^^^ 256s 256s warning: `rand` (lib) generated 70 warnings (1 duplicate) 256s Compiling zbus_names v3.0.0 256s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=zbus_names CARGO_MANIFEST_DIR=/tmp/tmp.ruvRE753uN/registry/zbus_names-3.0.0 CARGO_MANIFEST_PATH=/tmp/tmp.ruvRE753uN/registry/zbus_names-3.0.0/Cargo.toml CARGO_PKG_AUTHORS='Zeeshan Ali Khan ' CARGO_PKG_DESCRIPTION='A collection of D-Bus bus names types' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=zbus_names CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dbus2/zbus/' CARGO_PKG_RUST_VERSION=1.75 CARGO_PKG_VERSION=3.0.0 CARGO_PKG_VERSION_MAJOR=3 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.ruvRE753uN/target/debug/deps rustc --crate-name zbus_names --edition=2021 /tmp/tmp.ruvRE753uN/registry/zbus_names-3.0.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=68f942ce83c6099a -C extra-filename=-68f942ce83c6099a --out-dir /tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.ruvRE753uN/target/debug/deps --extern serde=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps/libserde-0e7dff716e38da0d.rmeta --extern static_assertions=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps/libstatic_assertions-18df01cc327facaa.rmeta --extern zvariant=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps/libzvariant-f63ab59735f855c5.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.ruvRE753uN/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 257s warning: `zbus_names` (lib) generated 1 warning (1 duplicate) 257s Compiling sha1 v0.10.6 257s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=sha1 CARGO_MANIFEST_DIR=/tmp/tmp.ruvRE753uN/registry/sha1-0.10.6 CARGO_MANIFEST_PATH=/tmp/tmp.ruvRE753uN/registry/sha1-0.10.6/Cargo.toml CARGO_PKG_AUTHORS='RustCrypto Developers' CARGO_PKG_DESCRIPTION='SHA-1 hash function' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=sha1 CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/RustCrypto/hashes' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.10.6 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=10 CARGO_PKG_VERSION_PATCH=6 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.ruvRE753uN/target/debug/deps rustc --crate-name sha1 --edition=2018 /tmp/tmp.ruvRE753uN/registry/sha1-0.10.6/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("asm", "compress", "default", "force-soft", "loongarch64_asm", "oid", "sha1-asm", "std"))' -C metadata=7a229c14a1ac9b31 -C extra-filename=-7a229c14a1ac9b31 --out-dir /tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.ruvRE753uN/target/debug/deps --extern cfg_if=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps/libcfg_if-ff3ff84a061de73f.rmeta --extern digest=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps/libdigest-027272cf65436a63.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.ruvRE753uN/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 257s warning: `futures-util` (lib) generated 13 warnings (1 duplicate) 257s Compiling async-io v2.3.3 257s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=async_io CARGO_MANIFEST_DIR=/tmp/tmp.ruvRE753uN/registry/async-io-2.3.3 CARGO_MANIFEST_PATH=/tmp/tmp.ruvRE753uN/registry/async-io-2.3.3/Cargo.toml CARGO_PKG_AUTHORS='Stjepan Glavina ' CARGO_PKG_DESCRIPTION='Async I/O and timers' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=async-io CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/smol-rs/async-io' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=2.3.3 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=3 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.ruvRE753uN/target/debug/deps rustc --crate-name async_io --edition=2021 /tmp/tmp.ruvRE753uN/registry/async-io-2.3.3/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --warn=unexpected_cfgs --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=d311597b60c0a390 -C extra-filename=-d311597b60c0a390 --out-dir /tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.ruvRE753uN/target/debug/deps --extern async_lock=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps/libasync_lock-ac8045c9d37e641a.rmeta --extern cfg_if=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps/libcfg_if-ff3ff84a061de73f.rmeta --extern concurrent_queue=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps/libconcurrent_queue-7e82393ecc7068db.rmeta --extern futures_io=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps/libfutures_io-1a4387591f8b2b95.rmeta --extern futures_lite=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps/libfutures_lite-b3966bcb93a5ad2f.rmeta --extern parking=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps/libparking-0a38dc17b1bc33e2.rmeta --extern polling=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps/libpolling-8ea21ac6becc74d7.rmeta --extern rustix=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps/librustix-c5174677adcec892.rmeta --extern slab=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps/libslab-36320af34be0827b.rmeta --extern tracing=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps/libtracing-5f8a2432d30b4ef1.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.ruvRE753uN/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 257s warning: `sha1` (lib) generated 1 warning (1 duplicate) 257s Compiling async-fs v2.1.2 257s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=async_fs CARGO_MANIFEST_DIR=/tmp/tmp.ruvRE753uN/registry/async-fs-2.1.2 CARGO_MANIFEST_PATH=/tmp/tmp.ruvRE753uN/registry/async-fs-2.1.2/Cargo.toml CARGO_PKG_AUTHORS='Stjepan Glavina ' CARGO_PKG_DESCRIPTION='Async filesystem primitives' CARGO_PKG_HOMEPAGE='https://github.com/smol-rs/async-fs' CARGO_PKG_LICENSE='Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=async-fs CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/smol-rs/async-fs' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=2.1.2 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=2 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.ruvRE753uN/target/debug/deps rustc --crate-name async_fs --edition=2018 /tmp/tmp.ruvRE753uN/registry/async-fs-2.1.2/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=29595b84143a8f6c -C extra-filename=-29595b84143a8f6c --out-dir /tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.ruvRE753uN/target/debug/deps --extern async_lock=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps/libasync_lock-ac8045c9d37e641a.rmeta --extern blocking=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps/libblocking-eab10f1f364dd315.rmeta --extern futures_lite=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps/libfutures_lite-b3966bcb93a5ad2f.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.ruvRE753uN/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 257s warning: unexpected `cfg` condition name: `polling_test_poll_backend` 257s --> /usr/share/cargo/registry/async-io-2.3.3/src/os/unix.rs:60:17 257s | 257s 60 | not(polling_test_poll_backend), 257s | ^^^^^^^^^^^^^^^^^^^^^^^^^ 257s | 257s = help: expected names are: `clippy`, `debug_assertions`, `doc`, `docsrs`, `doctest`, `feature`, `fmt_debug`, `miri`, `overflow_checks`, `panic`, `proc_macro`, `relocation_model`, `rustfmt`, `sanitize`, `sanitizer_cfi_generalize_pointers`, `sanitizer_cfi_normalize_integers`, `target_abi`, `target_arch`, `target_endian`, `target_env`, `target_family`, `target_feature`, `target_has_atomic`, `target_has_atomic_equal_alignment`, `target_has_atomic_load_store`, `target_os`, `target_pointer_width`, `target_thread_local`, `target_vendor`, `test`, `ub_checks`, `unix`, and `windows` 257s = help: consider using a Cargo feature instead 257s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 257s [lints.rust] 257s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(polling_test_poll_backend)'] } 257s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(polling_test_poll_backend)");` to the top of the `build.rs` 257s = note: see for more information about checking conditional configuration 257s = note: requested on the command line with `-W unexpected-cfgs` 257s 257s warning: `async-fs` (lib) generated 1 warning (1 duplicate) 257s Compiling async-executor v1.13.1 257s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=async_executor CARGO_MANIFEST_DIR=/tmp/tmp.ruvRE753uN/registry/async-executor-1.13.1 CARGO_MANIFEST_PATH=/tmp/tmp.ruvRE753uN/registry/async-executor-1.13.1/Cargo.toml CARGO_PKG_AUTHORS='Stjepan Glavina :John Nunley ' CARGO_PKG_DESCRIPTION='Async executor' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=async-executor CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/smol-rs/async-executor' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=1.13.1 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=13 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.ruvRE753uN/target/debug/deps rustc --crate-name async_executor --edition=2021 /tmp/tmp.ruvRE753uN/registry/async-executor-1.13.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("static"))' -C metadata=bf62c2e997e9834f -C extra-filename=-bf62c2e997e9834f --out-dir /tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.ruvRE753uN/target/debug/deps --extern async_task=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps/libasync_task-18059860e85d74b4.rmeta --extern concurrent_queue=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps/libconcurrent_queue-7e82393ecc7068db.rmeta --extern fastrand=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps/libfastrand-b0f30b63d6f103db.rmeta --extern futures_lite=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps/libfutures_lite-b3966bcb93a5ad2f.rmeta --extern slab=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps/libslab-36320af34be0827b.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.ruvRE753uN/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 258s warning: `async-executor` (lib) generated 1 warning (1 duplicate) 258s Compiling zbus_macros v4.4.0 258s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=zbus_macros CARGO_MANIFEST_DIR=/tmp/tmp.ruvRE753uN/registry/zbus_macros-4.4.0 CARGO_MANIFEST_PATH=/tmp/tmp.ruvRE753uN/registry/zbus_macros-4.4.0/Cargo.toml CARGO_PKG_AUTHORS='Marc-André Lureau :Zeeshan Ali Khan ' CARGO_PKG_DESCRIPTION='proc-macros for zbus' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=zbus_macros CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dbus2/zbus/' CARGO_PKG_RUST_VERSION=1.75 CARGO_PKG_VERSION=4.4.0 CARGO_PKG_VERSION_MAJOR=4 CARGO_PKG_VERSION_MINOR=4 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.ruvRE753uN/target/debug/deps rustc --crate-name zbus_macros --edition=2021 /tmp/tmp.ruvRE753uN/registry/zbus_macros-4.4.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type proc-macro --emit=dep-info,link -C prefer-dynamic -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=fbbb45642851aa97 -C extra-filename=-fbbb45642851aa97 --out-dir /tmp/tmp.ruvRE753uN/target/debug/deps -L dependency=/tmp/tmp.ruvRE753uN/target/debug/deps --extern proc_macro_crate=/tmp/tmp.ruvRE753uN/target/debug/deps/libproc_macro_crate-900b46bff7d8f3e2.rlib --extern proc_macro2=/tmp/tmp.ruvRE753uN/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rlib --extern quote=/tmp/tmp.ruvRE753uN/target/debug/deps/libquote-dc92c6f25ee0f0c6.rlib --extern syn=/tmp/tmp.ruvRE753uN/target/debug/deps/libsyn-0167beed9e699402.rlib --extern zvariant_utils=/tmp/tmp.ruvRE753uN/target/debug/deps/libzvariant_utils-555d90bad4acf190.rlib --extern proc_macro --cap-lints warn` 258s warning: `async-io` (lib) generated 2 warnings (1 duplicate) 258s Compiling async-trait v0.1.83 258s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=async_trait CARGO_MANIFEST_DIR=/tmp/tmp.ruvRE753uN/registry/async-trait-0.1.83 CARGO_MANIFEST_PATH=/tmp/tmp.ruvRE753uN/registry/async-trait-0.1.83/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='Type erasure for async trait methods' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=async-trait CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/async-trait' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=0.1.83 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=83 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.ruvRE753uN/target/debug/deps rustc --crate-name async_trait --edition=2021 /tmp/tmp.ruvRE753uN/registry/async-trait-0.1.83/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=e4c90cfd514ad223 -C extra-filename=-e4c90cfd514ad223 --out-dir /tmp/tmp.ruvRE753uN/target/debug/deps -L dependency=/tmp/tmp.ruvRE753uN/target/debug/deps --extern proc_macro2=/tmp/tmp.ruvRE753uN/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rlib --extern quote=/tmp/tmp.ruvRE753uN/target/debug/deps/libquote-dc92c6f25ee0f0c6.rlib --extern syn=/tmp/tmp.ruvRE753uN/target/debug/deps/libsyn-0167beed9e699402.rlib --extern proc_macro --cap-lints warn` 259s Compiling serde_repr v0.1.12 259s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=serde_repr CARGO_MANIFEST_DIR=/tmp/tmp.ruvRE753uN/registry/serde_repr-0.1.12 CARGO_MANIFEST_PATH=/tmp/tmp.ruvRE753uN/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.ruvRE753uN/target/debug/deps rustc --crate-name serde_repr --edition=2018 /tmp/tmp.ruvRE753uN/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=79727398b79ecac5 -C extra-filename=-79727398b79ecac5 --out-dir /tmp/tmp.ruvRE753uN/target/debug/deps -L dependency=/tmp/tmp.ruvRE753uN/target/debug/deps --extern proc_macro2=/tmp/tmp.ruvRE753uN/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rlib --extern quote=/tmp/tmp.ruvRE753uN/target/debug/deps/libquote-dc92c6f25ee0f0c6.rlib --extern syn=/tmp/tmp.ruvRE753uN/target/debug/deps/libsyn-0167beed9e699402.rlib --extern proc_macro --cap-lints warn` 260s Compiling async-broadcast v0.7.1 260s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=async_broadcast CARGO_MANIFEST_DIR=/tmp/tmp.ruvRE753uN/registry/async-broadcast-0.7.1 CARGO_MANIFEST_PATH=/tmp/tmp.ruvRE753uN/registry/async-broadcast-0.7.1/Cargo.toml CARGO_PKG_AUTHORS='Stjepan Glavina :Yoshua Wuyts :Zeeshan Ali Khan ' CARGO_PKG_DESCRIPTION='Async broadcast channels' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=async-broadcast CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/smol-rs/async-broadcast' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.7.1 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=7 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.ruvRE753uN/target/debug/deps rustc --crate-name async_broadcast --edition=2018 /tmp/tmp.ruvRE753uN/registry/async-broadcast-0.7.1/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=f1e6bd69abd4251e -C extra-filename=-f1e6bd69abd4251e --out-dir /tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.ruvRE753uN/target/debug/deps --extern event_listener=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps/libevent_listener-4260d59234261e59.rmeta --extern event_listener_strategy=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps/libevent_listener_strategy-53ebcc1cb10a7931.rmeta --extern futures_core=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps/libfutures_core-8d305950da6bf5c8.rmeta --extern pin_project_lite=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps/libpin_project_lite-5dc815523e98d889.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.ruvRE753uN/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 260s warning: `async-broadcast` (lib) generated 1 warning (1 duplicate) 260s Compiling ordered-stream v0.2.0 260s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=ordered_stream CARGO_MANIFEST_DIR=/tmp/tmp.ruvRE753uN/registry/ordered-stream-0.2.0 CARGO_MANIFEST_PATH=/tmp/tmp.ruvRE753uN/registry/ordered-stream-0.2.0/Cargo.toml CARGO_PKG_AUTHORS='Daniel De Graaf :Zeeshan Ali Khan ' CARGO_PKG_DESCRIPTION='Streams that are ordered relative to external events' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=ordered-stream CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/danieldg/ordered-stream' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.2.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.ruvRE753uN/target/debug/deps rustc --crate-name ordered_stream --edition=2018 /tmp/tmp.ruvRE753uN/registry/ordered-stream-0.2.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=5d03c0a21a4bd5e4 -C extra-filename=-5d03c0a21a4bd5e4 --out-dir /tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.ruvRE753uN/target/debug/deps --extern futures_core=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps/libfutures_core-8d305950da6bf5c8.rmeta --extern pin_project_lite=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps/libpin_project_lite-5dc815523e98d889.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.ruvRE753uN/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 260s warning: `ordered-stream` (lib) generated 1 warning (1 duplicate) 260s Compiling xdg-home v1.3.0 260s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=xdg_home CARGO_MANIFEST_DIR=/tmp/tmp.ruvRE753uN/registry/xdg-home-1.3.0 CARGO_MANIFEST_PATH=/tmp/tmp.ruvRE753uN/registry/xdg-home-1.3.0/Cargo.toml CARGO_PKG_AUTHORS='Zeeshan Ali Khan ' CARGO_PKG_DESCRIPTION='The user'\''s home directory as per XDG Specification' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=xdg-home CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/zeenix/xdg-home' CARGO_PKG_RUST_VERSION=1.60 CARGO_PKG_VERSION=1.3.0 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.ruvRE753uN/target/debug/deps rustc --crate-name xdg_home --edition=2021 /tmp/tmp.ruvRE753uN/registry/xdg-home-1.3.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=4230920bfa085c8c -C extra-filename=-4230920bfa085c8c --out-dir /tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.ruvRE753uN/target/debug/deps --extern libc=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps/liblibc-cf2521928ac070dc.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.ruvRE753uN/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 260s warning: `xdg-home` (lib) generated 1 warning (1 duplicate) 260s Compiling hex v0.4.3 260s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=hex CARGO_MANIFEST_DIR=/tmp/tmp.ruvRE753uN/registry/hex-0.4.3 CARGO_MANIFEST_PATH=/tmp/tmp.ruvRE753uN/registry/hex-0.4.3/Cargo.toml CARGO_PKG_AUTHORS='KokaKiwi ' CARGO_PKG_DESCRIPTION='Encoding and decoding data into/from hexadecimal representation.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=hex CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/KokaKiwi/rust-hex' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.4.3 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=4 CARGO_PKG_VERSION_PATCH=3 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.ruvRE753uN/target/debug/deps rustc --crate-name hex --edition=2018 /tmp/tmp.ruvRE753uN/registry/hex-0.4.3/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="alloc"' --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "default", "serde", "std"))' -C metadata=d04eec135ea2b5a3 -C extra-filename=-d04eec135ea2b5a3 --out-dir /tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.ruvRE753uN/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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.ruvRE753uN/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 260s warning: `hex` (lib) generated 1 warning (1 duplicate) 260s Compiling futures-channel v0.3.31 260s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=futures_channel CARGO_MANIFEST_DIR=/tmp/tmp.ruvRE753uN/registry/futures-channel-0.3.31 CARGO_MANIFEST_PATH=/tmp/tmp.ruvRE753uN/registry/futures-channel-0.3.31/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='Channels for asynchronous communication using futures-rs. 260s ' CARGO_PKG_HOMEPAGE='https://rust-lang.github.io/futures-rs' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=futures-channel CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/futures-rs' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=0.3.31 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=31 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.ruvRE753uN/target/debug/deps rustc --crate-name futures_channel --edition=2018 /tmp/tmp.ruvRE753uN/registry/futures-channel-0.3.31/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --warn=unreachable_pub --warn=unexpected_cfgs --warn=single_use_lifetimes --warn=rust_2018_idioms --warn=missing_debug_implementations --check-cfg 'cfg(futures_sanitizer)' --cfg 'feature="alloc"' --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "cfg-target-has-atomic", "default", "futures-sink", "sink", "std", "unstable"))' -C metadata=8ed485ea134c933c -C extra-filename=-8ed485ea134c933c --out-dir /tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.ruvRE753uN/target/debug/deps --extern futures_core=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps/libfutures_core-8d305950da6bf5c8.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.ruvRE753uN/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 261s warning: `futures-channel` (lib) generated 1 warning (1 duplicate) 261s Compiling zbus v4.4.0 261s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=zbus CARGO_MANIFEST_DIR=/tmp/tmp.ruvRE753uN/registry/zbus-4.4.0 CARGO_MANIFEST_PATH=/tmp/tmp.ruvRE753uN/registry/zbus-4.4.0/Cargo.toml CARGO_PKG_AUTHORS='Zeeshan Ali Khan ' CARGO_PKG_DESCRIPTION='API for D-Bus communication' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=zbus CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dbus2/zbus/' CARGO_PKG_RUST_VERSION=1.75 CARGO_PKG_VERSION=4.4.0 CARGO_PKG_VERSION_MAJOR=4 CARGO_PKG_VERSION_MINOR=4 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.ruvRE753uN/target/debug/deps rustc --crate-name zbus --edition=2021 /tmp/tmp.ruvRE753uN/registry/zbus-4.4.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="async-executor"' --cfg 'feature="async-fs"' --cfg 'feature="async-io"' --cfg 'feature="async-lock"' --cfg 'feature="async-task"' --cfg 'feature="blocking"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("async-executor", "async-fs", "async-io", "async-lock", "async-task", "blocking", "bus-impl", "chrono", "default", "heapless", "option-as-array", "p2p", "time", "tokio", "tokio-vsock", "url", "uuid", "vsock"))' -C metadata=561e5890d7f4a32b -C extra-filename=-561e5890d7f4a32b --out-dir /tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.ruvRE753uN/target/debug/deps --extern async_broadcast=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps/libasync_broadcast-f1e6bd69abd4251e.rmeta --extern async_executor=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps/libasync_executor-bf62c2e997e9834f.rmeta --extern async_fs=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps/libasync_fs-29595b84143a8f6c.rmeta --extern async_io=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps/libasync_io-d311597b60c0a390.rmeta --extern async_lock=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps/libasync_lock-ac8045c9d37e641a.rmeta --extern async_task=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps/libasync_task-18059860e85d74b4.rmeta --extern async_trait=/tmp/tmp.ruvRE753uN/target/debug/deps/libasync_trait-e4c90cfd514ad223.so --extern blocking=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps/libblocking-eab10f1f364dd315.rmeta --extern enumflags2=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps/libenumflags2-2867d32c4b4f39e8.rmeta --extern event_listener=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps/libevent_listener-4260d59234261e59.rmeta --extern futures_core=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps/libfutures_core-8d305950da6bf5c8.rmeta --extern futures_sink=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps/libfutures_sink-2335bc9d806f8753.rmeta --extern futures_util=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps/libfutures_util-724575be975598c0.rmeta --extern hex=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps/libhex-d04eec135ea2b5a3.rmeta --extern nix=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps/libnix-30ad0bf244578707.rmeta --extern ordered_stream=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps/libordered_stream-5d03c0a21a4bd5e4.rmeta --extern rand=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps/librand-da2a195293a4eb5f.rmeta --extern serde=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps/libserde-0e7dff716e38da0d.rmeta --extern serde_repr=/tmp/tmp.ruvRE753uN/target/debug/deps/libserde_repr-79727398b79ecac5.so --extern sha1=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps/libsha1-7a229c14a1ac9b31.rmeta --extern static_assertions=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps/libstatic_assertions-18df01cc327facaa.rmeta --extern tracing=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps/libtracing-5f8a2432d30b4ef1.rmeta --extern xdg_home=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps/libxdg_home-4230920bfa085c8c.rmeta --extern zbus_macros=/tmp/tmp.ruvRE753uN/target/debug/deps/libzbus_macros-fbbb45642851aa97.so --extern zbus_names=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps/libzbus_names-68f942ce83c6099a.rmeta --extern zvariant=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps/libzvariant-f63ab59735f855c5.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.ruvRE753uN/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 270s warning: `zbus` (lib) generated 1 warning (1 duplicate) 270s Compiling search-provider v0.10.0 (/usr/share/cargo/registry/search-provider-0.10.0) 270s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=search_provider CARGO_MANIFEST_DIR=/usr/share/cargo/registry/search-provider-0.10.0 CARGO_MANIFEST_PATH=/usr/share/cargo/registry/search-provider-0.10.0/Cargo.toml CARGO_PKG_AUTHORS='Felix Häcker ' CARGO_PKG_DESCRIPTION='Rust wrapper around the GNOME Shell search provider API' CARGO_PKG_HOMEPAGE='https://gitlab.gnome.org/World/Rust/search-provider' CARGO_PKG_LICENSE=' GPL-3.0-or-later' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=search-provider CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://gitlab.gnome.org/World/Rust/search-provider' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.10.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=10 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' CARGO_PRIMARY_PACKAGE=1 LD_LIBRARY_PATH=/tmp/tmp.ruvRE753uN/target/debug/deps rustc --crate-name search_provider --edition=2021 src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --test --cfg 'feature="async-std"' --cfg 'feature="default"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("async-std", "default", "gdk", "gdk-pixbuf", "tokio"))' -C metadata=69cb62a129a2cf8f -C extra-filename=-69cb62a129a2cf8f --out-dir /tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -C incremental=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/incremental -L dependency=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.ruvRE753uN/target/debug/deps --extern futures_channel=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps/libfutures_channel-8ed485ea134c933c.rlib --extern futures_util=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps/libfutures_util-724575be975598c0.rlib --extern serde=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps/libserde-0e7dff716e38da0d.rlib --extern zbus=/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps/libzbus-561e5890d7f4a32b.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.ruvRE753uN/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 271s warning: `search-provider` (lib test) generated 1 warning (1 duplicate) 271s Finished `test` profile [unoptimized + debuginfo] target(s) in 41.27s 271s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_MANIFEST_DIR=/usr/share/cargo/registry/search-provider-0.10.0 CARGO_MANIFEST_PATH=/usr/share/cargo/registry/search-provider-0.10.0/Cargo.toml CARGO_PKG_AUTHORS='Felix Häcker ' CARGO_PKG_DESCRIPTION='Rust wrapper around the GNOME Shell search provider API' CARGO_PKG_HOMEPAGE='https://gitlab.gnome.org/World/Rust/search-provider' CARGO_PKG_LICENSE=' GPL-3.0-or-later' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=search-provider CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://gitlab.gnome.org/World/Rust/search-provider' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.10.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=10 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps:/tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' /tmp/tmp.ruvRE753uN/target/s390x-unknown-linux-gnu/debug/deps/search_provider-69cb62a129a2cf8f` 271s 271s running 1 test 271s test result_metadata::tests::icon_data_signature ... ok 271s 271s test result: ok. 1 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.00s 271s 272s /tmp/autopkgtest.9UAdYD/wrapper.sh: checking for leaked background processes... 272s /tmp/autopkgtest.9UAdYD/wrapper.sh: waiting for tee/cat subprocesses... 272s /tmp/autopkgtest.9UAdYD/wrapper.sh: cleaning up... 272s /tmp/autopkgtest.9UAdYD/wrapper.sh: Exit status: 0 272s autopkgtest: DBG: testbed command exited with code 0 272s autopkgtest [18:29:59]: test librust-search-provider-dev:default: -----------------------] 272s autopkgtest: DBG: testbed executing test finished with exit status 0 272s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.9UAdYD/librust-search-provider-dev%3Adefault-stdout /tmp/autopkgtest-work.fgzbr70j/out/librust-search-provider-dev%3Adefault-stdout 272s autopkgtest: DBG: got reply from testbed: ok 272s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.9UAdYD/librust-search-provider-dev%3Adefault-stderr /tmp/autopkgtest-work.fgzbr70j/out/librust-search-provider-dev%3Adefault-stderr 272s autopkgtest: DBG: got reply from testbed: ok 273s autopkgtest [18:30:00]: test librust-search-provider-dev:default: - - - - - - - - - - results - - - - - - - - - - 273s librust-search-provider-dev:default PASS 273s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.9UAdYD/librust-search-provider-dev%3Adefault-artifacts/ /tmp/autopkgtest-work.fgzbr70j/out/artifacts/ 273s autopkgtest: DBG: got reply from testbed: ok 273s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.9UAdYD/librust-search-provider-dev:default-artifacts', '/tmp/autopkgtest.9UAdYD/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 273s autopkgtest: DBG: testbed command exited with code 0 273s autopkgtest [18:30:00]: test librust-search-provider-dev:gdk: preparing testbed 273s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['dh-cargo (>= 18)', 'librust-search-provider-dev'], deps_new=['dh-cargo (>= 18)', 'librust-search-provider-dev'] 273s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 273s autopkgtest: DBG: install_deps: deps_new=['dh-cargo (>= 18)', 'librust-search-provider-dev'] 273s autopkgtest: DBG: install-deps: satisfying dh-cargo (>= 18), librust-search-provider-dev 273s autopkgtest: DBG: can use apt-get on testbed: True 273s 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-search-provider-dev'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 273s Reading package lists... 273s Building dependency tree... 273s Reading state information... 273s Starting pkgProblemResolver with broken count: 0 273s Starting 2 pkgProblemResolver with broken count: 0 273s Done 274s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 274s autopkgtest: DBG: testbed command exited with code 0 274s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'librust-search-provider-dev'], kind short, sout pipe, serr pipe, env [] 274s autopkgtest: DBG: testbed command exited with code 0 274s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.9UAdYD/librust-search-provider-dev:gdk-packages.all"], kind short, sout raw, serr pipe, env [] 274s autopkgtest: DBG: testbed command exited with code 0 274s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.9UAdYD/librust-search-provider-dev%3Agdk-packages.all /tmp/autopkgtest-work.fgzbr70j/out/librust-search-provider-dev%3Agdk-packages.all 274s autopkgtest: DBG: got reply from testbed: ok 274s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.9UAdYD/build.JnS/src'], kind short, sout raw, serr raw, env [] 274s autopkgtest: DBG: testbed command exited with code 0 274s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.9UAdYD/build.JnS/src already exists 274s autopkgtest [18:30:01]: test librust-search-provider-dev:gdk: /usr/share/cargo/bin/cargo-auto-test search-provider 0.10.0 --all-targets --no-default-features --features gdk 274s autopkgtest [18:30:01]: test librust-search-provider-dev:gdk: [----------------------- 274s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.9UAdYD/wrapper.sh --debug --artifacts=/tmp/autopkgtest.9UAdYD/librust-search-provider-dev:gdk-artifacts --chdir=/tmp/autopkgtest.9UAdYD/build.JnS/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.9UAdYD/librust-search-provider-dev:gdk-stderr --stdout=/tmp/autopkgtest.9UAdYD/librust-search-provider-dev:gdk-stdout --tmp=/tmp/autopkgtest.9UAdYD/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 search-provider 0.10.0 --all-targets --no-default-features --features gdk'"], kind test, sout raw, serr raw, env [] 274s /tmp/autopkgtest.9UAdYD/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.9UAdYD/librust-search-provider-dev:gdk-artifacts 274s /tmp/autopkgtest.9UAdYD/wrapper.sh: changing to directory: /tmp/autopkgtest.9UAdYD/build.JnS/src 274s /tmp/autopkgtest.9UAdYD/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 274s /tmp/autopkgtest.9UAdYD/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 274s /tmp/autopkgtest.9UAdYD/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 274s /tmp/autopkgtest.9UAdYD/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 274s /tmp/autopkgtest.9UAdYD/wrapper.sh: setting environment: LANG=C.UTF-8 274s /tmp/autopkgtest.9UAdYD/wrapper.sh: unsetting environment: LANGUAGE 274s /tmp/autopkgtest.9UAdYD/wrapper.sh: unsetting environment: LC_ADDRESS 274s /tmp/autopkgtest.9UAdYD/wrapper.sh: unsetting environment: LC_ALL 274s /tmp/autopkgtest.9UAdYD/wrapper.sh: unsetting environment: LC_COLLATE 274s /tmp/autopkgtest.9UAdYD/wrapper.sh: unsetting environment: LC_CTYPE 274s /tmp/autopkgtest.9UAdYD/wrapper.sh: unsetting environment: LC_IDENTIFICATION 274s /tmp/autopkgtest.9UAdYD/wrapper.sh: unsetting environment: LC_MEASUREMENT 274s /tmp/autopkgtest.9UAdYD/wrapper.sh: unsetting environment: LC_MESSAGES 274s /tmp/autopkgtest.9UAdYD/wrapper.sh: unsetting environment: LC_MONETARY 274s /tmp/autopkgtest.9UAdYD/wrapper.sh: unsetting environment: LC_NAME 274s /tmp/autopkgtest.9UAdYD/wrapper.sh: unsetting environment: LC_NUMERIC 274s /tmp/autopkgtest.9UAdYD/wrapper.sh: unsetting environment: LC_PAPER 274s /tmp/autopkgtest.9UAdYD/wrapper.sh: unsetting environment: LC_TELEPHONE 274s /tmp/autopkgtest.9UAdYD/wrapper.sh: unsetting environment: LC_TIME 274s /tmp/autopkgtest.9UAdYD/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 274s /tmp/autopkgtest.9UAdYD/wrapper.sh: pretending to be a login shell 274s /tmp/autopkgtest.9UAdYD/wrapper.sh: will write standard error to /tmp/autopkgtest.9UAdYD/librust-search-provider-dev:gdk-stderr 274s /tmp/autopkgtest.9UAdYD/wrapper.sh: will write stdout to /tmp/autopkgtest.9UAdYD/librust-search-provider-dev:gdk-stdout 274s /tmp/autopkgtest.9UAdYD/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.9UAdYD/autopkgtest_tmp 274s /tmp/autopkgtest.9UAdYD/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 274s /tmp/autopkgtest.9UAdYD/wrapper.sh: command to run: bash -ec /usr/share/cargo/bin/cargo-auto-test search-provider 0.10.0 --all-targets --no-default-features --features gdk 274s /tmp/autopkgtest.9UAdYD/wrapper.sh: copying /tmp/tmp.0mUrPhmjdT/out to stdout and file: /tmp/autopkgtest.9UAdYD/librust-search-provider-dev:gdk-stdout 274s /tmp/autopkgtest.9UAdYD/wrapper.sh: copying /tmp/tmp.0mUrPhmjdT/err to standard error and file: /tmp/autopkgtest.9UAdYD/librust-search-provider-dev:gdk-stdout 274s /tmp/autopkgtest.9UAdYD/wrapper.sh: writing script pid 10632 to /tmp/autopkgtest_script_pid 275s debian cargo wrapper: options, profiles, parallel, lto: ['parallel=2'] [] ['-j2'] 0 275s debian cargo wrapper: rust_type, gnu_type: s390x-unknown-linux-gnu, s390x-linux-gnu 275s debian cargo wrapper: unsetting RUSTFLAGS and assuming it will be (or already was) added to $CARGO_HOME/config.toml 275s debian cargo wrapper: linking /usr/share/cargo/registry/* into /tmp/tmp.cy4zYrLhIY/registry/ 275s debian cargo wrapper: options, profiles, parallel, lto: ['parallel=2'] [] ['-j2'] 0 275s debian cargo wrapper: rust_type, gnu_type: s390x-unknown-linux-gnu, s390x-linux-gnu 275s debian cargo wrapper: unsetting RUSTFLAGS and assuming it will be (or already was) added to $CARGO_HOME/config.toml 275s 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', '--features', 'gdk'],) {} 275s Compiling serde v1.0.217 275s Compiling equivalent v1.0.1 275s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.cy4zYrLhIY/registry/serde-1.0.217 CARGO_MANIFEST_PATH=/tmp/tmp.cy4zYrLhIY/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.cy4zYrLhIY/target/debug/deps rustc --crate-name build_script_build --edition=2018 /tmp/tmp.cy4zYrLhIY/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="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "default", "derive", "rc", "serde_derive", "std", "unstable"))' -C metadata=2b32d4e029565da2 -C extra-filename=-2b32d4e029565da2 --out-dir /tmp/tmp.cy4zYrLhIY/target/debug/build/serde-2b32d4e029565da2 -L dependency=/tmp/tmp.cy4zYrLhIY/target/debug/deps --cap-lints warn` 275s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=equivalent CARGO_MANIFEST_DIR=/tmp/tmp.cy4zYrLhIY/registry/equivalent-1.0.1 CARGO_MANIFEST_PATH=/tmp/tmp.cy4zYrLhIY/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.cy4zYrLhIY/target/debug/deps rustc --crate-name equivalent --edition=2015 /tmp/tmp.cy4zYrLhIY/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.cy4zYrLhIY/target/debug/deps -L dependency=/tmp/tmp.cy4zYrLhIY/target/debug/deps --cap-lints warn` 275s Compiling hashbrown v0.14.5 275s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=hashbrown CARGO_MANIFEST_DIR=/tmp/tmp.cy4zYrLhIY/registry/hashbrown-0.14.5 CARGO_MANIFEST_PATH=/tmp/tmp.cy4zYrLhIY/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.cy4zYrLhIY/target/debug/deps rustc --crate-name hashbrown --edition=2021 /tmp/tmp.cy4zYrLhIY/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.cy4zYrLhIY/target/debug/deps -L dependency=/tmp/tmp.cy4zYrLhIY/target/debug/deps --cap-lints warn` 275s warning: unexpected `cfg` condition value: `nightly` 275s --> /tmp/tmp.cy4zYrLhIY/registry/hashbrown-0.14.5/src/lib.rs:14:5 275s | 275s 14 | feature = "nightly", 275s | ^^^^^^^^^^^^^^^^^^^ 275s | 275s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 275s = help: consider adding `nightly` as a feature in `Cargo.toml` 275s = note: see for more information about checking conditional configuration 275s = note: `#[warn(unexpected_cfgs)]` on by default 275s 275s warning: unexpected `cfg` condition value: `nightly` 275s --> /tmp/tmp.cy4zYrLhIY/registry/hashbrown-0.14.5/src/lib.rs:39:13 275s | 275s 39 | #![cfg_attr(feature = "nightly", warn(fuzzy_provenance_casts))] 275s | ^^^^^^^^^^^^^^^^^^^ 275s | 275s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 275s = help: consider adding `nightly` as a feature in `Cargo.toml` 275s = note: see for more information about checking conditional configuration 275s 275s warning: unexpected `cfg` condition value: `nightly` 275s --> /tmp/tmp.cy4zYrLhIY/registry/hashbrown-0.14.5/src/lib.rs:40:13 275s | 275s 40 | #![cfg_attr(feature = "nightly", allow(internal_features))] 275s | ^^^^^^^^^^^^^^^^^^^ 275s | 275s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 275s = help: consider adding `nightly` as a feature in `Cargo.toml` 275s = note: see for more information about checking conditional configuration 275s 275s warning: unexpected `cfg` condition value: `nightly` 275s --> /tmp/tmp.cy4zYrLhIY/registry/hashbrown-0.14.5/src/lib.rs:49:7 275s | 275s 49 | #[cfg(feature = "nightly")] 275s | ^^^^^^^^^^^^^^^^^^^ 275s | 275s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 275s = help: consider adding `nightly` as a feature in `Cargo.toml` 275s = note: see for more information about checking conditional configuration 275s 275s warning: unexpected `cfg` condition value: `nightly` 275s --> /tmp/tmp.cy4zYrLhIY/registry/hashbrown-0.14.5/src/macros.rs:59:7 275s | 275s 59 | #[cfg(feature = "nightly")] 275s | ^^^^^^^^^^^^^^^^^^^ 275s | 275s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 275s = help: consider adding `nightly` as a feature in `Cargo.toml` 275s = note: see for more information about checking conditional configuration 275s 275s warning: unexpected `cfg` condition value: `nightly` 275s --> /tmp/tmp.cy4zYrLhIY/registry/hashbrown-0.14.5/src/macros.rs:65:11 275s | 275s 65 | #[cfg(not(feature = "nightly"))] 275s | ^^^^^^^^^^^^^^^^^^^ 275s | 275s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 275s = help: consider adding `nightly` as a feature in `Cargo.toml` 275s = note: see for more information about checking conditional configuration 275s 275s warning: unexpected `cfg` condition value: `nightly` 275s --> /tmp/tmp.cy4zYrLhIY/registry/hashbrown-0.14.5/src/raw/mod.rs:53:11 275s | 275s 53 | #[cfg(not(feature = "nightly"))] 275s | ^^^^^^^^^^^^^^^^^^^ 275s | 275s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 275s = help: consider adding `nightly` as a feature in `Cargo.toml` 275s = note: see for more information about checking conditional configuration 275s 275s warning: unexpected `cfg` condition value: `nightly` 275s --> /tmp/tmp.cy4zYrLhIY/registry/hashbrown-0.14.5/src/raw/mod.rs:55:11 275s | 275s 55 | #[cfg(not(feature = "nightly"))] 275s | ^^^^^^^^^^^^^^^^^^^ 275s | 275s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 275s = help: consider adding `nightly` as a feature in `Cargo.toml` 275s = note: see for more information about checking conditional configuration 275s 275s warning: unexpected `cfg` condition value: `nightly` 275s --> /tmp/tmp.cy4zYrLhIY/registry/hashbrown-0.14.5/src/raw/mod.rs:57:7 275s | 275s 57 | #[cfg(feature = "nightly")] 275s | ^^^^^^^^^^^^^^^^^^^ 275s | 275s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 275s = help: consider adding `nightly` as a feature in `Cargo.toml` 275s = note: see for more information about checking conditional configuration 275s 275s warning: unexpected `cfg` condition value: `nightly` 275s --> /tmp/tmp.cy4zYrLhIY/registry/hashbrown-0.14.5/src/raw/mod.rs:3549:7 275s | 275s 3549 | #[cfg(feature = "nightly")] 275s | ^^^^^^^^^^^^^^^^^^^ 275s | 275s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 275s = help: consider adding `nightly` as a feature in `Cargo.toml` 275s = note: see for more information about checking conditional configuration 275s 275s warning: unexpected `cfg` condition value: `nightly` 275s --> /tmp/tmp.cy4zYrLhIY/registry/hashbrown-0.14.5/src/raw/mod.rs:3661:7 275s | 275s 3661 | #[cfg(feature = "nightly")] 275s | ^^^^^^^^^^^^^^^^^^^ 275s | 275s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 275s = help: consider adding `nightly` as a feature in `Cargo.toml` 275s = note: see for more information about checking conditional configuration 275s 275s warning: unexpected `cfg` condition value: `nightly` 275s --> /tmp/tmp.cy4zYrLhIY/registry/hashbrown-0.14.5/src/raw/mod.rs:3678:11 275s | 275s 3678 | #[cfg(not(feature = "nightly"))] 275s | ^^^^^^^^^^^^^^^^^^^ 275s | 275s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 275s = help: consider adding `nightly` as a feature in `Cargo.toml` 275s = note: see for more information about checking conditional configuration 275s 275s warning: unexpected `cfg` condition value: `nightly` 275s --> /tmp/tmp.cy4zYrLhIY/registry/hashbrown-0.14.5/src/raw/mod.rs:4304:7 275s | 275s 4304 | #[cfg(feature = "nightly")] 275s | ^^^^^^^^^^^^^^^^^^^ 275s | 275s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 275s = help: consider adding `nightly` as a feature in `Cargo.toml` 275s = note: see for more information about checking conditional configuration 275s 275s warning: unexpected `cfg` condition value: `nightly` 275s --> /tmp/tmp.cy4zYrLhIY/registry/hashbrown-0.14.5/src/raw/mod.rs:4319:11 275s | 275s 4319 | #[cfg(not(feature = "nightly"))] 275s | ^^^^^^^^^^^^^^^^^^^ 275s | 275s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 275s = help: consider adding `nightly` as a feature in `Cargo.toml` 275s = note: see for more information about checking conditional configuration 275s 275s warning: unexpected `cfg` condition value: `nightly` 275s --> /tmp/tmp.cy4zYrLhIY/registry/hashbrown-0.14.5/src/raw/alloc.rs:7:7 275s | 275s 7 | #[cfg(feature = "nightly")] 275s | ^^^^^^^^^^^^^^^^^^^ 275s | 275s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 275s = help: consider adding `nightly` as a feature in `Cargo.toml` 275s = note: see for more information about checking conditional configuration 275s 275s warning: unexpected `cfg` condition value: `nightly` 275s --> /tmp/tmp.cy4zYrLhIY/registry/hashbrown-0.14.5/src/raw/alloc.rs:28:15 275s | 275s 28 | #[cfg(all(not(feature = "nightly"), feature = "allocator-api2"))] 275s | ^^^^^^^^^^^^^^^^^^^ 275s | 275s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 275s = help: consider adding `nightly` as a feature in `Cargo.toml` 275s = note: see for more information about checking conditional configuration 275s 275s warning: unexpected `cfg` condition value: `nightly` 275s --> /tmp/tmp.cy4zYrLhIY/registry/hashbrown-0.14.5/src/raw/alloc.rs:51:15 275s | 275s 51 | #[cfg(not(any(feature = "nightly", feature = "allocator-api2")))] 275s | ^^^^^^^^^^^^^^^^^^^ 275s | 275s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 275s = help: consider adding `nightly` as a feature in `Cargo.toml` 275s = note: see for more information about checking conditional configuration 275s 275s warning: unexpected `cfg` condition value: `nightly` 275s --> /tmp/tmp.cy4zYrLhIY/registry/hashbrown-0.14.5/src/raw/mod.rs:944:32 275s | 275s 944 | #[cfg(any(feature = "raw", feature = "nightly"))] 275s | ^^^^^^^^^^^^^^^^^^^ 275s | 275s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 275s = help: consider adding `nightly` as a feature in `Cargo.toml` 275s = note: see for more information about checking conditional configuration 275s 275s warning: unexpected `cfg` condition value: `rkyv` 275s --> /tmp/tmp.cy4zYrLhIY/registry/hashbrown-0.14.5/src/external_trait_impls/mod.rs:3:7 275s | 275s 3 | #[cfg(feature = "rkyv")] 275s | ^^^^^^^^^^^^^^^^ 275s | 275s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 275s = help: consider adding `rkyv` as a feature in `Cargo.toml` 275s = note: see for more information about checking conditional configuration 275s 275s warning: unexpected `cfg` condition value: `nightly` 275s --> /tmp/tmp.cy4zYrLhIY/registry/hashbrown-0.14.5/src/map.rs:242:11 275s | 275s 242 | #[cfg(not(feature = "nightly"))] 275s | ^^^^^^^^^^^^^^^^^^^ 275s | 275s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 275s = help: consider adding `nightly` as a feature in `Cargo.toml` 275s = note: see for more information about checking conditional configuration 275s 275s warning: unexpected `cfg` condition value: `nightly` 275s --> /tmp/tmp.cy4zYrLhIY/registry/hashbrown-0.14.5/src/map.rs:255:7 275s | 275s 255 | #[cfg(feature = "nightly")] 275s | ^^^^^^^^^^^^^^^^^^^ 275s | 275s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 275s = help: consider adding `nightly` as a feature in `Cargo.toml` 275s = note: see for more information about checking conditional configuration 275s 275s warning: unexpected `cfg` condition value: `nightly` 275s --> /tmp/tmp.cy4zYrLhIY/registry/hashbrown-0.14.5/src/map.rs:6517:11 275s | 275s 6517 | #[cfg(feature = "nightly")] 275s | ^^^^^^^^^^^^^^^^^^^ 275s | 275s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 275s = help: consider adding `nightly` as a feature in `Cargo.toml` 275s = note: see for more information about checking conditional configuration 275s 275s warning: unexpected `cfg` condition value: `nightly` 275s --> /tmp/tmp.cy4zYrLhIY/registry/hashbrown-0.14.5/src/map.rs:6523:11 275s | 275s 6523 | #[cfg(feature = "nightly")] 275s | ^^^^^^^^^^^^^^^^^^^ 275s | 275s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 275s = help: consider adding `nightly` as a feature in `Cargo.toml` 275s = note: see for more information about checking conditional configuration 275s 275s warning: unexpected `cfg` condition value: `nightly` 275s --> /tmp/tmp.cy4zYrLhIY/registry/hashbrown-0.14.5/src/map.rs:6591:11 275s | 275s 6591 | #[cfg(feature = "nightly")] 275s | ^^^^^^^^^^^^^^^^^^^ 275s | 275s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 275s = help: consider adding `nightly` as a feature in `Cargo.toml` 275s = note: see for more information about checking conditional configuration 275s 275s warning: unexpected `cfg` condition value: `nightly` 275s --> /tmp/tmp.cy4zYrLhIY/registry/hashbrown-0.14.5/src/map.rs:6597:11 275s | 275s 6597 | #[cfg(feature = "nightly")] 275s | ^^^^^^^^^^^^^^^^^^^ 275s | 275s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 275s = help: consider adding `nightly` as a feature in `Cargo.toml` 275s = note: see for more information about checking conditional configuration 275s 275s warning: unexpected `cfg` condition value: `nightly` 275s --> /tmp/tmp.cy4zYrLhIY/registry/hashbrown-0.14.5/src/map.rs:6651:11 275s | 275s 6651 | #[cfg(feature = "nightly")] 275s | ^^^^^^^^^^^^^^^^^^^ 275s | 275s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 275s = help: consider adding `nightly` as a feature in `Cargo.toml` 275s = note: see for more information about checking conditional configuration 275s 275s warning: unexpected `cfg` condition value: `nightly` 275s --> /tmp/tmp.cy4zYrLhIY/registry/hashbrown-0.14.5/src/map.rs:6657:11 275s | 275s 6657 | #[cfg(feature = "nightly")] 275s | ^^^^^^^^^^^^^^^^^^^ 275s | 275s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 275s = help: consider adding `nightly` as a feature in `Cargo.toml` 275s = note: see for more information about checking conditional configuration 275s 275s warning: unexpected `cfg` condition value: `nightly` 275s --> /tmp/tmp.cy4zYrLhIY/registry/hashbrown-0.14.5/src/set.rs:1359:11 275s | 275s 1359 | #[cfg(feature = "nightly")] 275s | ^^^^^^^^^^^^^^^^^^^ 275s | 275s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 275s = help: consider adding `nightly` as a feature in `Cargo.toml` 275s = note: see for more information about checking conditional configuration 275s 275s warning: unexpected `cfg` condition value: `nightly` 275s --> /tmp/tmp.cy4zYrLhIY/registry/hashbrown-0.14.5/src/set.rs:1365:11 275s | 275s 1365 | #[cfg(feature = "nightly")] 275s | ^^^^^^^^^^^^^^^^^^^ 275s | 275s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 275s = help: consider adding `nightly` as a feature in `Cargo.toml` 275s = note: see for more information about checking conditional configuration 275s 275s warning: unexpected `cfg` condition value: `nightly` 275s --> /tmp/tmp.cy4zYrLhIY/registry/hashbrown-0.14.5/src/set.rs:1383:11 275s | 275s 1383 | #[cfg(feature = "nightly")] 275s | ^^^^^^^^^^^^^^^^^^^ 275s | 275s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 275s = help: consider adding `nightly` as a feature in `Cargo.toml` 275s = note: see for more information about checking conditional configuration 275s 275s warning: unexpected `cfg` condition value: `nightly` 275s --> /tmp/tmp.cy4zYrLhIY/registry/hashbrown-0.14.5/src/set.rs:1389:11 275s | 275s 1389 | #[cfg(feature = "nightly")] 275s | ^^^^^^^^^^^^^^^^^^^ 275s | 275s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 275s = help: consider adding `nightly` as a feature in `Cargo.toml` 275s = note: see for more information about checking conditional configuration 275s 275s 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_STD=1 CARGO_MANIFEST_DIR=/tmp/tmp.cy4zYrLhIY/registry/serde-1.0.217 CARGO_MANIFEST_PATH=/tmp/tmp.cy4zYrLhIY/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.cy4zYrLhIY/target/debug/deps:/tmp/tmp.cy4zYrLhIY/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.cy4zYrLhIY/target/debug/build/serde-c2bcebac22c6c694/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.cy4zYrLhIY/target/debug/build/serde-2b32d4e029565da2/build-script-build` 275s [serde 1.0.217] cargo:rerun-if-changed=build.rs 275s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_core_cstr) 275s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_core_error) 275s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_core_net) 275s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_core_num_saturating) 275s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_core_try_from) 275s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_diagnostic_namespace) 275s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_float_copysign) 275s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_num_nonzero_signed) 275s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_relaxed_trait_bounds) 275s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_serde_derive) 275s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_std_atomic) 275s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_std_atomic64) 275s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_systemtime_checked_add) 275s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_target_has_atomic) 275s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=serde CARGO_MANIFEST_DIR=/tmp/tmp.cy4zYrLhIY/registry/serde-1.0.217 CARGO_MANIFEST_PATH=/tmp/tmp.cy4zYrLhIY/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.cy4zYrLhIY/target/debug/deps OUT_DIR=/tmp/tmp.cy4zYrLhIY/target/debug/build/serde-c2bcebac22c6c694/out rustc --crate-name serde --edition=2018 /tmp/tmp.cy4zYrLhIY/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="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "default", "derive", "rc", "serde_derive", "std", "unstable"))' -C metadata=64c0851ac56a0ce1 -C extra-filename=-64c0851ac56a0ce1 --out-dir /tmp/tmp.cy4zYrLhIY/target/debug/deps -L dependency=/tmp/tmp.cy4zYrLhIY/target/debug/deps --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)'` 275s warning: `hashbrown` (lib) generated 31 warnings 275s Compiling indexmap v2.7.0 275s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=indexmap CARGO_MANIFEST_DIR=/tmp/tmp.cy4zYrLhIY/registry/indexmap-2.7.0 CARGO_MANIFEST_PATH=/tmp/tmp.cy4zYrLhIY/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.cy4zYrLhIY/target/debug/deps rustc --crate-name indexmap --edition=2021 /tmp/tmp.cy4zYrLhIY/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.cy4zYrLhIY/target/debug/deps -L dependency=/tmp/tmp.cy4zYrLhIY/target/debug/deps --extern equivalent=/tmp/tmp.cy4zYrLhIY/target/debug/deps/libequivalent-a11b0a19a3bf2c19.rmeta --extern hashbrown=/tmp/tmp.cy4zYrLhIY/target/debug/deps/libhashbrown-e14e27c8ff208110.rmeta --cap-lints warn` 275s warning: unexpected `cfg` condition value: `borsh` 275s --> /tmp/tmp.cy4zYrLhIY/registry/indexmap-2.7.0/src/lib.rs:117:7 275s | 275s 117 | #[cfg(feature = "borsh")] 275s | ^^^^^^^^^^^^^^^^^ 275s | 275s = note: expected values for `feature` are: `arbitrary`, `default`, `rayon`, `serde`, `std`, and `test_debug` 275s = help: consider adding `borsh` as a feature in `Cargo.toml` 275s = note: see for more information about checking conditional configuration 275s = note: `#[warn(unexpected_cfgs)]` on by default 275s 275s warning: unexpected `cfg` condition value: `rustc-rayon` 275s --> /tmp/tmp.cy4zYrLhIY/registry/indexmap-2.7.0/src/lib.rs:131:7 275s | 275s 131 | #[cfg(feature = "rustc-rayon")] 275s | ^^^^^^^^^^^^^^^^^^^^^^^ 275s | 275s = note: expected values for `feature` are: `arbitrary`, `default`, `rayon`, `serde`, `std`, and `test_debug` 275s = help: consider adding `rustc-rayon` as a feature in `Cargo.toml` 275s = note: see for more information about checking conditional configuration 275s 275s warning: unexpected `cfg` condition value: `quickcheck` 275s --> /tmp/tmp.cy4zYrLhIY/registry/indexmap-2.7.0/src/arbitrary.rs:38:7 275s | 275s 38 | #[cfg(feature = "quickcheck")] 275s | ^^^^^^^^^^^^^^^^^^^^^^ 275s | 275s = note: expected values for `feature` are: `arbitrary`, `default`, `rayon`, `serde`, `std`, and `test_debug` 275s = help: consider adding `quickcheck` as a feature in `Cargo.toml` 275s = note: see for more information about checking conditional configuration 275s 275s warning: unexpected `cfg` condition value: `rustc-rayon` 275s --> /tmp/tmp.cy4zYrLhIY/registry/indexmap-2.7.0/src/macros.rs:128:30 275s | 275s 128 | #[cfg(any(feature = "rayon", feature = "rustc-rayon"))] 275s | ^^^^^^^^^^^^^^^^^^^^^^^ 275s | 275s = note: expected values for `feature` are: `arbitrary`, `default`, `rayon`, `serde`, `std`, and `test_debug` 275s = help: consider adding `rustc-rayon` as a feature in `Cargo.toml` 275s = note: see for more information about checking conditional configuration 275s 275s warning: unexpected `cfg` condition value: `rustc-rayon` 275s --> /tmp/tmp.cy4zYrLhIY/registry/indexmap-2.7.0/src/macros.rs:153:30 275s | 275s 153 | #[cfg(any(feature = "rayon", feature = "rustc-rayon"))] 275s | ^^^^^^^^^^^^^^^^^^^^^^^ 275s | 275s = note: expected values for `feature` are: `arbitrary`, `default`, `rayon`, `serde`, `std`, and `test_debug` 275s = help: consider adding `rustc-rayon` as a feature in `Cargo.toml` 275s = note: see for more information about checking conditional configuration 275s 276s warning: `indexmap` (lib) generated 5 warnings 276s Compiling winnow v0.6.18 276s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=winnow CARGO_MANIFEST_DIR=/tmp/tmp.cy4zYrLhIY/registry/winnow-0.6.18 CARGO_MANIFEST_PATH=/tmp/tmp.cy4zYrLhIY/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.cy4zYrLhIY/target/debug/deps rustc --crate-name winnow --edition=2021 /tmp/tmp.cy4zYrLhIY/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.cy4zYrLhIY/target/debug/deps -L dependency=/tmp/tmp.cy4zYrLhIY/target/debug/deps --cap-lints warn` 276s warning: unexpected `cfg` condition value: `debug` 276s --> /tmp/tmp.cy4zYrLhIY/registry/winnow-0.6.18/src/combinator/debug/mod.rs:1:13 276s | 276s 1 | #![cfg_attr(feature = "debug", allow(clippy::std_instead_of_core))] 276s | ^^^^^^^^^^^^^^^^^ 276s | 276s = note: expected values for `feature` are: `alloc`, `default`, `simd`, `std`, `unstable-doc`, and `unstable-recover` 276s = help: consider adding `debug` as a feature in `Cargo.toml` 276s = note: see for more information about checking conditional configuration 276s = note: `#[warn(unexpected_cfgs)]` on by default 276s 276s warning: unexpected `cfg` condition value: `debug` 276s --> /tmp/tmp.cy4zYrLhIY/registry/winnow-0.6.18/src/combinator/debug/mod.rs:3:7 276s | 276s 3 | #[cfg(feature = "debug")] 276s | ^^^^^^^^^^^^^^^^^ 276s | 276s = note: expected values for `feature` are: `alloc`, `default`, `simd`, `std`, `unstable-doc`, and `unstable-recover` 276s = help: consider adding `debug` as a feature in `Cargo.toml` 276s = note: see for more information about checking conditional configuration 276s 276s warning: unexpected `cfg` condition value: `debug` 276s --> /tmp/tmp.cy4zYrLhIY/registry/winnow-0.6.18/src/combinator/debug/mod.rs:37:16 276s | 276s 37 | #[cfg_attr(not(feature = "debug"), allow(unused_variables))] 276s | ^^^^^^^^^^^^^^^^^ 276s | 276s = note: expected values for `feature` are: `alloc`, `default`, `simd`, `std`, `unstable-doc`, and `unstable-recover` 276s = help: consider adding `debug` as a feature in `Cargo.toml` 276s = note: see for more information about checking conditional configuration 276s 276s warning: unexpected `cfg` condition value: `debug` 276s --> /tmp/tmp.cy4zYrLhIY/registry/winnow-0.6.18/src/combinator/debug/mod.rs:38:16 276s | 276s 38 | #[cfg_attr(not(feature = "debug"), allow(unused_mut))] 276s | ^^^^^^^^^^^^^^^^^ 276s | 276s = note: expected values for `feature` are: `alloc`, `default`, `simd`, `std`, `unstable-doc`, and `unstable-recover` 276s = help: consider adding `debug` as a feature in `Cargo.toml` 276s = note: see for more information about checking conditional configuration 276s 276s warning: unexpected `cfg` condition value: `debug` 276s --> /tmp/tmp.cy4zYrLhIY/registry/winnow-0.6.18/src/combinator/debug/mod.rs:39:16 276s | 276s 39 | #[cfg_attr(not(feature = "debug"), inline(always))] 276s | ^^^^^^^^^^^^^^^^^ 276s | 276s = note: expected values for `feature` are: `alloc`, `default`, `simd`, `std`, `unstable-doc`, and `unstable-recover` 276s = help: consider adding `debug` as a feature in `Cargo.toml` 276s = note: see for more information about checking conditional configuration 276s 276s warning: unexpected `cfg` condition value: `debug` 276s --> /tmp/tmp.cy4zYrLhIY/registry/winnow-0.6.18/src/combinator/debug/mod.rs:54:16 276s | 276s 54 | #[cfg_attr(not(feature = "debug"), allow(unused_variables))] 276s | ^^^^^^^^^^^^^^^^^ 276s | 276s = note: expected values for `feature` are: `alloc`, `default`, `simd`, `std`, `unstable-doc`, and `unstable-recover` 276s = help: consider adding `debug` as a feature in `Cargo.toml` 276s = note: see for more information about checking conditional configuration 276s 276s warning: unexpected `cfg` condition value: `debug` 276s --> /tmp/tmp.cy4zYrLhIY/registry/winnow-0.6.18/src/combinator/debug/mod.rs:79:7 276s | 276s 79 | #[cfg(feature = "debug")] 276s | ^^^^^^^^^^^^^^^^^ 276s | 276s = note: expected values for `feature` are: `alloc`, `default`, `simd`, `std`, `unstable-doc`, and `unstable-recover` 276s = help: consider adding `debug` as a feature in `Cargo.toml` 276s = note: see for more information about checking conditional configuration 276s 276s warning: unexpected `cfg` condition value: `debug` 276s --> /tmp/tmp.cy4zYrLhIY/registry/winnow-0.6.18/src/combinator/debug/mod.rs:44:11 276s | 276s 44 | #[cfg(feature = "debug")] 276s | ^^^^^^^^^^^^^^^^^ 276s | 276s = note: expected values for `feature` are: `alloc`, `default`, `simd`, `std`, `unstable-doc`, and `unstable-recover` 276s = help: consider adding `debug` as a feature in `Cargo.toml` 276s = note: see for more information about checking conditional configuration 276s 276s warning: unexpected `cfg` condition value: `debug` 276s --> /tmp/tmp.cy4zYrLhIY/registry/winnow-0.6.18/src/combinator/debug/mod.rs:48:15 276s | 276s 48 | #[cfg(not(feature = "debug"))] 276s | ^^^^^^^^^^^^^^^^^ 276s | 276s = note: expected values for `feature` are: `alloc`, `default`, `simd`, `std`, `unstable-doc`, and `unstable-recover` 276s = help: consider adding `debug` as a feature in `Cargo.toml` 276s = note: see for more information about checking conditional configuration 276s 276s warning: unexpected `cfg` condition value: `debug` 276s --> /tmp/tmp.cy4zYrLhIY/registry/winnow-0.6.18/src/combinator/debug/mod.rs:59:11 276s | 276s 59 | #[cfg(feature = "debug")] 276s | ^^^^^^^^^^^^^^^^^ 276s | 276s = note: expected values for `feature` are: `alloc`, `default`, `simd`, `std`, `unstable-doc`, and `unstable-recover` 276s = help: consider adding `debug` as a feature in `Cargo.toml` 276s = note: see for more information about checking conditional configuration 276s 277s warning: `winnow` (lib) generated 10 warnings 277s Compiling proc-macro2 v1.0.92 277s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.cy4zYrLhIY/registry/proc-macro2-1.0.92 CARGO_MANIFEST_PATH=/tmp/tmp.cy4zYrLhIY/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.cy4zYrLhIY/target/debug/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.cy4zYrLhIY/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.cy4zYrLhIY/target/debug/build/proc-macro2-3832f39696f3f5db -L dependency=/tmp/tmp.cy4zYrLhIY/target/debug/deps --cap-lints warn` 278s Compiling serde_spanned v0.6.7 278s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=serde_spanned CARGO_MANIFEST_DIR=/tmp/tmp.cy4zYrLhIY/registry/serde_spanned-0.6.7 CARGO_MANIFEST_PATH=/tmp/tmp.cy4zYrLhIY/registry/serde_spanned-0.6.7/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='Serde-compatible spanned Value' CARGO_PKG_HOMEPAGE='https://github.com/toml-rs/toml' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=serde_spanned 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.7 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=6 CARGO_PKG_VERSION_PATCH=7 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.cy4zYrLhIY/target/debug/deps rustc --crate-name serde_spanned --edition=2021 /tmp/tmp.cy4zYrLhIY/registry/serde_spanned-0.6.7/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 '--warn=clippy::zero_sized_map_values' '--warn=clippy::wildcard_imports' '--warn=clippy::verbose_file_reads' --warn=unused_qualifications --warn=unused_macro_rules --warn=unused_lifetimes --warn=unsafe_op_in_unsafe_fn --warn=unreachable_pub '--warn=clippy::trait_duplication_in_bounds' '--warn=clippy::todo' '--warn=clippy::string_to_string' '--warn=clippy::string_lit_as_bytes' '--warn=clippy::string_add_assign' '--warn=clippy::string_add' '--warn=clippy::str_to_string' '--warn=clippy::single_match_else' '--warn=clippy::semicolon_if_nothing_returned' '--warn=clippy::self_named_module_files' '--warn=clippy::same_functions_in_if_condition' --warn=rust_2018_idioms '--warn=clippy::rest_pat_in_fully_bound_structs' '--warn=clippy::ref_option_ref' '--warn=clippy::redundant_feature_names' '--warn=clippy::rc_mutex' '--warn=clippy::ptr_as_ptr' '--warn=clippy::path_buf_push_overwrite' '--warn=clippy::negative_feature_names' '--warn=clippy::needless_for_each' '--warn=clippy::needless_continue' '--warn=clippy::mutex_integer' '--warn=clippy::mem_forget' '--warn=clippy::match_wildcard_for_single_variants' '--warn=clippy::macro_use_imports' '--warn=clippy::lossy_float_literal' '--warn=clippy::linkedlist' '--allow=clippy::let_and_return' '--warn=clippy::large_types_passed_by_value' '--warn=clippy::large_stack_arrays' '--warn=clippy::large_digit_groups' '--warn=clippy::items_after_statements' '--warn=clippy::invalid_upcast_comparisons' '--warn=clippy::infinite_loop' '--warn=clippy::inefficient_to_string' '--warn=clippy::inconsistent_struct_constructor' '--warn=clippy::imprecise_flops' '--warn=clippy::implicit_clone' '--allow=clippy::if_same_then_else' '--warn=clippy::from_iter_instead_of_collect' '--warn=clippy::fn_params_excessive_bools' '--warn=clippy::float_cmp_const' '--warn=clippy::flat_map_option' '--warn=clippy::filter_map_next' '--warn=clippy::fallible_impl_from' '--warn=clippy::explicit_into_iter_loop' '--warn=clippy::explicit_deref_methods' '--warn=clippy::expl_impl_clone_on_copy' '--warn=clippy::enum_glob_use' '--warn=clippy::empty_enum' '--warn=clippy::doc_markdown' '--warn=clippy::debug_assert_with_mut_call' '--warn=clippy::dbg_macro' '--warn=clippy::create_dir' '--allow=clippy::collapsible_else_if' '--warn=clippy::checked_conversions' '--allow=clippy::branches_sharing_code' '--allow=clippy::bool_assert_comparison' --cfg 'feature="serde"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("serde"))' -C metadata=bb6bf82fb8b7e3e2 -C extra-filename=-bb6bf82fb8b7e3e2 --out-dir /tmp/tmp.cy4zYrLhIY/target/debug/deps -L dependency=/tmp/tmp.cy4zYrLhIY/target/debug/deps --extern serde=/tmp/tmp.cy4zYrLhIY/target/debug/deps/libserde-64c0851ac56a0ce1.rmeta --cap-lints warn` 278s Compiling toml_datetime v0.6.8 278s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=toml_datetime CARGO_MANIFEST_DIR=/tmp/tmp.cy4zYrLhIY/registry/toml_datetime-0.6.8 CARGO_MANIFEST_PATH=/tmp/tmp.cy4zYrLhIY/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.cy4zYrLhIY/target/debug/deps rustc --crate-name toml_datetime --edition=2021 /tmp/tmp.cy4zYrLhIY/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' --cfg 'feature="serde"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("serde"))' -C metadata=f8a60bc8f4facc64 -C extra-filename=-f8a60bc8f4facc64 --out-dir /tmp/tmp.cy4zYrLhIY/target/debug/deps -L dependency=/tmp/tmp.cy4zYrLhIY/target/debug/deps --extern serde=/tmp/tmp.cy4zYrLhIY/target/debug/deps/libserde-64c0851ac56a0ce1.rmeta --cap-lints warn` 278s Compiling toml_edit v0.22.20 278s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=toml_edit CARGO_MANIFEST_DIR=/tmp/tmp.cy4zYrLhIY/registry/toml_edit-0.22.20 CARGO_MANIFEST_PATH=/tmp/tmp.cy4zYrLhIY/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.cy4zYrLhIY/target/debug/deps rustc --crate-name toml_edit --edition=2021 /tmp/tmp.cy4zYrLhIY/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"' --cfg 'feature="serde"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "display", "parse", "perf", "serde", "unbounded"))' -C metadata=16e4204886ae364a -C extra-filename=-16e4204886ae364a --out-dir /tmp/tmp.cy4zYrLhIY/target/debug/deps -L dependency=/tmp/tmp.cy4zYrLhIY/target/debug/deps --extern indexmap=/tmp/tmp.cy4zYrLhIY/target/debug/deps/libindexmap-1e18ac9265fbd6ac.rmeta --extern serde=/tmp/tmp.cy4zYrLhIY/target/debug/deps/libserde-64c0851ac56a0ce1.rmeta --extern serde_spanned=/tmp/tmp.cy4zYrLhIY/target/debug/deps/libserde_spanned-bb6bf82fb8b7e3e2.rmeta --extern toml_datetime=/tmp/tmp.cy4zYrLhIY/target/debug/deps/libtoml_datetime-f8a60bc8f4facc64.rmeta --extern winnow=/tmp/tmp.cy4zYrLhIY/target/debug/deps/libwinnow-0f17435733cfc3dc.rmeta --cap-lints warn` 278s 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.cy4zYrLhIY/registry/proc-macro2-1.0.92 CARGO_MANIFEST_PATH=/tmp/tmp.cy4zYrLhIY/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.cy4zYrLhIY/target/debug/deps:/tmp/tmp.cy4zYrLhIY/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.cy4zYrLhIY/target/debug/build/proc-macro2-b8c68c67c59c8657/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.cy4zYrLhIY/target/debug/build/proc-macro2-3832f39696f3f5db/build-script-build` 278s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(fuzzing) 278s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(no_is_available) 278s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(no_literal_byte_character) 278s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(no_literal_c_string) 278s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(no_source_text) 278s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(proc_macro_span) 278s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(procmacro2_backtrace) 278s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(procmacro2_nightly_testing) 278s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(procmacro2_semver_exempt) 278s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(randomize_layout) 278s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(span_locations) 278s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(super_unstable) 278s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(wrap_proc_macro) 278s [proc-macro2 1.0.92] cargo:rerun-if-changed=build/probe.rs 278s [proc-macro2 1.0.92] cargo:rustc-cfg=wrap_proc_macro 278s [proc-macro2 1.0.92] cargo:rerun-if-env-changed=RUSTC_BOOTSTRAP 278s Compiling unicode-ident v1.0.13 278s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=unicode_ident CARGO_MANIFEST_DIR=/tmp/tmp.cy4zYrLhIY/registry/unicode-ident-1.0.13 CARGO_MANIFEST_PATH=/tmp/tmp.cy4zYrLhIY/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.cy4zYrLhIY/target/debug/deps rustc --crate-name unicode_ident --edition=2018 /tmp/tmp.cy4zYrLhIY/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.cy4zYrLhIY/target/debug/deps -L dependency=/tmp/tmp.cy4zYrLhIY/target/debug/deps --cap-lints warn` 278s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=proc_macro2 CARGO_MANIFEST_DIR=/tmp/tmp.cy4zYrLhIY/registry/proc-macro2-1.0.92 CARGO_MANIFEST_PATH=/tmp/tmp.cy4zYrLhIY/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.cy4zYrLhIY/target/debug/deps OUT_DIR=/tmp/tmp.cy4zYrLhIY/target/debug/build/proc-macro2-b8c68c67c59c8657/out rustc --crate-name proc_macro2 --edition=2021 /tmp/tmp.cy4zYrLhIY/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.cy4zYrLhIY/target/debug/deps -L dependency=/tmp/tmp.cy4zYrLhIY/target/debug/deps --extern unicode_ident=/tmp/tmp.cy4zYrLhIY/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)'` 279s Compiling target-lexicon v0.12.14 279s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.cy4zYrLhIY/registry/target-lexicon-0.12.14 CARGO_MANIFEST_PATH=/tmp/tmp.cy4zYrLhIY/registry/target-lexicon-0.12.14/Cargo.toml CARGO_PKG_AUTHORS='Dan Gohman ' CARGO_PKG_DESCRIPTION='Targeting utilities for compilers and related tools' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 WITH LLVM-exception' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=target-lexicon CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/bytecodealliance/target-lexicon' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.12.14 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=12 CARGO_PKG_VERSION_PATCH=14 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.cy4zYrLhIY/target/debug/deps rustc --crate-name build_script_build --edition=2018 /tmp/tmp.cy4zYrLhIY/registry/target-lexicon-0.12.14/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"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("arch_zkasm", "default", "serde", "serde_support", "std"))' -C metadata=25364d17e185c4be -C extra-filename=-25364d17e185c4be --out-dir /tmp/tmp.cy4zYrLhIY/target/debug/build/target-lexicon-25364d17e185c4be -L dependency=/tmp/tmp.cy4zYrLhIY/target/debug/deps --cap-lints warn` 279s warning: unexpected `cfg` condition value: `rust_1_40` 279s --> /tmp/tmp.cy4zYrLhIY/registry/target-lexicon-0.12.14/src/data_model.rs:43:12 279s | 279s 43 | #[cfg_attr(feature = "rust_1_40", non_exhaustive)] 279s | ^^^^^^^^^^^^^^^^^^^^^ 279s | 279s = note: expected values for `feature` are: `arch_zkasm`, `default`, `serde`, `serde_support`, and `std` 279s = help: consider adding `rust_1_40` as a feature in `Cargo.toml` 279s = note: see for more information about checking conditional configuration 279s = note: `#[warn(unexpected_cfgs)]` on by default 279s 279s warning: unexpected `cfg` condition value: `rust_1_40` 279s --> /tmp/tmp.cy4zYrLhIY/registry/target-lexicon-0.12.14/src/triple.rs:55:12 279s | 279s 55 | #[cfg_attr(feature = "rust_1_40", non_exhaustive)] 279s | ^^^^^^^^^^^^^^^^^^^^^ 279s | 279s = note: expected values for `feature` are: `arch_zkasm`, `default`, `serde`, `serde_support`, and `std` 279s = help: consider adding `rust_1_40` as a feature in `Cargo.toml` 279s = note: see for more information about checking conditional configuration 279s 279s warning: unexpected `cfg` condition value: `rust_1_40` 279s --> /tmp/tmp.cy4zYrLhIY/registry/target-lexicon-0.12.14/src/targets.rs:14:12 279s | 279s 14 | #[cfg_attr(feature = "rust_1_40", non_exhaustive)] 279s | ^^^^^^^^^^^^^^^^^^^^^ 279s | 279s = note: expected values for `feature` are: `arch_zkasm`, `default`, `serde`, `serde_support`, and `std` 279s = help: consider adding `rust_1_40` as a feature in `Cargo.toml` 279s = note: see for more information about checking conditional configuration 279s 279s warning: unexpected `cfg` condition value: `rust_1_40` 279s --> /tmp/tmp.cy4zYrLhIY/registry/target-lexicon-0.12.14/src/targets.rs:57:12 279s | 279s 57 | #[cfg_attr(feature = "rust_1_40", non_exhaustive)] 279s | ^^^^^^^^^^^^^^^^^^^^^ 279s | 279s = note: expected values for `feature` are: `arch_zkasm`, `default`, `serde`, `serde_support`, and `std` 279s = help: consider adding `rust_1_40` as a feature in `Cargo.toml` 279s = note: see for more information about checking conditional configuration 279s 279s warning: unexpected `cfg` condition value: `rust_1_40` 279s --> /tmp/tmp.cy4zYrLhIY/registry/target-lexicon-0.12.14/src/targets.rs:107:12 279s | 279s 107 | #[cfg_attr(feature = "rust_1_40", non_exhaustive)] 279s | ^^^^^^^^^^^^^^^^^^^^^ 279s | 279s = note: expected values for `feature` are: `arch_zkasm`, `default`, `serde`, `serde_support`, and `std` 279s = help: consider adding `rust_1_40` as a feature in `Cargo.toml` 279s = note: see for more information about checking conditional configuration 279s 279s warning: unexpected `cfg` condition value: `rust_1_40` 279s --> /tmp/tmp.cy4zYrLhIY/registry/target-lexicon-0.12.14/src/targets.rs:386:12 279s | 279s 386 | #[cfg_attr(feature = "rust_1_40", non_exhaustive)] 279s | ^^^^^^^^^^^^^^^^^^^^^ 279s | 279s = note: expected values for `feature` are: `arch_zkasm`, `default`, `serde`, `serde_support`, and `std` 279s = help: consider adding `rust_1_40` as a feature in `Cargo.toml` 279s = note: see for more information about checking conditional configuration 279s 279s warning: unexpected `cfg` condition value: `rust_1_40` 279s --> /tmp/tmp.cy4zYrLhIY/registry/target-lexicon-0.12.14/src/targets.rs:407:12 279s | 279s 407 | #[cfg_attr(feature = "rust_1_40", non_exhaustive)] 279s | ^^^^^^^^^^^^^^^^^^^^^ 279s | 279s = note: expected values for `feature` are: `arch_zkasm`, `default`, `serde`, `serde_support`, and `std` 279s = help: consider adding `rust_1_40` as a feature in `Cargo.toml` 279s = note: see for more information about checking conditional configuration 279s 279s warning: unexpected `cfg` condition value: `rust_1_40` 279s --> /tmp/tmp.cy4zYrLhIY/registry/target-lexicon-0.12.14/src/targets.rs:436:12 279s | 279s 436 | #[cfg_attr(feature = "rust_1_40", non_exhaustive)] 279s | ^^^^^^^^^^^^^^^^^^^^^ 279s | 279s = note: expected values for `feature` are: `arch_zkasm`, `default`, `serde`, `serde_support`, and `std` 279s = help: consider adding `rust_1_40` as a feature in `Cargo.toml` 279s = note: see for more information about checking conditional configuration 279s 279s warning: unexpected `cfg` condition value: `rust_1_40` 279s --> /tmp/tmp.cy4zYrLhIY/registry/target-lexicon-0.12.14/src/targets.rs:459:12 279s | 279s 459 | #[cfg_attr(feature = "rust_1_40", non_exhaustive)] 279s | ^^^^^^^^^^^^^^^^^^^^^ 279s | 279s = note: expected values for `feature` are: `arch_zkasm`, `default`, `serde`, `serde_support`, and `std` 279s = help: consider adding `rust_1_40` as a feature in `Cargo.toml` 279s = note: see for more information about checking conditional configuration 279s 279s warning: unexpected `cfg` condition value: `rust_1_40` 279s --> /tmp/tmp.cy4zYrLhIY/registry/target-lexicon-0.12.14/src/targets.rs:482:12 279s | 279s 482 | #[cfg_attr(feature = "rust_1_40", non_exhaustive)] 279s | ^^^^^^^^^^^^^^^^^^^^^ 279s | 279s = note: expected values for `feature` are: `arch_zkasm`, `default`, `serde`, `serde_support`, and `std` 279s = help: consider adding `rust_1_40` as a feature in `Cargo.toml` 279s = note: see for more information about checking conditional configuration 279s 279s warning: unexpected `cfg` condition value: `rust_1_40` 279s --> /tmp/tmp.cy4zYrLhIY/registry/target-lexicon-0.12.14/src/targets.rs:507:12 279s | 279s 507 | #[cfg_attr(feature = "rust_1_40", non_exhaustive)] 279s | ^^^^^^^^^^^^^^^^^^^^^ 279s | 279s = note: expected values for `feature` are: `arch_zkasm`, `default`, `serde`, `serde_support`, and `std` 279s = help: consider adding `rust_1_40` as a feature in `Cargo.toml` 279s = note: see for more information about checking conditional configuration 279s 279s warning: unexpected `cfg` condition value: `rust_1_40` 279s --> /tmp/tmp.cy4zYrLhIY/registry/target-lexicon-0.12.14/src/targets.rs:566:12 279s | 279s 566 | #[cfg_attr(feature = "rust_1_40", non_exhaustive)] 279s | ^^^^^^^^^^^^^^^^^^^^^ 279s | 279s = note: expected values for `feature` are: `arch_zkasm`, `default`, `serde`, `serde_support`, and `std` 279s = help: consider adding `rust_1_40` as a feature in `Cargo.toml` 279s = note: see for more information about checking conditional configuration 279s 279s warning: unexpected `cfg` condition value: `rust_1_40` 279s --> /tmp/tmp.cy4zYrLhIY/registry/target-lexicon-0.12.14/src/targets.rs:624:12 279s | 279s 624 | #[cfg_attr(feature = "rust_1_40", non_exhaustive)] 279s | ^^^^^^^^^^^^^^^^^^^^^ 279s | 279s = note: expected values for `feature` are: `arch_zkasm`, `default`, `serde`, `serde_support`, and `std` 279s = help: consider adding `rust_1_40` as a feature in `Cargo.toml` 279s = note: see for more information about checking conditional configuration 279s 279s warning: unexpected `cfg` condition value: `rust_1_40` 279s --> /tmp/tmp.cy4zYrLhIY/registry/target-lexicon-0.12.14/src/targets.rs:719:12 279s | 279s 719 | #[cfg_attr(feature = "rust_1_40", non_exhaustive)] 279s | ^^^^^^^^^^^^^^^^^^^^^ 279s | 279s = note: expected values for `feature` are: `arch_zkasm`, `default`, `serde`, `serde_support`, and `std` 279s = help: consider adding `rust_1_40` as a feature in `Cargo.toml` 279s = note: see for more information about checking conditional configuration 279s 279s warning: unexpected `cfg` condition value: `rust_1_40` 279s --> /tmp/tmp.cy4zYrLhIY/registry/target-lexicon-0.12.14/src/targets.rs:801:12 279s | 279s 801 | #[cfg_attr(feature = "rust_1_40", non_exhaustive)] 279s | ^^^^^^^^^^^^^^^^^^^^^ 279s | 279s = note: expected values for `feature` are: `arch_zkasm`, `default`, `serde`, `serde_support`, and `std` 279s = help: consider adding `rust_1_40` as a feature in `Cargo.toml` 279s = note: see for more information about checking conditional configuration 279s 279s warning: `target-lexicon` (build script) generated 15 warnings 279s 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_MANIFEST_DIR=/tmp/tmp.cy4zYrLhIY/registry/target-lexicon-0.12.14 CARGO_MANIFEST_PATH=/tmp/tmp.cy4zYrLhIY/registry/target-lexicon-0.12.14/Cargo.toml CARGO_PKG_AUTHORS='Dan Gohman ' CARGO_PKG_DESCRIPTION='Targeting utilities for compilers and related tools' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 WITH LLVM-exception' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=target-lexicon CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/bytecodealliance/target-lexicon' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.12.14 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=12 CARGO_PKG_VERSION_PATCH=14 CARGO_PKG_VERSION_PRE='' DEBUG=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.cy4zYrLhIY/target/debug/deps:/tmp/tmp.cy4zYrLhIY/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.cy4zYrLhIY/target/debug/build/target-lexicon-bcd17a2af3ef410c/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.cy4zYrLhIY/target/debug/build/target-lexicon-25364d17e185c4be/build-script-build` 279s [target-lexicon 0.12.14] cargo:rustc-cfg=feature="rust_1_40" 279s Compiling quote v1.0.37 279s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=quote CARGO_MANIFEST_DIR=/tmp/tmp.cy4zYrLhIY/registry/quote-1.0.37 CARGO_MANIFEST_PATH=/tmp/tmp.cy4zYrLhIY/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.cy4zYrLhIY/target/debug/deps rustc --crate-name quote --edition=2018 /tmp/tmp.cy4zYrLhIY/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.cy4zYrLhIY/target/debug/deps -L dependency=/tmp/tmp.cy4zYrLhIY/target/debug/deps --extern proc_macro2=/tmp/tmp.cy4zYrLhIY/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rmeta --cap-lints warn` 279s Compiling syn v2.0.96 279s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=syn CARGO_MANIFEST_DIR=/tmp/tmp.cy4zYrLhIY/registry/syn-2.0.96 CARGO_MANIFEST_PATH=/tmp/tmp.cy4zYrLhIY/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.cy4zYrLhIY/target/debug/deps rustc --crate-name syn --edition=2021 /tmp/tmp.cy4zYrLhIY/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="fold"' --cfg 'feature="full"' --cfg 'feature="parsing"' --cfg 'feature="printing"' --cfg 'feature="proc-macro"' --cfg 'feature="visit-mut"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("clone-impls", "default", "derive", "extra-traits", "fold", "full", "parsing", "printing", "proc-macro", "visit", "visit-mut"))' -C metadata=0167beed9e699402 -C extra-filename=-0167beed9e699402 --out-dir /tmp/tmp.cy4zYrLhIY/target/debug/deps -L dependency=/tmp/tmp.cy4zYrLhIY/target/debug/deps --extern proc_macro2=/tmp/tmp.cy4zYrLhIY/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rmeta --extern quote=/tmp/tmp.cy4zYrLhIY/target/debug/deps/libquote-dc92c6f25ee0f0c6.rmeta --extern unicode_ident=/tmp/tmp.cy4zYrLhIY/target/debug/deps/libunicode_ident-5d182fe9243248fe.rmeta --cap-lints warn` 282s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=target_lexicon CARGO_MANIFEST_DIR=/tmp/tmp.cy4zYrLhIY/registry/target-lexicon-0.12.14 CARGO_MANIFEST_PATH=/tmp/tmp.cy4zYrLhIY/registry/target-lexicon-0.12.14/Cargo.toml CARGO_PKG_AUTHORS='Dan Gohman ' CARGO_PKG_DESCRIPTION='Targeting utilities for compilers and related tools' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 WITH LLVM-exception' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=target-lexicon CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/bytecodealliance/target-lexicon' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.12.14 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=12 CARGO_PKG_VERSION_PATCH=14 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.cy4zYrLhIY/target/debug/deps OUT_DIR=/tmp/tmp.cy4zYrLhIY/target/debug/build/target-lexicon-bcd17a2af3ef410c/out rustc --crate-name target_lexicon --edition=2018 /tmp/tmp.cy4zYrLhIY/registry/target-lexicon-0.12.14/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("arch_zkasm", "default", "serde", "serde_support", "std"))' -C metadata=3e1fae5fd9acfad5 -C extra-filename=-3e1fae5fd9acfad5 --out-dir /tmp/tmp.cy4zYrLhIY/target/debug/deps -L dependency=/tmp/tmp.cy4zYrLhIY/target/debug/deps --cap-lints warn --cfg 'feature="rust_1_40"'` 282s warning: unexpected `cfg` condition value: `cargo-clippy` 282s --> /tmp/tmp.cy4zYrLhIY/registry/target-lexicon-0.12.14/src/lib.rs:6:5 282s | 282s 6 | feature = "cargo-clippy", 282s | ^^^^^^^^^^^^^^^^^^^^^^^^ 282s | 282s = note: expected values for `feature` are: `arch_zkasm`, `default`, `serde`, `serde_support`, and `std` 282s = help: consider adding `cargo-clippy` as a feature in `Cargo.toml` 282s = note: see for more information about checking conditional configuration 282s = note: `#[warn(unexpected_cfgs)]` on by default 282s 282s warning: unexpected `cfg` condition value: `rust_1_40` 282s --> /tmp/tmp.cy4zYrLhIY/registry/target-lexicon-0.12.14/src/data_model.rs:43:12 282s | 282s 43 | #[cfg_attr(feature = "rust_1_40", non_exhaustive)] 282s | ^^^^^^^^^^^^^^^^^^^^^ 282s | 282s = note: expected values for `feature` are: `arch_zkasm`, `default`, `serde`, `serde_support`, and `std` 282s = help: consider adding `rust_1_40` as a feature in `Cargo.toml` 282s = note: see for more information about checking conditional configuration 282s 282s warning: `target-lexicon` (lib) generated 16 warnings (14 duplicates) 282s Compiling smallvec v1.13.2 282s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=smallvec CARGO_MANIFEST_DIR=/tmp/tmp.cy4zYrLhIY/registry/smallvec-1.13.2 CARGO_MANIFEST_PATH=/tmp/tmp.cy4zYrLhIY/registry/smallvec-1.13.2/Cargo.toml CARGO_PKG_AUTHORS='The Servo Project Developers' CARGO_PKG_DESCRIPTION=''\''Small vector'\'' optimization: store up to a small number of items on the stack' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=smallvec CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/servo/rust-smallvec' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=1.13.2 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=13 CARGO_PKG_VERSION_PATCH=2 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.cy4zYrLhIY/target/debug/deps rustc --crate-name smallvec --edition=2018 /tmp/tmp.cy4zYrLhIY/registry/smallvec-1.13.2/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("arbitrary", "const_generics", "const_new", "debugger_visualizer", "drain_filter", "drain_keep_rest", "may_dangle", "serde", "specialization", "union", "write"))' -C metadata=f7f5371280a70ca7 -C extra-filename=-f7f5371280a70ca7 --out-dir /tmp/tmp.cy4zYrLhIY/target/debug/deps -L dependency=/tmp/tmp.cy4zYrLhIY/target/debug/deps --cap-lints warn` 282s Compiling heck v0.4.1 282s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=heck CARGO_MANIFEST_DIR=/tmp/tmp.cy4zYrLhIY/registry/heck-0.4.1 CARGO_MANIFEST_PATH=/tmp/tmp.cy4zYrLhIY/registry/heck-0.4.1/Cargo.toml CARGO_PKG_AUTHORS='Without Boats ' CARGO_PKG_DESCRIPTION='heck is a case conversion library.' CARGO_PKG_HOMEPAGE='https://github.com/withoutboats/heck' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=heck CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/withoutboats/heck' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.4.1 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=4 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.cy4zYrLhIY/target/debug/deps rustc --crate-name heck --edition=2018 /tmp/tmp.cy4zYrLhIY/registry/heck-0.4.1/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "unicode", "unicode-segmentation"))' -C metadata=780ed41701172964 -C extra-filename=-780ed41701172964 --out-dir /tmp/tmp.cy4zYrLhIY/target/debug/deps -L dependency=/tmp/tmp.cy4zYrLhIY/target/debug/deps --cap-lints warn` 282s Compiling cfg-expr v0.15.8 282s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=cfg_expr CARGO_MANIFEST_DIR=/tmp/tmp.cy4zYrLhIY/registry/cfg-expr-0.15.8 CARGO_MANIFEST_PATH=/tmp/tmp.cy4zYrLhIY/registry/cfg-expr-0.15.8/Cargo.toml CARGO_PKG_AUTHORS='Embark :Jake Shadle ' CARGO_PKG_DESCRIPTION='A parser and evaluator for Rust `cfg()` expressions.' CARGO_PKG_HOMEPAGE='https://github.com/EmbarkStudios/cfg-expr' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=cfg-expr CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/EmbarkStudios/cfg-expr' CARGO_PKG_RUST_VERSION=1.70.0 CARGO_PKG_VERSION=0.15.8 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=15 CARGO_PKG_VERSION_PATCH=8 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.cy4zYrLhIY/target/debug/deps rustc --crate-name cfg_expr --edition=2021 /tmp/tmp.cy4zYrLhIY/registry/cfg-expr-0.15.8/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="target-lexicon"' --cfg 'feature="targets"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "target-lexicon", "targets"))' -C metadata=4c9dfc41aae878a8 -C extra-filename=-4c9dfc41aae878a8 --out-dir /tmp/tmp.cy4zYrLhIY/target/debug/deps -L dependency=/tmp/tmp.cy4zYrLhIY/target/debug/deps --extern smallvec=/tmp/tmp.cy4zYrLhIY/target/debug/deps/libsmallvec-f7f5371280a70ca7.rmeta --extern target_lexicon=/tmp/tmp.cy4zYrLhIY/target/debug/deps/libtarget_lexicon-3e1fae5fd9acfad5.rmeta --cap-lints warn` 283s Compiling toml v0.8.19 283s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=toml CARGO_MANIFEST_DIR=/tmp/tmp.cy4zYrLhIY/registry/toml-0.8.19 CARGO_MANIFEST_PATH=/tmp/tmp.cy4zYrLhIY/registry/toml-0.8.19/Cargo.toml CARGO_PKG_AUTHORS='Alex Crichton ' CARGO_PKG_DESCRIPTION='A native Rust encoder and decoder of TOML-formatted files and streams. Provides 283s implementations of the standard Serialize/Deserialize traits for TOML data to 283s facilitate deserializing and serializing Rust structures. 283s ' 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 CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/toml-rs/toml' CARGO_PKG_RUST_VERSION=1.65 CARGO_PKG_VERSION=0.8.19 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=8 CARGO_PKG_VERSION_PATCH=19 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.cy4zYrLhIY/target/debug/deps rustc --crate-name toml --edition=2021 /tmp/tmp.cy4zYrLhIY/registry/toml-0.8.19/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --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="parse"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "display", "indexmap", "parse", "preserve_order"))' -C metadata=3dcb236086e4a66e -C extra-filename=-3dcb236086e4a66e --out-dir /tmp/tmp.cy4zYrLhIY/target/debug/deps -L dependency=/tmp/tmp.cy4zYrLhIY/target/debug/deps --extern serde=/tmp/tmp.cy4zYrLhIY/target/debug/deps/libserde-64c0851ac56a0ce1.rmeta --extern serde_spanned=/tmp/tmp.cy4zYrLhIY/target/debug/deps/libserde_spanned-bb6bf82fb8b7e3e2.rmeta --extern toml_datetime=/tmp/tmp.cy4zYrLhIY/target/debug/deps/libtoml_datetime-f8a60bc8f4facc64.rmeta --extern toml_edit=/tmp/tmp.cy4zYrLhIY/target/debug/deps/libtoml_edit-16e4204886ae364a.rmeta --cap-lints warn` 283s warning: unused import: `std::fmt` 283s --> /tmp/tmp.cy4zYrLhIY/registry/toml-0.8.19/src/table.rs:1:5 283s | 283s 1 | use std::fmt; 283s | ^^^^^^^^ 283s | 283s = note: `#[warn(unused_imports)]` on by default 283s 283s warning: `toml` (lib) generated 1 warning 283s Compiling version-compare v0.1.1 283s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=version_compare CARGO_MANIFEST_DIR=/tmp/tmp.cy4zYrLhIY/registry/version-compare-0.1.1 CARGO_MANIFEST_PATH=/tmp/tmp.cy4zYrLhIY/registry/version-compare-0.1.1/Cargo.toml CARGO_PKG_AUTHORS='Tim Visee <3a4fb3964f@sinenomine.email>' CARGO_PKG_DESCRIPTION='Rust library to easily compare version numbers with no specific format, and test against various comparison operators.' CARGO_PKG_HOMEPAGE='https://timvisee.com/projects/version-compare/' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=version-compare CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://gitlab.com/timvisee/version-compare' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.1.1 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.cy4zYrLhIY/target/debug/deps rustc --crate-name version_compare --edition=2018 /tmp/tmp.cy4zYrLhIY/registry/version-compare-0.1.1/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=ede63bb61298945c -C extra-filename=-ede63bb61298945c --out-dir /tmp/tmp.cy4zYrLhIY/target/debug/deps -L dependency=/tmp/tmp.cy4zYrLhIY/target/debug/deps --cap-lints warn` 283s warning: unexpected `cfg` condition name: `tarpaulin` 283s --> /tmp/tmp.cy4zYrLhIY/registry/version-compare-0.1.1/src/cmp.rs:320:12 283s | 283s 320 | #[cfg_attr(tarpaulin, skip)] 283s | ^^^^^^^^^ 283s | 283s = help: expected names are: `clippy`, `debug_assertions`, `doc`, `docsrs`, `doctest`, `feature`, `fmt_debug`, `miri`, `overflow_checks`, `panic`, `proc_macro`, `relocation_model`, `rustfmt`, `sanitize`, `sanitizer_cfi_generalize_pointers`, `sanitizer_cfi_normalize_integers`, `target_abi`, `target_arch`, `target_endian`, `target_env`, `target_family`, `target_feature`, `target_has_atomic`, `target_has_atomic_equal_alignment`, `target_has_atomic_load_store`, `target_os`, `target_pointer_width`, `target_thread_local`, `target_vendor`, `test`, `ub_checks`, `unix`, and `windows` 283s = help: consider using a Cargo feature instead 283s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 283s [lints.rust] 283s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin)'] } 283s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin)");` to the top of the `build.rs` 283s = note: see for more information about checking conditional configuration 283s = note: `#[warn(unexpected_cfgs)]` on by default 283s 283s warning: unexpected `cfg` condition name: `tarpaulin` 283s --> /tmp/tmp.cy4zYrLhIY/registry/version-compare-0.1.1/src/compare.rs:66:12 283s | 283s 66 | #[cfg_attr(tarpaulin, skip)] 283s | ^^^^^^^^^ 283s | 283s = help: consider using a Cargo feature instead 283s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 283s [lints.rust] 283s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin)'] } 283s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin)");` to the top of the `build.rs` 283s = note: see for more information about checking conditional configuration 283s 283s warning: unexpected `cfg` condition name: `tarpaulin` 283s --> /tmp/tmp.cy4zYrLhIY/registry/version-compare-0.1.1/src/manifest.rs:58:12 283s | 283s 58 | #[cfg_attr(tarpaulin, skip)] 283s | ^^^^^^^^^ 283s | 283s = help: consider using a Cargo feature instead 283s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 283s [lints.rust] 283s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin)'] } 283s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin)");` to the top of the `build.rs` 283s = note: see for more information about checking conditional configuration 283s 283s warning: unexpected `cfg` condition name: `tarpaulin` 283s --> /tmp/tmp.cy4zYrLhIY/registry/version-compare-0.1.1/src/part.rs:34:12 283s | 283s 34 | #[cfg_attr(tarpaulin, skip)] 283s | ^^^^^^^^^ 283s | 283s = help: consider using a Cargo feature instead 283s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 283s [lints.rust] 283s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin)'] } 283s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin)");` to the top of the `build.rs` 283s = note: see for more information about checking conditional configuration 283s 283s warning: unexpected `cfg` condition name: `tarpaulin` 283s --> /tmp/tmp.cy4zYrLhIY/registry/version-compare-0.1.1/src/version.rs:462:12 283s | 283s 462 | #[cfg_attr(tarpaulin, skip)] 283s | ^^^^^^^^^ 283s | 283s = help: consider using a Cargo feature instead 283s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 283s [lints.rust] 283s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin)'] } 283s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin)");` to the top of the `build.rs` 283s = note: see for more information about checking conditional configuration 283s 284s warning: `version-compare` (lib) generated 5 warnings 284s Compiling pkg-config v0.3.31 284s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=pkg_config CARGO_MANIFEST_DIR=/tmp/tmp.cy4zYrLhIY/registry/pkg-config-0.3.31 CARGO_MANIFEST_PATH=/tmp/tmp.cy4zYrLhIY/registry/pkg-config-0.3.31/Cargo.toml CARGO_PKG_AUTHORS='Alex Crichton ' CARGO_PKG_DESCRIPTION='A library to run the pkg-config system tool at build time in order to be used in 284s Cargo build scripts. 284s ' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=pkg-config CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/pkg-config-rs' CARGO_PKG_RUST_VERSION=1.31 CARGO_PKG_VERSION=0.3.31 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=31 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.cy4zYrLhIY/target/debug/deps rustc --crate-name pkg_config --edition=2018 /tmp/tmp.cy4zYrLhIY/registry/pkg-config-0.3.31/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=f20a1c89e2145860 -C extra-filename=-f20a1c89e2145860 --out-dir /tmp/tmp.cy4zYrLhIY/target/debug/deps -L dependency=/tmp/tmp.cy4zYrLhIY/target/debug/deps --cap-lints warn` 284s warning: unreachable expression 284s --> /tmp/tmp.cy4zYrLhIY/registry/pkg-config-0.3.31/src/lib.rs:596:9 284s | 284s 592 | return true; 284s | ----------- any code following this expression is unreachable 284s ... 284s 596 | / match self.targeted_env_var("PKG_CONFIG_ALLOW_CROSS") { 284s 597 | | // don't use pkg-config if explicitly disabled 284s 598 | | Some(ref val) if val == "0" => false, 284s 599 | | Some(_) => true, 284s ... | 284s 605 | | } 284s 606 | | } 284s | |_________^ unreachable expression 284s | 284s = note: `#[warn(unreachable_code)]` on by default 284s 284s warning: `pkg-config` (lib) generated 1 warning 284s Compiling system-deps v7.0.2 284s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=system_deps CARGO_MANIFEST_DIR=/tmp/tmp.cy4zYrLhIY/registry/system-deps-7.0.2 CARGO_MANIFEST_PATH=/tmp/tmp.cy4zYrLhIY/registry/system-deps-7.0.2/Cargo.toml CARGO_PKG_AUTHORS='Guillaume Desmottes :Josh Triplett ' CARGO_PKG_DESCRIPTION='Discover and configure system dependencies from declarative dependencies in Cargo.toml' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=system-deps CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/gdesmott/system-deps' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=7.0.2 CARGO_PKG_VERSION_MAJOR=7 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=2 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.cy4zYrLhIY/target/debug/deps rustc --crate-name system_deps --edition=2018 /tmp/tmp.cy4zYrLhIY/registry/system-deps-7.0.2/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=df5512f70260f2a1 -C extra-filename=-df5512f70260f2a1 --out-dir /tmp/tmp.cy4zYrLhIY/target/debug/deps -L dependency=/tmp/tmp.cy4zYrLhIY/target/debug/deps --extern cfg_expr=/tmp/tmp.cy4zYrLhIY/target/debug/deps/libcfg_expr-4c9dfc41aae878a8.rmeta --extern heck=/tmp/tmp.cy4zYrLhIY/target/debug/deps/libheck-780ed41701172964.rmeta --extern pkg_config=/tmp/tmp.cy4zYrLhIY/target/debug/deps/libpkg_config-f20a1c89e2145860.rmeta --extern toml=/tmp/tmp.cy4zYrLhIY/target/debug/deps/libtoml-3dcb236086e4a66e.rmeta --extern version_compare=/tmp/tmp.cy4zYrLhIY/target/debug/deps/libversion_compare-ede63bb61298945c.rmeta --cap-lints warn` 285s Compiling libc v0.2.169 285s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.cy4zYrLhIY/registry/libc-0.2.169 CARGO_MANIFEST_PATH=/tmp/tmp.cy4zYrLhIY/registry/libc-0.2.169/Cargo.toml CARGO_PKG_AUTHORS='The Rust Project Developers' CARGO_PKG_DESCRIPTION='Raw FFI bindings to platform libraries like libc. 285s ' CARGO_PKG_HOMEPAGE='https://github.com/rust-lang/libc' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=libc CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/libc' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=0.2.169 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=169 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.cy4zYrLhIY/target/debug/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.cy4zYrLhIY/registry/libc-0.2.169/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="extra_traits"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("align", "const-extern-fn", "default", "extra_traits", "rustc-dep-of-std", "rustc-std-workspace-core", "std", "use_std"))' -C metadata=dc781cb7c1ee5a21 -C extra-filename=-dc781cb7c1ee5a21 --out-dir /tmp/tmp.cy4zYrLhIY/target/debug/build/libc-dc781cb7c1ee5a21 -L dependency=/tmp/tmp.cy4zYrLhIY/target/debug/deps --cap-lints warn` 286s Compiling autocfg v1.1.0 286s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=autocfg CARGO_MANIFEST_DIR=/tmp/tmp.cy4zYrLhIY/registry/autocfg-1.1.0 CARGO_MANIFEST_PATH=/tmp/tmp.cy4zYrLhIY/registry/autocfg-1.1.0/Cargo.toml CARGO_PKG_AUTHORS='Josh Stone ' CARGO_PKG_DESCRIPTION='Automatic cfg for Rust compiler features' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=autocfg CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/cuviper/autocfg' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=1.1.0 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.cy4zYrLhIY/target/debug/deps rustc --crate-name autocfg --edition=2015 /tmp/tmp.cy4zYrLhIY/registry/autocfg-1.1.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=9ebcd9511383083c -C extra-filename=-9ebcd9511383083c --out-dir /tmp/tmp.cy4zYrLhIY/target/debug/deps -L dependency=/tmp/tmp.cy4zYrLhIY/target/debug/deps --cap-lints warn` 286s 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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0--remap-path-prefix/tmp/tmp.cy4zYrLhIY/registry=/usr/share/cargo/registry-Ctarget-feature=+backchain' CARGO_FEATURE_DEFAULT=1 CARGO_FEATURE_EXTRA_TRAITS=1 CARGO_FEATURE_STD=1 CARGO_MANIFEST_DIR=/tmp/tmp.cy4zYrLhIY/registry/libc-0.2.169 CARGO_MANIFEST_PATH=/tmp/tmp.cy4zYrLhIY/registry/libc-0.2.169/Cargo.toml CARGO_PKG_AUTHORS='The Rust Project Developers' CARGO_PKG_DESCRIPTION='Raw FFI bindings to platform libraries like libc. 286s ' CARGO_PKG_HOMEPAGE='https://github.com/rust-lang/libc' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=libc CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/libc' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=0.2.169 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=169 CARGO_PKG_VERSION_PRE='' DEBUG=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.cy4zYrLhIY/target/debug/deps:/tmp/tmp.cy4zYrLhIY/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/build/libc-bd02b9c7a9cce7ac/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.cy4zYrLhIY/target/debug/build/libc-dc781cb7c1ee5a21/build-script-build` 286s [libc 0.2.169] cargo:rerun-if-changed=build.rs 286s [libc 0.2.169] cargo:rerun-if-env-changed=RUST_LIBC_UNSTABLE_FREEBSD_VERSION 286s [libc 0.2.169] cargo:rustc-cfg=freebsd11 286s [libc 0.2.169] cargo:rustc-cfg=libc_const_extern_fn 286s [libc 0.2.169] cargo:rustc-check-cfg=cfg(emscripten_new_stat_abi) 286s [libc 0.2.169] cargo:rustc-check-cfg=cfg(espidf_time32) 286s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd10) 286s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd11) 286s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd12) 286s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd13) 286s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd14) 286s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd15) 286s [libc 0.2.169] cargo:rustc-check-cfg=cfg(gnu_time64_abi) 286s [libc 0.2.169] cargo:rustc-check-cfg=cfg(libc_const_extern_fn) 286s [libc 0.2.169] cargo:rustc-check-cfg=cfg(libc_deny_warnings) 286s [libc 0.2.169] cargo:rustc-check-cfg=cfg(libc_thread_local) 286s [libc 0.2.169] cargo:rustc-check-cfg=cfg(libc_ctest) 286s [libc 0.2.169] cargo:rustc-check-cfg=cfg(target_os,values("switch","aix","ohos","hurd","rtems","visionos","nuttx")) 286s [libc 0.2.169] cargo:rustc-check-cfg=cfg(target_env,values("illumos","wasi","aix","ohos")) 286s [libc 0.2.169] cargo:rustc-check-cfg=cfg(target_arch,values("loongarch64","mips32r6","mips64r6","csky")) 286s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=libc CARGO_MANIFEST_DIR=/tmp/tmp.cy4zYrLhIY/registry/libc-0.2.169 CARGO_MANIFEST_PATH=/tmp/tmp.cy4zYrLhIY/registry/libc-0.2.169/Cargo.toml CARGO_PKG_AUTHORS='The Rust Project Developers' CARGO_PKG_DESCRIPTION='Raw FFI bindings to platform libraries like libc. 286s ' CARGO_PKG_HOMEPAGE='https://github.com/rust-lang/libc' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=libc CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/libc' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=0.2.169 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=169 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.cy4zYrLhIY/target/debug/deps OUT_DIR=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/build/libc-bd02b9c7a9cce7ac/out rustc --crate-name libc --edition=2021 /tmp/tmp.cy4zYrLhIY/registry/libc-0.2.169/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="extra_traits"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("align", "const-extern-fn", "default", "extra_traits", "rustc-dep-of-std", "rustc-std-workspace-core", "std", "use_std"))' -C metadata=cf2521928ac070dc -C extra-filename=-cf2521928ac070dc --out-dir /tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.cy4zYrLhIY/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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.cy4zYrLhIY/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain --cfg freebsd11 --cfg libc_const_extern_fn --check-cfg 'cfg(emscripten_new_stat_abi)' --check-cfg 'cfg(espidf_time32)' --check-cfg 'cfg(freebsd10)' --check-cfg 'cfg(freebsd11)' --check-cfg 'cfg(freebsd12)' --check-cfg 'cfg(freebsd13)' --check-cfg 'cfg(freebsd14)' --check-cfg 'cfg(freebsd15)' --check-cfg 'cfg(gnu_time64_abi)' --check-cfg 'cfg(libc_const_extern_fn)' --check-cfg 'cfg(libc_deny_warnings)' --check-cfg 'cfg(libc_thread_local)' --check-cfg 'cfg(libc_ctest)' --check-cfg 'cfg(target_os,values("switch","aix","ohos","hurd","rtems","visionos","nuttx"))' --check-cfg 'cfg(target_env,values("illumos","wasi","aix","ohos"))' --check-cfg 'cfg(target_arch,values("loongarch64","mips32r6","mips64r6","csky"))'` 286s Compiling glib-sys v0.20.7 286s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.cy4zYrLhIY/registry/glib-sys-0.20.7 CARGO_MANIFEST_PATH=/tmp/tmp.cy4zYrLhIY/registry/glib-sys-0.20.7/Cargo.toml CARGO_PKG_AUTHORS='The gtk-rs Project Developers' CARGO_PKG_DESCRIPTION='FFI bindings to libglib-2.0' CARGO_PKG_HOMEPAGE='https://gtk-rs.org/' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=glib-sys CARGO_PKG_README='' CARGO_PKG_REPOSITORY='https://github.com/gtk-rs/gtk-rs-core' CARGO_PKG_RUST_VERSION=1.70 CARGO_PKG_VERSION=0.20.7 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=20 CARGO_PKG_VERSION_PATCH=7 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.cy4zYrLhIY/target/debug/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.cy4zYrLhIY/registry/glib-sys-0.20.7/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="v2_58"' --cfg 'feature="v2_60"' --cfg 'feature="v2_62"' --cfg 'feature="v2_64"' --cfg 'feature="v2_66"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("v2_58", "v2_60", "v2_62", "v2_64", "v2_66", "v2_68", "v2_70", "v2_72", "v2_74", "v2_76", "v2_78", "v2_80", "v2_82", "v2_84"))' -C metadata=df9c4015ac0ba9cb -C extra-filename=-df9c4015ac0ba9cb --out-dir /tmp/tmp.cy4zYrLhIY/target/debug/build/glib-sys-df9c4015ac0ba9cb -L dependency=/tmp/tmp.cy4zYrLhIY/target/debug/deps --extern system_deps=/tmp/tmp.cy4zYrLhIY/target/debug/deps/libsystem_deps-df5512f70260f2a1.rlib --cap-lints warn` 286s warning: unused import: `crate::ntptimeval` 286s --> /usr/share/cargo/registry/libc-0.2.169/src/unix/linux_like/linux/gnu/b64/mod.rs:5:5 286s | 286s 5 | use crate::ntptimeval; 286s | ^^^^^^^^^^^^^^^^^ 286s | 286s = note: `#[warn(unused_imports)]` on by default 286s 286s Compiling pin-project-lite v0.2.13 286s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=pin_project_lite CARGO_MANIFEST_DIR=/tmp/tmp.cy4zYrLhIY/registry/pin-project-lite-0.2.13 CARGO_MANIFEST_PATH=/tmp/tmp.cy4zYrLhIY/registry/pin-project-lite-0.2.13/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='A lightweight version of pin-project written with declarative macros. 286s ' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=pin-project-lite CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/taiki-e/pin-project-lite' CARGO_PKG_RUST_VERSION=1.37 CARGO_PKG_VERSION=0.2.13 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=13 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.cy4zYrLhIY/target/debug/deps rustc --crate-name pin_project_lite --edition=2018 /tmp/tmp.cy4zYrLhIY/registry/pin-project-lite-0.2.13/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=5dc815523e98d889 -C extra-filename=-5dc815523e98d889 --out-dir /tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.cy4zYrLhIY/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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.cy4zYrLhIY/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 286s warning: unstable feature specified for `-Ctarget-feature`: `backchain` 286s | 286s = note: this feature is not stably supported; its behavior can change in the future 286s 286s warning: `pin-project-lite` (lib) generated 1 warning 286s 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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0--remap-path-prefix/tmp/tmp.cy4zYrLhIY/registry=/usr/share/cargo/registry-Ctarget-feature=+backchain' CARGO_FEATURE_V2_58=1 CARGO_FEATURE_V2_60=1 CARGO_FEATURE_V2_62=1 CARGO_FEATURE_V2_64=1 CARGO_FEATURE_V2_66=1 CARGO_MANIFEST_DIR=/tmp/tmp.cy4zYrLhIY/registry/glib-sys-0.20.7 CARGO_MANIFEST_PATH=/tmp/tmp.cy4zYrLhIY/registry/glib-sys-0.20.7/Cargo.toml CARGO_PKG_AUTHORS='The gtk-rs Project Developers' CARGO_PKG_DESCRIPTION='FFI bindings to libglib-2.0' CARGO_PKG_HOMEPAGE='https://gtk-rs.org/' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=glib-sys CARGO_PKG_README='' CARGO_PKG_REPOSITORY='https://github.com/gtk-rs/gtk-rs-core' CARGO_PKG_RUST_VERSION=1.70 CARGO_PKG_VERSION=0.20.7 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=20 CARGO_PKG_VERSION_PATCH=7 CARGO_PKG_VERSION_PRE='' DEBUG=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.cy4zYrLhIY/target/debug/deps:/tmp/tmp.cy4zYrLhIY/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/build/glib-sys-8c58b953bd6c2f59/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.cy4zYrLhIY/target/debug/build/glib-sys-df9c4015ac0ba9cb/build-script-build` 286s [glib-sys 0.20.7] cargo:rerun-if-changed=/tmp/tmp.cy4zYrLhIY/registry/glib-sys-0.20.7/Cargo.toml 286s [glib-sys 0.20.7] cargo:rerun-if-env-changed=GLIB_2.0_NO_PKG_CONFIG 286s [glib-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_s390x-unknown-linux-gnu 286s [glib-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_s390x_unknown_linux_gnu 286s [glib-sys 0.20.7] cargo:rerun-if-env-changed=HOST_PKG_CONFIG 286s [glib-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG 286s [glib-sys 0.20.7] cargo:rerun-if-env-changed=DEB_HOST_GNU_TYPE 286s [glib-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_PATH_s390x-unknown-linux-gnu 286s [glib-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_PATH_s390x_unknown_linux_gnu 286s [glib-sys 0.20.7] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_PATH 286s [glib-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_PATH 286s [glib-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR_s390x-unknown-linux-gnu 286s [glib-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR_s390x_unknown_linux_gnu 286s [glib-sys 0.20.7] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_LIBDIR 286s [glib-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR 286s [glib-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR_s390x-unknown-linux-gnu 286s [glib-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR_s390x_unknown_linux_gnu 286s [glib-sys 0.20.7] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_SYSROOT_DIR 286s [glib-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR 286s [glib-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR 286s [glib-sys 0.20.7] cargo:rerun-if-env-changed=SYSROOT 286s [glib-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_s390x-unknown-linux-gnu 286s [glib-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_s390x_unknown_linux_gnu 286s [glib-sys 0.20.7] cargo:rerun-if-env-changed=HOST_PKG_CONFIG 286s [glib-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG 286s [glib-sys 0.20.7] cargo:rerun-if-env-changed=DEB_HOST_GNU_TYPE 286s [glib-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_PATH_s390x-unknown-linux-gnu 286s [glib-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_PATH_s390x_unknown_linux_gnu 286s [glib-sys 0.20.7] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_PATH 286s [glib-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_PATH 286s [glib-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR_s390x-unknown-linux-gnu 286s [glib-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR_s390x_unknown_linux_gnu 286s [glib-sys 0.20.7] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_LIBDIR 286s [glib-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR 286s [glib-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR_s390x-unknown-linux-gnu 287s [glib-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR_s390x_unknown_linux_gnu 287s [glib-sys 0.20.7] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_SYSROOT_DIR 287s [glib-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR 287s [glib-sys 0.20.7] cargo:rerun-if-env-changed=GOBJECT_2.0_NO_PKG_CONFIG 287s [glib-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_s390x-unknown-linux-gnu 287s [glib-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_s390x_unknown_linux_gnu 287s [glib-sys 0.20.7] cargo:rerun-if-env-changed=HOST_PKG_CONFIG 287s [glib-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG 287s [glib-sys 0.20.7] cargo:rerun-if-env-changed=DEB_HOST_GNU_TYPE 287s [glib-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_PATH_s390x-unknown-linux-gnu 287s [glib-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_PATH_s390x_unknown_linux_gnu 287s [glib-sys 0.20.7] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_PATH 287s [glib-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_PATH 287s [glib-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR_s390x-unknown-linux-gnu 287s [glib-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR_s390x_unknown_linux_gnu 287s [glib-sys 0.20.7] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_LIBDIR 287s [glib-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR 287s [glib-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR_s390x-unknown-linux-gnu 287s [glib-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR_s390x_unknown_linux_gnu 287s [glib-sys 0.20.7] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_SYSROOT_DIR 287s [glib-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR 287s [glib-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR 287s [glib-sys 0.20.7] cargo:rerun-if-env-changed=SYSROOT 287s [glib-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_s390x-unknown-linux-gnu 287s [glib-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_s390x_unknown_linux_gnu 287s [glib-sys 0.20.7] cargo:rerun-if-env-changed=HOST_PKG_CONFIG 287s [glib-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG 287s [glib-sys 0.20.7] cargo:rerun-if-env-changed=DEB_HOST_GNU_TYPE 287s [glib-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_PATH_s390x-unknown-linux-gnu 287s [glib-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_PATH_s390x_unknown_linux_gnu 287s [glib-sys 0.20.7] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_PATH 287s [glib-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_PATH 287s [glib-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR_s390x-unknown-linux-gnu 287s [glib-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR_s390x_unknown_linux_gnu 287s [glib-sys 0.20.7] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_LIBDIR 287s [glib-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR 287s [glib-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR_s390x-unknown-linux-gnu 287s [glib-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR_s390x_unknown_linux_gnu 287s [glib-sys 0.20.7] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_SYSROOT_DIR 287s [glib-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR 287s [glib-sys 0.20.7] cargo:rustc-link-lib=glib-2.0 287s [glib-sys 0.20.7] cargo:rustc-link-lib=gobject-2.0 287s [glib-sys 0.20.7] cargo:rustc-link-lib=glib-2.0 287s [glib-sys 0.20.7] cargo:include=/usr/include/glib-2.0:/usr/lib/s390x-linux-gnu/glib-2.0/include:/usr/include/sysprof-6:/usr/include:/usr/include:/usr/include/glib-2.0:/usr/lib/s390x-linux-gnu/glib-2.0/include:/usr/include/sysprof-6 287s [glib-sys 0.20.7] cargo:rerun-if-env-changed=SYSTEM_DEPS_BUILD_INTERNAL 287s [glib-sys 0.20.7] cargo:rerun-if-env-changed=SYSTEM_DEPS_LINK 287s [glib-sys 0.20.7] cargo:rerun-if-env-changed=SYSTEM_DEPS_GLIB_2_0_LIB 287s [glib-sys 0.20.7] cargo:rerun-if-env-changed=SYSTEM_DEPS_GLIB_2_0_LIB_FRAMEWORK 287s [glib-sys 0.20.7] cargo:rerun-if-env-changed=SYSTEM_DEPS_GLIB_2_0_SEARCH_NATIVE 287s [glib-sys 0.20.7] cargo:rerun-if-env-changed=SYSTEM_DEPS_GLIB_2_0_SEARCH_FRAMEWORK 287s [glib-sys 0.20.7] cargo:rerun-if-env-changed=SYSTEM_DEPS_GLIB_2_0_INCLUDE 287s [glib-sys 0.20.7] cargo:rerun-if-env-changed=SYSTEM_DEPS_GLIB_2_0_LDFLAGS 287s [glib-sys 0.20.7] cargo:rerun-if-env-changed=SYSTEM_DEPS_GLIB_2_0_NO_PKG_CONFIG 287s [glib-sys 0.20.7] cargo:rerun-if-env-changed=SYSTEM_DEPS_GLIB_2_0_BUILD_INTERNAL 287s [glib-sys 0.20.7] cargo:rerun-if-env-changed=SYSTEM_DEPS_GLIB_2_0_LINK 287s [glib-sys 0.20.7] cargo:rerun-if-env-changed=SYSTEM_DEPS_GOBJECT_2_0_LIB 287s [glib-sys 0.20.7] cargo:rerun-if-env-changed=SYSTEM_DEPS_GOBJECT_2_0_LIB_FRAMEWORK 287s [glib-sys 0.20.7] cargo:rerun-if-env-changed=SYSTEM_DEPS_GOBJECT_2_0_SEARCH_NATIVE 287s [glib-sys 0.20.7] cargo:rerun-if-env-changed=SYSTEM_DEPS_GOBJECT_2_0_SEARCH_FRAMEWORK 287s [glib-sys 0.20.7] cargo:rerun-if-env-changed=SYSTEM_DEPS_GOBJECT_2_0_INCLUDE 287s [glib-sys 0.20.7] cargo:rerun-if-env-changed=SYSTEM_DEPS_GOBJECT_2_0_LDFLAGS 287s [glib-sys 0.20.7] cargo:rerun-if-env-changed=SYSTEM_DEPS_GOBJECT_2_0_NO_PKG_CONFIG 287s [glib-sys 0.20.7] cargo:rerun-if-env-changed=SYSTEM_DEPS_GOBJECT_2_0_BUILD_INTERNAL 287s [glib-sys 0.20.7] cargo:rerun-if-env-changed=SYSTEM_DEPS_GOBJECT_2_0_LINK 287s [glib-sys 0.20.7] 287s [glib-sys 0.20.7] cargo:rustc-cfg=system_deps_have_glib_2_0 287s [glib-sys 0.20.7] cargo:rustc-cfg=system_deps_have_gobject_2_0 287s Compiling gobject-sys v0.20.7 287s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.cy4zYrLhIY/registry/gobject-sys-0.20.7 CARGO_MANIFEST_PATH=/tmp/tmp.cy4zYrLhIY/registry/gobject-sys-0.20.7/Cargo.toml CARGO_PKG_AUTHORS='The gtk-rs Project Developers' CARGO_PKG_DESCRIPTION='FFI bindings to libgobject-2.0' CARGO_PKG_HOMEPAGE='https://gtk-rs.org/' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=gobject-sys CARGO_PKG_README='' CARGO_PKG_REPOSITORY='https://github.com/gtk-rs/gtk-rs-core' CARGO_PKG_RUST_VERSION=1.70 CARGO_PKG_VERSION=0.20.7 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=20 CARGO_PKG_VERSION_PATCH=7 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.cy4zYrLhIY/target/debug/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.cy4zYrLhIY/registry/gobject-sys-0.20.7/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="v2_58"' --cfg 'feature="v2_62"' --cfg 'feature="v2_66"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("v2_58", "v2_62", "v2_66", "v2_68", "v2_70", "v2_72", "v2_74", "v2_76", "v2_78", "v2_80", "v2_82"))' -C metadata=5e250a0f9872c007 -C extra-filename=-5e250a0f9872c007 --out-dir /tmp/tmp.cy4zYrLhIY/target/debug/build/gobject-sys-5e250a0f9872c007 -L dependency=/tmp/tmp.cy4zYrLhIY/target/debug/deps --extern system_deps=/tmp/tmp.cy4zYrLhIY/target/debug/deps/libsystem_deps-df5512f70260f2a1.rlib --cap-lints warn` 287s Compiling proc-macro-crate v3.2.0 287s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=proc_macro_crate CARGO_MANIFEST_DIR=/tmp/tmp.cy4zYrLhIY/registry/proc-macro-crate-3.2.0 CARGO_MANIFEST_PATH=/tmp/tmp.cy4zYrLhIY/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 287s ' 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.cy4zYrLhIY/target/debug/deps rustc --crate-name proc_macro_crate --edition=2021 /tmp/tmp.cy4zYrLhIY/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=76b8c9685ffc2762 -C extra-filename=-76b8c9685ffc2762 --out-dir /tmp/tmp.cy4zYrLhIY/target/debug/deps -L dependency=/tmp/tmp.cy4zYrLhIY/target/debug/deps --extern toml_edit=/tmp/tmp.cy4zYrLhIY/target/debug/deps/libtoml_edit-16e4204886ae364a.rmeta --cap-lints warn` 287s warning: `libc` (lib) generated 2 warnings (1 duplicate) 287s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=glib_sys CARGO_MANIFEST_DIR=/tmp/tmp.cy4zYrLhIY/registry/glib-sys-0.20.7 CARGO_MANIFEST_PATH=/tmp/tmp.cy4zYrLhIY/registry/glib-sys-0.20.7/Cargo.toml CARGO_PKG_AUTHORS='The gtk-rs Project Developers' CARGO_PKG_DESCRIPTION='FFI bindings to libglib-2.0' CARGO_PKG_HOMEPAGE='https://gtk-rs.org/' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=glib-sys CARGO_PKG_README='' CARGO_PKG_REPOSITORY='https://github.com/gtk-rs/gtk-rs-core' CARGO_PKG_RUST_VERSION=1.70 CARGO_PKG_VERSION=0.20.7 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=20 CARGO_PKG_VERSION_PATCH=7 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.cy4zYrLhIY/target/debug/deps OUT_DIR=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/build/glib-sys-8c58b953bd6c2f59/out rustc --crate-name glib_sys --edition=2021 /tmp/tmp.cy4zYrLhIY/registry/glib-sys-0.20.7/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="v2_58"' --cfg 'feature="v2_60"' --cfg 'feature="v2_62"' --cfg 'feature="v2_64"' --cfg 'feature="v2_66"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("v2_58", "v2_60", "v2_62", "v2_64", "v2_66", "v2_68", "v2_70", "v2_72", "v2_74", "v2_76", "v2_78", "v2_80", "v2_82", "v2_84"))' -C metadata=8d7612a6c3ae820a -C extra-filename=-8d7612a6c3ae820a --out-dir /tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.cy4zYrLhIY/target/debug/deps --extern libc=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps/liblibc-cf2521928ac070dc.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.cy4zYrLhIY/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain -l glib-2.0 -l gobject-2.0 -l glib-2.0 --cfg system_deps_have_glib_2_0 --cfg system_deps_have_gobject_2_0` 288s warning: `glib-sys` (lib) generated 1 warning (1 duplicate) 288s Compiling futures-core v0.3.31 288s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=futures_core CARGO_MANIFEST_DIR=/tmp/tmp.cy4zYrLhIY/registry/futures-core-0.3.31 CARGO_MANIFEST_PATH=/tmp/tmp.cy4zYrLhIY/registry/futures-core-0.3.31/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='The core traits and types in for the `futures` library. 288s ' CARGO_PKG_HOMEPAGE='https://rust-lang.github.io/futures-rs' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=futures-core CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/futures-rs' CARGO_PKG_RUST_VERSION=1.36 CARGO_PKG_VERSION=0.3.31 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=31 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.cy4zYrLhIY/target/debug/deps rustc --crate-name futures_core --edition=2018 /tmp/tmp.cy4zYrLhIY/registry/futures-core-0.3.31/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --warn=unreachable_pub --warn=unexpected_cfgs --warn=single_use_lifetimes --warn=rust_2018_idioms --warn=missing_debug_implementations --check-cfg 'cfg(futures_sanitizer)' --cfg 'feature="alloc"' --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "cfg-target-has-atomic", "default", "portable-atomic", "std", "unstable"))' -C metadata=8d305950da6bf5c8 -C extra-filename=-8d305950da6bf5c8 --out-dir /tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.cy4zYrLhIY/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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.cy4zYrLhIY/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 288s 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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0--remap-path-prefix/tmp/tmp.cy4zYrLhIY/registry=/usr/share/cargo/registry-Ctarget-feature=+backchain' CARGO_FEATURE_V2_58=1 CARGO_FEATURE_V2_62=1 CARGO_FEATURE_V2_66=1 CARGO_MANIFEST_DIR=/tmp/tmp.cy4zYrLhIY/registry/gobject-sys-0.20.7 CARGO_MANIFEST_PATH=/tmp/tmp.cy4zYrLhIY/registry/gobject-sys-0.20.7/Cargo.toml CARGO_PKG_AUTHORS='The gtk-rs Project Developers' CARGO_PKG_DESCRIPTION='FFI bindings to libgobject-2.0' CARGO_PKG_HOMEPAGE='https://gtk-rs.org/' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=gobject-sys CARGO_PKG_README='' CARGO_PKG_REPOSITORY='https://github.com/gtk-rs/gtk-rs-core' CARGO_PKG_RUST_VERSION=1.70 CARGO_PKG_VERSION=0.20.7 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=20 CARGO_PKG_VERSION_PATCH=7 CARGO_PKG_VERSION_PRE='' DEBUG=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.cy4zYrLhIY/target/debug/deps:/tmp/tmp.cy4zYrLhIY/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/build/gobject-sys-613b865e2134d7fa/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.cy4zYrLhIY/target/debug/build/gobject-sys-5e250a0f9872c007/build-script-build` 288s [gobject-sys 0.20.7] cargo:rerun-if-changed=/tmp/tmp.cy4zYrLhIY/registry/gobject-sys-0.20.7/Cargo.toml 288s [gobject-sys 0.20.7] cargo:rerun-if-env-changed=GOBJECT_2.0_NO_PKG_CONFIG 288s [gobject-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_s390x-unknown-linux-gnu 288s [gobject-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_s390x_unknown_linux_gnu 288s [gobject-sys 0.20.7] cargo:rerun-if-env-changed=HOST_PKG_CONFIG 288s [gobject-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG 288s [gobject-sys 0.20.7] cargo:rerun-if-env-changed=DEB_HOST_GNU_TYPE 288s [gobject-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_PATH_s390x-unknown-linux-gnu 288s [gobject-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_PATH_s390x_unknown_linux_gnu 288s [gobject-sys 0.20.7] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_PATH 288s [gobject-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_PATH 288s [gobject-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR_s390x-unknown-linux-gnu 288s [gobject-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR_s390x_unknown_linux_gnu 288s [gobject-sys 0.20.7] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_LIBDIR 288s [gobject-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR 288s [gobject-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR_s390x-unknown-linux-gnu 288s [gobject-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR_s390x_unknown_linux_gnu 288s [gobject-sys 0.20.7] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_SYSROOT_DIR 288s [gobject-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR 288s [gobject-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR 288s [gobject-sys 0.20.7] cargo:rerun-if-env-changed=SYSROOT 288s [gobject-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_s390x-unknown-linux-gnu 288s [gobject-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_s390x_unknown_linux_gnu 288s [gobject-sys 0.20.7] cargo:rerun-if-env-changed=HOST_PKG_CONFIG 288s [gobject-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG 288s [gobject-sys 0.20.7] cargo:rerun-if-env-changed=DEB_HOST_GNU_TYPE 288s [gobject-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_PATH_s390x-unknown-linux-gnu 288s [gobject-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_PATH_s390x_unknown_linux_gnu 288s [gobject-sys 0.20.7] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_PATH 288s [gobject-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_PATH 288s [gobject-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR_s390x-unknown-linux-gnu 288s [gobject-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR_s390x_unknown_linux_gnu 288s [gobject-sys 0.20.7] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_LIBDIR 288s [gobject-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR 288s [gobject-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR_s390x-unknown-linux-gnu 288s [gobject-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR_s390x_unknown_linux_gnu 288s [gobject-sys 0.20.7] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_SYSROOT_DIR 288s [gobject-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR 288s [gobject-sys 0.20.7] cargo:rustc-link-lib=gobject-2.0 288s [gobject-sys 0.20.7] cargo:rustc-link-lib=glib-2.0 288s [gobject-sys 0.20.7] cargo:include=/usr/include:/usr/include/glib-2.0:/usr/lib/s390x-linux-gnu/glib-2.0/include:/usr/include/sysprof-6 288s [gobject-sys 0.20.7] cargo:rerun-if-env-changed=SYSTEM_DEPS_BUILD_INTERNAL 288s [gobject-sys 0.20.7] cargo:rerun-if-env-changed=SYSTEM_DEPS_LINK 288s [gobject-sys 0.20.7] cargo:rerun-if-env-changed=SYSTEM_DEPS_GOBJECT_2_0_LIB 288s [gobject-sys 0.20.7] cargo:rerun-if-env-changed=SYSTEM_DEPS_GOBJECT_2_0_LIB_FRAMEWORK 288s [gobject-sys 0.20.7] cargo:rerun-if-env-changed=SYSTEM_DEPS_GOBJECT_2_0_SEARCH_NATIVE 288s [gobject-sys 0.20.7] cargo:rerun-if-env-changed=SYSTEM_DEPS_GOBJECT_2_0_SEARCH_FRAMEWORK 288s [gobject-sys 0.20.7] cargo:rerun-if-env-changed=SYSTEM_DEPS_GOBJECT_2_0_INCLUDE 288s [gobject-sys 0.20.7] cargo:rerun-if-env-changed=SYSTEM_DEPS_GOBJECT_2_0_LDFLAGS 288s [gobject-sys 0.20.7] cargo:rerun-if-env-changed=SYSTEM_DEPS_GOBJECT_2_0_NO_PKG_CONFIG 288s [gobject-sys 0.20.7] cargo:rerun-if-env-changed=SYSTEM_DEPS_GOBJECT_2_0_BUILD_INTERNAL 288s [gobject-sys 0.20.7] cargo:rerun-if-env-changed=SYSTEM_DEPS_GOBJECT_2_0_LINK 288s [gobject-sys 0.20.7] 288s [gobject-sys 0.20.7] cargo:rustc-cfg=system_deps_have_gobject_2_0 288s Compiling slab v0.4.9 288s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.cy4zYrLhIY/registry/slab-0.4.9 CARGO_MANIFEST_PATH=/tmp/tmp.cy4zYrLhIY/registry/slab-0.4.9/Cargo.toml CARGO_PKG_AUTHORS='Carl Lerche ' CARGO_PKG_DESCRIPTION='Pre-allocated storage for a uniform data type' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=slab CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/tokio-rs/slab' CARGO_PKG_RUST_VERSION=1.31 CARGO_PKG_VERSION=0.4.9 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=4 CARGO_PKG_VERSION_PATCH=9 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.cy4zYrLhIY/target/debug/deps rustc --crate-name build_script_build --edition=2018 /tmp/tmp.cy4zYrLhIY/registry/slab-0.4.9/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "serde", "std"))' -C metadata=95cba3e02497b263 -C extra-filename=-95cba3e02497b263 --out-dir /tmp/tmp.cy4zYrLhIY/target/debug/build/slab-95cba3e02497b263 -L dependency=/tmp/tmp.cy4zYrLhIY/target/debug/deps --extern autocfg=/tmp/tmp.cy4zYrLhIY/target/debug/deps/libautocfg-9ebcd9511383083c.rlib --cap-lints warn` 288s warning: `futures-core` (lib) generated 1 warning (1 duplicate) 288s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=gobject_sys CARGO_MANIFEST_DIR=/tmp/tmp.cy4zYrLhIY/registry/gobject-sys-0.20.7 CARGO_MANIFEST_PATH=/tmp/tmp.cy4zYrLhIY/registry/gobject-sys-0.20.7/Cargo.toml CARGO_PKG_AUTHORS='The gtk-rs Project Developers' CARGO_PKG_DESCRIPTION='FFI bindings to libgobject-2.0' CARGO_PKG_HOMEPAGE='https://gtk-rs.org/' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=gobject-sys CARGO_PKG_README='' CARGO_PKG_REPOSITORY='https://github.com/gtk-rs/gtk-rs-core' CARGO_PKG_RUST_VERSION=1.70 CARGO_PKG_VERSION=0.20.7 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=20 CARGO_PKG_VERSION_PATCH=7 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.cy4zYrLhIY/target/debug/deps OUT_DIR=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/build/gobject-sys-613b865e2134d7fa/out rustc --crate-name gobject_sys --edition=2021 /tmp/tmp.cy4zYrLhIY/registry/gobject-sys-0.20.7/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="v2_58"' --cfg 'feature="v2_62"' --cfg 'feature="v2_66"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("v2_58", "v2_62", "v2_66", "v2_68", "v2_70", "v2_72", "v2_74", "v2_76", "v2_78", "v2_80", "v2_82"))' -C metadata=c41d1b14aec65cc2 -C extra-filename=-c41d1b14aec65cc2 --out-dir /tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.cy4zYrLhIY/target/debug/deps --extern glib_sys=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps/libglib_sys-8d7612a6c3ae820a.rmeta --extern libc=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps/liblibc-cf2521928ac070dc.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.cy4zYrLhIY/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain -l gobject-2.0 -l glib-2.0 --cfg system_deps_have_gobject_2_0` 288s 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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0--remap-path-prefix/tmp/tmp.cy4zYrLhIY/registry=/usr/share/cargo/registry-Ctarget-feature=+backchain' CARGO_FEATURE_DEFAULT=1 CARGO_FEATURE_STD=1 CARGO_MANIFEST_DIR=/tmp/tmp.cy4zYrLhIY/registry/slab-0.4.9 CARGO_MANIFEST_PATH=/tmp/tmp.cy4zYrLhIY/registry/slab-0.4.9/Cargo.toml CARGO_PKG_AUTHORS='Carl Lerche ' CARGO_PKG_DESCRIPTION='Pre-allocated storage for a uniform data type' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=slab CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/tokio-rs/slab' CARGO_PKG_RUST_VERSION=1.31 CARGO_PKG_VERSION=0.4.9 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=4 CARGO_PKG_VERSION_PATCH=9 CARGO_PKG_VERSION_PRE='' DEBUG=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.cy4zYrLhIY/target/debug/deps:/tmp/tmp.cy4zYrLhIY/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/build/slab-2c89ee66d35953a1/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.cy4zYrLhIY/target/debug/build/slab-95cba3e02497b263/build-script-build` 288s [slab 0.4.9] warning: unstable feature specified for `-Ctarget-feature`: `backchain` 288s [slab 0.4.9] | 288s [slab 0.4.9] = note: this feature is not stably supported; its behavior can change in the future 288s [slab 0.4.9] 288s [slab 0.4.9] warning: 1 warning emitted 288s [slab 0.4.9] 288s Compiling gio-sys v0.20.8 288s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.cy4zYrLhIY/registry/gio-sys-0.20.8 CARGO_MANIFEST_PATH=/tmp/tmp.cy4zYrLhIY/registry/gio-sys-0.20.8/Cargo.toml CARGO_PKG_AUTHORS='The gtk-rs Project Developers' CARGO_PKG_DESCRIPTION='FFI bindings to libgio-2.0' CARGO_PKG_HOMEPAGE='https://gtk-rs.org/' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=gio-sys CARGO_PKG_README='' CARGO_PKG_REPOSITORY='https://github.com/gtk-rs/gtk-rs-core' CARGO_PKG_RUST_VERSION=1.70 CARGO_PKG_VERSION=0.20.8 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=20 CARGO_PKG_VERSION_PATCH=8 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.cy4zYrLhIY/target/debug/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.cy4zYrLhIY/registry/gio-sys-0.20.8/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="v2_58"' --cfg 'feature="v2_60"' --cfg 'feature="v2_62"' --cfg 'feature="v2_64"' --cfg 'feature="v2_66"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("v2_58", "v2_60", "v2_62", "v2_64", "v2_66", "v2_68", "v2_70", "v2_72", "v2_74", "v2_76", "v2_78", "v2_80", "v2_82", "v2_84"))' -C metadata=db651cf237aeebb6 -C extra-filename=-db651cf237aeebb6 --out-dir /tmp/tmp.cy4zYrLhIY/target/debug/build/gio-sys-db651cf237aeebb6 -L dependency=/tmp/tmp.cy4zYrLhIY/target/debug/deps --extern system_deps=/tmp/tmp.cy4zYrLhIY/target/debug/deps/libsystem_deps-df5512f70260f2a1.rlib --cap-lints warn` 288s warning: `gobject-sys` (lib) generated 1 warning (1 duplicate) 288s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=slab CARGO_MANIFEST_DIR=/tmp/tmp.cy4zYrLhIY/registry/slab-0.4.9 CARGO_MANIFEST_PATH=/tmp/tmp.cy4zYrLhIY/registry/slab-0.4.9/Cargo.toml CARGO_PKG_AUTHORS='Carl Lerche ' CARGO_PKG_DESCRIPTION='Pre-allocated storage for a uniform data type' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=slab CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/tokio-rs/slab' CARGO_PKG_RUST_VERSION=1.31 CARGO_PKG_VERSION=0.4.9 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=4 CARGO_PKG_VERSION_PATCH=9 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.cy4zYrLhIY/target/debug/deps OUT_DIR=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/build/slab-2c89ee66d35953a1/out rustc --crate-name slab --edition=2018 /tmp/tmp.cy4zYrLhIY/registry/slab-0.4.9/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "serde", "std"))' -C metadata=36320af34be0827b -C extra-filename=-36320af34be0827b --out-dir /tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.cy4zYrLhIY/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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.cy4zYrLhIY/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 288s warning: unexpected `cfg` condition name: `slab_no_const_vec_new` 288s --> /usr/share/cargo/registry/slab-0.4.9/src/lib.rs:250:15 288s | 288s 250 | #[cfg(not(slab_no_const_vec_new))] 288s | ^^^^^^^^^^^^^^^^^^^^^ 288s | 288s = help: expected names are: `clippy`, `debug_assertions`, `doc`, `docsrs`, `doctest`, `feature`, `fmt_debug`, `miri`, `overflow_checks`, `panic`, `proc_macro`, `relocation_model`, `rustfmt`, `sanitize`, `sanitizer_cfi_generalize_pointers`, `sanitizer_cfi_normalize_integers`, `target_abi`, `target_arch`, `target_endian`, `target_env`, `target_family`, `target_feature`, `target_has_atomic`, `target_has_atomic_equal_alignment`, `target_has_atomic_load_store`, `target_os`, `target_pointer_width`, `target_thread_local`, `target_vendor`, `test`, `ub_checks`, `unix`, and `windows` 288s = help: consider using a Cargo feature instead 288s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 288s [lints.rust] 288s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(slab_no_const_vec_new)'] } 288s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(slab_no_const_vec_new)");` to the top of the `build.rs` 288s = note: see for more information about checking conditional configuration 288s = note: `#[warn(unexpected_cfgs)]` on by default 288s 288s warning: unexpected `cfg` condition name: `slab_no_const_vec_new` 288s --> /usr/share/cargo/registry/slab-0.4.9/src/lib.rs:264:11 288s | 288s 264 | #[cfg(slab_no_const_vec_new)] 288s | ^^^^^^^^^^^^^^^^^^^^^ 288s | 288s = help: consider using a Cargo feature instead 288s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 288s [lints.rust] 288s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(slab_no_const_vec_new)'] } 288s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(slab_no_const_vec_new)");` to the top of the `build.rs` 288s = note: see for more information about checking conditional configuration 288s 288s warning: unexpected `cfg` condition name: `slab_no_track_caller` 288s --> /usr/share/cargo/registry/slab-0.4.9/src/lib.rs:929:20 288s | 288s 929 | #[cfg_attr(not(slab_no_track_caller), track_caller)] 288s | ^^^^^^^^^^^^^^^^^^^^ 288s | 288s = help: consider using a Cargo feature instead 288s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 288s [lints.rust] 288s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(slab_no_track_caller)'] } 288s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(slab_no_track_caller)");` to the top of the `build.rs` 288s = note: see for more information about checking conditional configuration 288s 288s warning: unexpected `cfg` condition name: `slab_no_track_caller` 288s --> /usr/share/cargo/registry/slab-0.4.9/src/lib.rs:1098:20 288s | 288s 1098 | #[cfg_attr(not(slab_no_track_caller), track_caller)] 288s | ^^^^^^^^^^^^^^^^^^^^ 288s | 288s = help: consider using a Cargo feature instead 288s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 288s [lints.rust] 288s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(slab_no_track_caller)'] } 288s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(slab_no_track_caller)");` to the top of the `build.rs` 288s = note: see for more information about checking conditional configuration 288s 288s warning: unexpected `cfg` condition name: `slab_no_track_caller` 288s --> /usr/share/cargo/registry/slab-0.4.9/src/lib.rs:1206:20 288s | 288s 1206 | #[cfg_attr(not(slab_no_track_caller), track_caller)] 288s | ^^^^^^^^^^^^^^^^^^^^ 288s | 288s = help: consider using a Cargo feature instead 288s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 288s [lints.rust] 288s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(slab_no_track_caller)'] } 288s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(slab_no_track_caller)");` to the top of the `build.rs` 288s = note: see for more information about checking conditional configuration 288s 288s warning: unexpected `cfg` condition name: `slab_no_track_caller` 288s --> /usr/share/cargo/registry/slab-0.4.9/src/lib.rs:1216:20 288s | 288s 1216 | #[cfg_attr(not(slab_no_track_caller), track_caller)] 288s | ^^^^^^^^^^^^^^^^^^^^ 288s | 288s = help: consider using a Cargo feature instead 288s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 288s [lints.rust] 288s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(slab_no_track_caller)'] } 288s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(slab_no_track_caller)");` to the top of the `build.rs` 288s = note: see for more information about checking conditional configuration 288s 288s warning: `slab` (lib) generated 7 warnings (1 duplicate) 288s Compiling futures-macro v0.3.31 288s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=futures_macro CARGO_MANIFEST_DIR=/tmp/tmp.cy4zYrLhIY/registry/futures-macro-0.3.31 CARGO_MANIFEST_PATH=/tmp/tmp.cy4zYrLhIY/registry/futures-macro-0.3.31/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='The futures-rs procedural macro implementations. 288s ' CARGO_PKG_HOMEPAGE='https://rust-lang.github.io/futures-rs' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=futures-macro CARGO_PKG_README='' CARGO_PKG_REPOSITORY='https://github.com/rust-lang/futures-rs' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=0.3.31 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=31 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.cy4zYrLhIY/target/debug/deps rustc --crate-name futures_macro --edition=2018 /tmp/tmp.cy4zYrLhIY/registry/futures-macro-0.3.31/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type proc-macro --emit=dep-info,link -C prefer-dynamic -C embed-bitcode=no -C debuginfo=2 --warn=unreachable_pub --warn=unexpected_cfgs --warn=single_use_lifetimes --warn=rust_2018_idioms --warn=missing_debug_implementations --check-cfg 'cfg(futures_sanitizer)' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=4cace2739cb7abd5 -C extra-filename=-4cace2739cb7abd5 --out-dir /tmp/tmp.cy4zYrLhIY/target/debug/deps -L dependency=/tmp/tmp.cy4zYrLhIY/target/debug/deps --extern proc_macro2=/tmp/tmp.cy4zYrLhIY/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rlib --extern quote=/tmp/tmp.cy4zYrLhIY/target/debug/deps/libquote-dc92c6f25ee0f0c6.rlib --extern syn=/tmp/tmp.cy4zYrLhIY/target/debug/deps/libsyn-0167beed9e699402.rlib --extern proc_macro --cap-lints warn` 288s 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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0--remap-path-prefix/tmp/tmp.cy4zYrLhIY/registry=/usr/share/cargo/registry-Ctarget-feature=+backchain' CARGO_FEATURE_V2_58=1 CARGO_FEATURE_V2_60=1 CARGO_FEATURE_V2_62=1 CARGO_FEATURE_V2_64=1 CARGO_FEATURE_V2_66=1 CARGO_MANIFEST_DIR=/tmp/tmp.cy4zYrLhIY/registry/gio-sys-0.20.8 CARGO_MANIFEST_PATH=/tmp/tmp.cy4zYrLhIY/registry/gio-sys-0.20.8/Cargo.toml CARGO_PKG_AUTHORS='The gtk-rs Project Developers' CARGO_PKG_DESCRIPTION='FFI bindings to libgio-2.0' CARGO_PKG_HOMEPAGE='https://gtk-rs.org/' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=gio-sys CARGO_PKG_README='' CARGO_PKG_REPOSITORY='https://github.com/gtk-rs/gtk-rs-core' CARGO_PKG_RUST_VERSION=1.70 CARGO_PKG_VERSION=0.20.8 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=20 CARGO_PKG_VERSION_PATCH=8 CARGO_PKG_VERSION_PRE='' DEBUG=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.cy4zYrLhIY/target/debug/deps:/tmp/tmp.cy4zYrLhIY/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/build/gio-sys-1747225389f06909/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.cy4zYrLhIY/target/debug/build/gio-sys-db651cf237aeebb6/build-script-build` 288s [gio-sys 0.20.8] cargo:rerun-if-changed=/tmp/tmp.cy4zYrLhIY/registry/gio-sys-0.20.8/Cargo.toml 288s [gio-sys 0.20.8] cargo:rerun-if-env-changed=GIO_2.0_NO_PKG_CONFIG 288s [gio-sys 0.20.8] cargo:rerun-if-env-changed=PKG_CONFIG_s390x-unknown-linux-gnu 288s [gio-sys 0.20.8] cargo:rerun-if-env-changed=PKG_CONFIG_s390x_unknown_linux_gnu 288s [gio-sys 0.20.8] cargo:rerun-if-env-changed=HOST_PKG_CONFIG 288s [gio-sys 0.20.8] cargo:rerun-if-env-changed=PKG_CONFIG 288s [gio-sys 0.20.8] cargo:rerun-if-env-changed=DEB_HOST_GNU_TYPE 288s [gio-sys 0.20.8] cargo:rerun-if-env-changed=PKG_CONFIG_PATH_s390x-unknown-linux-gnu 288s [gio-sys 0.20.8] cargo:rerun-if-env-changed=PKG_CONFIG_PATH_s390x_unknown_linux_gnu 288s [gio-sys 0.20.8] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_PATH 288s [gio-sys 0.20.8] cargo:rerun-if-env-changed=PKG_CONFIG_PATH 288s [gio-sys 0.20.8] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR_s390x-unknown-linux-gnu 288s [gio-sys 0.20.8] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR_s390x_unknown_linux_gnu 288s [gio-sys 0.20.8] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_LIBDIR 288s [gio-sys 0.20.8] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR 288s [gio-sys 0.20.8] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR_s390x-unknown-linux-gnu 288s [gio-sys 0.20.8] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR_s390x_unknown_linux_gnu 288s [gio-sys 0.20.8] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_SYSROOT_DIR 288s [gio-sys 0.20.8] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR 288s [gio-sys 0.20.8] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR 288s [gio-sys 0.20.8] cargo:rerun-if-env-changed=SYSROOT 288s [gio-sys 0.20.8] cargo:rerun-if-env-changed=PKG_CONFIG_s390x-unknown-linux-gnu 288s [gio-sys 0.20.8] cargo:rerun-if-env-changed=PKG_CONFIG_s390x_unknown_linux_gnu 288s [gio-sys 0.20.8] cargo:rerun-if-env-changed=HOST_PKG_CONFIG 288s [gio-sys 0.20.8] cargo:rerun-if-env-changed=PKG_CONFIG 288s [gio-sys 0.20.8] cargo:rerun-if-env-changed=DEB_HOST_GNU_TYPE 288s [gio-sys 0.20.8] cargo:rerun-if-env-changed=PKG_CONFIG_PATH_s390x-unknown-linux-gnu 288s [gio-sys 0.20.8] cargo:rerun-if-env-changed=PKG_CONFIG_PATH_s390x_unknown_linux_gnu 288s [gio-sys 0.20.8] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_PATH 288s [gio-sys 0.20.8] cargo:rerun-if-env-changed=PKG_CONFIG_PATH 288s [gio-sys 0.20.8] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR_s390x-unknown-linux-gnu 288s [gio-sys 0.20.8] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR_s390x_unknown_linux_gnu 288s [gio-sys 0.20.8] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_LIBDIR 288s [gio-sys 0.20.8] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR 288s [gio-sys 0.20.8] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR_s390x-unknown-linux-gnu 288s [gio-sys 0.20.8] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR_s390x_unknown_linux_gnu 288s [gio-sys 0.20.8] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_SYSROOT_DIR 288s [gio-sys 0.20.8] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR 288s [gio-sys 0.20.8] cargo:rustc-link-lib=gio-2.0 288s [gio-sys 0.20.8] cargo:rustc-link-lib=gobject-2.0 288s [gio-sys 0.20.8] cargo:rustc-link-lib=glib-2.0 288s [gio-sys 0.20.8] cargo:include=/usr/include:/usr/include/glib-2.0:/usr/lib/s390x-linux-gnu/glib-2.0/include:/usr/include/sysprof-6:/usr/include/libmount:/usr/include/blkid 288s [gio-sys 0.20.8] cargo:rerun-if-env-changed=SYSTEM_DEPS_BUILD_INTERNAL 288s [gio-sys 0.20.8] cargo:rerun-if-env-changed=SYSTEM_DEPS_LINK 288s [gio-sys 0.20.8] cargo:rerun-if-env-changed=SYSTEM_DEPS_GIO_2_0_LIB 288s [gio-sys 0.20.8] cargo:rerun-if-env-changed=SYSTEM_DEPS_GIO_2_0_LIB_FRAMEWORK 288s [gio-sys 0.20.8] cargo:rerun-if-env-changed=SYSTEM_DEPS_GIO_2_0_SEARCH_NATIVE 288s [gio-sys 0.20.8] cargo:rerun-if-env-changed=SYSTEM_DEPS_GIO_2_0_SEARCH_FRAMEWORK 288s [gio-sys 0.20.8] cargo:rerun-if-env-changed=SYSTEM_DEPS_GIO_2_0_INCLUDE 288s [gio-sys 0.20.8] cargo:rerun-if-env-changed=SYSTEM_DEPS_GIO_2_0_LDFLAGS 288s [gio-sys 0.20.8] cargo:rerun-if-env-changed=SYSTEM_DEPS_GIO_2_0_NO_PKG_CONFIG 288s [gio-sys 0.20.8] cargo:rerun-if-env-changed=SYSTEM_DEPS_GIO_2_0_BUILD_INTERNAL 288s [gio-sys 0.20.8] cargo:rerun-if-env-changed=SYSTEM_DEPS_GIO_2_0_LINK 288s [gio-sys 0.20.8] 288s [gio-sys 0.20.8] cargo:rustc-cfg=system_deps_have_gio_2_0 288s Compiling futures-task v0.3.31 288s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=futures_task CARGO_MANIFEST_DIR=/tmp/tmp.cy4zYrLhIY/registry/futures-task-0.3.31 CARGO_MANIFEST_PATH=/tmp/tmp.cy4zYrLhIY/registry/futures-task-0.3.31/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='Tools for working with tasks. 288s ' CARGO_PKG_HOMEPAGE='https://rust-lang.github.io/futures-rs' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=futures-task CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/futures-rs' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=0.3.31 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=31 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.cy4zYrLhIY/target/debug/deps rustc --crate-name futures_task --edition=2018 /tmp/tmp.cy4zYrLhIY/registry/futures-task-0.3.31/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --warn=unreachable_pub --warn=unexpected_cfgs --warn=single_use_lifetimes --warn=rust_2018_idioms --warn=missing_debug_implementations --check-cfg 'cfg(futures_sanitizer)' --cfg 'feature="alloc"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "cfg-target-has-atomic", "default", "std", "unstable"))' -C metadata=47c3a7d17767e18f -C extra-filename=-47c3a7d17767e18f --out-dir /tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.cy4zYrLhIY/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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.cy4zYrLhIY/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 288s warning: `futures-task` (lib) generated 1 warning (1 duplicate) 288s Compiling pin-utils v0.1.0 288s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=pin_utils CARGO_MANIFEST_DIR=/tmp/tmp.cy4zYrLhIY/registry/pin-utils-0.1.0 CARGO_MANIFEST_PATH=/tmp/tmp.cy4zYrLhIY/registry/pin-utils-0.1.0/Cargo.toml CARGO_PKG_AUTHORS='Josef Brandl ' CARGO_PKG_DESCRIPTION='Utilities for pinning 288s ' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=pin-utils CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang-nursery/pin-utils' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.1.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.cy4zYrLhIY/target/debug/deps rustc --crate-name pin_utils --edition=2018 /tmp/tmp.cy4zYrLhIY/registry/pin-utils-0.1.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=9646380a39f6bb39 -C extra-filename=-9646380a39f6bb39 --out-dir /tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.cy4zYrLhIY/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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.cy4zYrLhIY/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 288s warning: `pin-utils` (lib) generated 1 warning (1 duplicate) 288s Compiling futures-sink v0.3.31 288s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=futures_sink CARGO_MANIFEST_DIR=/tmp/tmp.cy4zYrLhIY/registry/futures-sink-0.3.31 CARGO_MANIFEST_PATH=/tmp/tmp.cy4zYrLhIY/registry/futures-sink-0.3.31/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='The asynchronous `Sink` trait for the futures-rs library. 288s ' CARGO_PKG_HOMEPAGE='https://rust-lang.github.io/futures-rs' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=futures-sink CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/futures-rs' CARGO_PKG_RUST_VERSION=1.36 CARGO_PKG_VERSION=0.3.31 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=31 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.cy4zYrLhIY/target/debug/deps rustc --crate-name futures_sink --edition=2018 /tmp/tmp.cy4zYrLhIY/registry/futures-sink-0.3.31/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --warn=unreachable_pub --warn=unexpected_cfgs --warn=single_use_lifetimes --warn=rust_2018_idioms --warn=missing_debug_implementations --check-cfg 'cfg(futures_sanitizer)' --cfg 'feature="alloc"' --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "default", "std"))' -C metadata=2335bc9d806f8753 -C extra-filename=-2335bc9d806f8753 --out-dir /tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.cy4zYrLhIY/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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.cy4zYrLhIY/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 289s warning: `futures-sink` (lib) generated 1 warning (1 duplicate) 289s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=gio_sys CARGO_MANIFEST_DIR=/tmp/tmp.cy4zYrLhIY/registry/gio-sys-0.20.8 CARGO_MANIFEST_PATH=/tmp/tmp.cy4zYrLhIY/registry/gio-sys-0.20.8/Cargo.toml CARGO_PKG_AUTHORS='The gtk-rs Project Developers' CARGO_PKG_DESCRIPTION='FFI bindings to libgio-2.0' CARGO_PKG_HOMEPAGE='https://gtk-rs.org/' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=gio-sys CARGO_PKG_README='' CARGO_PKG_REPOSITORY='https://github.com/gtk-rs/gtk-rs-core' CARGO_PKG_RUST_VERSION=1.70 CARGO_PKG_VERSION=0.20.8 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=20 CARGO_PKG_VERSION_PATCH=8 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.cy4zYrLhIY/target/debug/deps OUT_DIR=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/build/gio-sys-1747225389f06909/out rustc --crate-name gio_sys --edition=2021 /tmp/tmp.cy4zYrLhIY/registry/gio-sys-0.20.8/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="v2_58"' --cfg 'feature="v2_60"' --cfg 'feature="v2_62"' --cfg 'feature="v2_64"' --cfg 'feature="v2_66"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("v2_58", "v2_60", "v2_62", "v2_64", "v2_66", "v2_68", "v2_70", "v2_72", "v2_74", "v2_76", "v2_78", "v2_80", "v2_82", "v2_84"))' -C metadata=09c58e200e125269 -C extra-filename=-09c58e200e125269 --out-dir /tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.cy4zYrLhIY/target/debug/deps --extern glib_sys=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps/libglib_sys-8d7612a6c3ae820a.rmeta --extern gobject_sys=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps/libgobject_sys-c41d1b14aec65cc2.rmeta --extern libc=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps/liblibc-cf2521928ac070dc.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.cy4zYrLhIY/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain -l gio-2.0 -l gobject-2.0 -l glib-2.0 --cfg system_deps_have_gio_2_0` 289s Compiling futures-util v0.3.31 289s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=futures_util CARGO_MANIFEST_DIR=/tmp/tmp.cy4zYrLhIY/registry/futures-util-0.3.31 CARGO_MANIFEST_PATH=/tmp/tmp.cy4zYrLhIY/registry/futures-util-0.3.31/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='Common utilities and extension traits for the futures-rs library. 289s ' CARGO_PKG_HOMEPAGE='https://rust-lang.github.io/futures-rs' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=futures-util CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/futures-rs' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=0.3.31 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=31 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.cy4zYrLhIY/target/debug/deps rustc --crate-name futures_util --edition=2018 /tmp/tmp.cy4zYrLhIY/registry/futures-util-0.3.31/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --warn=unreachable_pub --warn=unexpected_cfgs --warn=single_use_lifetimes --warn=rust_2018_idioms --warn=missing_debug_implementations --check-cfg 'cfg(futures_sanitizer)' --cfg 'feature="alloc"' --cfg 'feature="async-await"' --cfg 'feature="async-await-macro"' --cfg 'feature="default"' --cfg 'feature="futures-macro"' --cfg 'feature="futures-sink"' --cfg 'feature="sink"' --cfg 'feature="slab"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "async-await", "async-await-macro", "bilock", "channel", "default", "futures-channel", "futures-io", "futures-macro", "futures-sink", "io", "memchr", "sink", "slab", "std", "unstable", "write-all-vectored"))' -C metadata=23beed03671fe7d3 -C extra-filename=-23beed03671fe7d3 --out-dir /tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.cy4zYrLhIY/target/debug/deps --extern futures_core=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps/libfutures_core-8d305950da6bf5c8.rmeta --extern futures_macro=/tmp/tmp.cy4zYrLhIY/target/debug/deps/libfutures_macro-4cace2739cb7abd5.so --extern futures_sink=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps/libfutures_sink-2335bc9d806f8753.rmeta --extern futures_task=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps/libfutures_task-47c3a7d17767e18f.rmeta --extern pin_project_lite=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps/libpin_project_lite-5dc815523e98d889.rmeta --extern pin_utils=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps/libpin_utils-9646380a39f6bb39.rmeta --extern slab=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps/libslab-36320af34be0827b.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.cy4zYrLhIY/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 290s warning: unexpected `cfg` condition value: `compat` 290s --> /usr/share/cargo/registry/futures-util-0.3.31/src/lib.rs:308:7 290s | 290s 308 | #[cfg(feature = "compat")] 290s | ^^^^^^^^^^^^^^^^^^ 290s | 290s = note: expected values for `feature` are: `alloc`, `async-await`, `async-await-macro`, `bilock`, `channel`, `default`, `futures-channel`, `futures-io`, `futures-macro`, `futures-sink`, `io`, `memchr`, `sink`, `slab`, `std`, `unstable`, and `write-all-vectored` 290s = help: consider adding `compat` as a feature in `Cargo.toml` 290s = note: see for more information about checking conditional configuration 290s = note: requested on the command line with `-W unexpected-cfgs` 290s 290s warning: unexpected `cfg` condition value: `compat` 290s --> /usr/share/cargo/registry/futures-util-0.3.31/src/future/try_future/mod.rs:6:7 290s | 290s 6 | #[cfg(feature = "compat")] 290s | ^^^^^^^^^^^^^^^^^^ 290s | 290s = note: expected values for `feature` are: `alloc`, `async-await`, `async-await-macro`, `bilock`, `channel`, `default`, `futures-channel`, `futures-io`, `futures-macro`, `futures-sink`, `io`, `memchr`, `sink`, `slab`, `std`, `unstable`, and `write-all-vectored` 290s = help: consider adding `compat` as a feature in `Cargo.toml` 290s = note: see for more information about checking conditional configuration 290s 290s warning: unexpected `cfg` condition value: `compat` 290s --> /usr/share/cargo/registry/futures-util-0.3.31/src/future/try_future/mod.rs:580:11 290s | 290s 580 | #[cfg(feature = "compat")] 290s | ^^^^^^^^^^^^^^^^^^ 290s | 290s = note: expected values for `feature` are: `alloc`, `async-await`, `async-await-macro`, `bilock`, `channel`, `default`, `futures-channel`, `futures-io`, `futures-macro`, `futures-sink`, `io`, `memchr`, `sink`, `slab`, `std`, `unstable`, and `write-all-vectored` 290s = help: consider adding `compat` as a feature in `Cargo.toml` 290s = note: see for more information about checking conditional configuration 290s 290s warning: unexpected `cfg` condition value: `compat` 290s --> /usr/share/cargo/registry/futures-util-0.3.31/src/stream/try_stream/mod.rs:6:7 290s | 290s 6 | #[cfg(feature = "compat")] 290s | ^^^^^^^^^^^^^^^^^^ 290s | 290s = note: expected values for `feature` are: `alloc`, `async-await`, `async-await-macro`, `bilock`, `channel`, `default`, `futures-channel`, `futures-io`, `futures-macro`, `futures-sink`, `io`, `memchr`, `sink`, `slab`, `std`, `unstable`, and `write-all-vectored` 290s = help: consider adding `compat` as a feature in `Cargo.toml` 290s = note: see for more information about checking conditional configuration 290s 290s warning: unexpected `cfg` condition value: `compat` 290s --> /usr/share/cargo/registry/futures-util-0.3.31/src/stream/try_stream/mod.rs:1154:11 290s | 290s 1154 | #[cfg(feature = "compat")] 290s | ^^^^^^^^^^^^^^^^^^ 290s | 290s = note: expected values for `feature` are: `alloc`, `async-await`, `async-await-macro`, `bilock`, `channel`, `default`, `futures-channel`, `futures-io`, `futures-macro`, `futures-sink`, `io`, `memchr`, `sink`, `slab`, `std`, `unstable`, and `write-all-vectored` 290s = help: consider adding `compat` as a feature in `Cargo.toml` 290s = note: see for more information about checking conditional configuration 290s 290s warning: unexpected `cfg` condition value: `compat` 290s --> /usr/share/cargo/registry/futures-util-0.3.31/src/sink/mod.rs:15:7 290s | 290s 15 | #[cfg(feature = "compat")] 290s | ^^^^^^^^^^^^^^^^^^ 290s | 290s = note: expected values for `feature` are: `alloc`, `async-await`, `async-await-macro`, `bilock`, `channel`, `default`, `futures-channel`, `futures-io`, `futures-macro`, `futures-sink`, `io`, `memchr`, `sink`, `slab`, `std`, `unstable`, and `write-all-vectored` 290s = help: consider adding `compat` as a feature in `Cargo.toml` 290s = note: see for more information about checking conditional configuration 290s 290s warning: unexpected `cfg` condition value: `compat` 290s --> /usr/share/cargo/registry/futures-util-0.3.31/src/sink/mod.rs:291:11 290s | 290s 291 | #[cfg(feature = "compat")] 290s | ^^^^^^^^^^^^^^^^^^ 290s | 290s = note: expected values for `feature` are: `alloc`, `async-await`, `async-await-macro`, `bilock`, `channel`, `default`, `futures-channel`, `futures-io`, `futures-macro`, `futures-sink`, `io`, `memchr`, `sink`, `slab`, `std`, `unstable`, and `write-all-vectored` 290s = help: consider adding `compat` as a feature in `Cargo.toml` 290s = note: see for more information about checking conditional configuration 290s 290s warning: unexpected `cfg` condition value: `compat` 290s --> /usr/share/cargo/registry/futures-util-0.3.31/src/task/spawn.rs:3:7 290s | 290s 3 | #[cfg(feature = "compat")] 290s | ^^^^^^^^^^^^^^^^^^ 290s | 290s = note: expected values for `feature` are: `alloc`, `async-await`, `async-await-macro`, `bilock`, `channel`, `default`, `futures-channel`, `futures-io`, `futures-macro`, `futures-sink`, `io`, `memchr`, `sink`, `slab`, `std`, `unstable`, and `write-all-vectored` 290s = help: consider adding `compat` as a feature in `Cargo.toml` 290s = note: see for more information about checking conditional configuration 290s 290s warning: unexpected `cfg` condition value: `compat` 290s --> /usr/share/cargo/registry/futures-util-0.3.31/src/task/spawn.rs:92:11 290s | 290s 92 | #[cfg(feature = "compat")] 290s | ^^^^^^^^^^^^^^^^^^ 290s | 290s = note: expected values for `feature` are: `alloc`, `async-await`, `async-await-macro`, `bilock`, `channel`, `default`, `futures-channel`, `futures-io`, `futures-macro`, `futures-sink`, `io`, `memchr`, `sink`, `slab`, `std`, `unstable`, and `write-all-vectored` 290s = help: consider adding `compat` as a feature in `Cargo.toml` 290s = note: see for more information about checking conditional configuration 290s 290s warning: `gio-sys` (lib) generated 1 warning (1 duplicate) 290s Compiling typenum v1.17.0 290s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_main CARGO_MANIFEST_DIR=/tmp/tmp.cy4zYrLhIY/registry/typenum-1.17.0 CARGO_MANIFEST_PATH=/tmp/tmp.cy4zYrLhIY/registry/typenum-1.17.0/Cargo.toml CARGO_PKG_AUTHORS='Paho Lurie-Gregg :Andre Bogus ' CARGO_PKG_DESCRIPTION='Typenum is a Rust library for type-level numbers evaluated at 290s compile time. It currently supports bits, unsigned integers, and signed 290s integers. It also provides a type-level array of type-level numbers, but its 290s implementation is incomplete.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=typenum CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/paholg/typenum' CARGO_PKG_RUST_VERSION=1.37.0 CARGO_PKG_VERSION=1.17.0 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=17 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.cy4zYrLhIY/target/debug/deps rustc --crate-name build_script_main --edition=2018 /tmp/tmp.cy4zYrLhIY/registry/typenum-1.17.0/build/main.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("const-generics", "force_unix_path_separator", "i128", "no_std", "strict"))' -C metadata=ef2812a6bded5202 -C extra-filename=-ef2812a6bded5202 --out-dir /tmp/tmp.cy4zYrLhIY/target/debug/build/typenum-ef2812a6bded5202 -L dependency=/tmp/tmp.cy4zYrLhIY/target/debug/deps --cap-lints warn` 291s Compiling version_check v0.9.5 291s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=version_check CARGO_MANIFEST_DIR=/tmp/tmp.cy4zYrLhIY/registry/version_check-0.9.5 CARGO_MANIFEST_PATH=/tmp/tmp.cy4zYrLhIY/registry/version_check-0.9.5/Cargo.toml CARGO_PKG_AUTHORS='Sergio Benitez ' CARGO_PKG_DESCRIPTION='Tiny crate to check the version of the installed/running rustc.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=version_check CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/SergioBenitez/version_check' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.9.5 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=9 CARGO_PKG_VERSION_PATCH=5 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.cy4zYrLhIY/target/debug/deps rustc --crate-name version_check --edition=2015 /tmp/tmp.cy4zYrLhIY/registry/version_check-0.9.5/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=20e83cdf64ec3211 -C extra-filename=-20e83cdf64ec3211 --out-dir /tmp/tmp.cy4zYrLhIY/target/debug/deps -L dependency=/tmp/tmp.cy4zYrLhIY/target/debug/deps --cap-lints warn` 291s Compiling bitflags v2.8.0 291s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=bitflags CARGO_MANIFEST_DIR=/tmp/tmp.cy4zYrLhIY/registry/bitflags-2.8.0 CARGO_MANIFEST_PATH=/tmp/tmp.cy4zYrLhIY/registry/bitflags-2.8.0/Cargo.toml CARGO_PKG_AUTHORS='The Rust Project Developers' CARGO_PKG_DESCRIPTION='A macro to generate structures which behave like bitflags. 291s ' CARGO_PKG_HOMEPAGE='https://github.com/bitflags/bitflags' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=bitflags CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/bitflags/bitflags' CARGO_PKG_RUST_VERSION=1.56.0 CARGO_PKG_VERSION=2.8.0 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=8 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.cy4zYrLhIY/target/debug/deps rustc --crate-name bitflags --edition=2021 /tmp/tmp.cy4zYrLhIY/registry/bitflags-2.8.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("arbitrary", "bytemuck", "compiler_builtins", "core", "example_generated", "rustc-dep-of-std", "serde", "std"))' -C metadata=4b295667124b9dc6 -C extra-filename=-4b295667124b9dc6 --out-dir /tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.cy4zYrLhIY/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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.cy4zYrLhIY/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 291s warning: `bitflags` (lib) generated 1 warning (1 duplicate) 291s Compiling generic-array v0.14.7 291s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.cy4zYrLhIY/registry/generic-array-0.14.7 CARGO_MANIFEST_PATH=/tmp/tmp.cy4zYrLhIY/registry/generic-array-0.14.7/Cargo.toml CARGO_PKG_AUTHORS='Bartłomiej Kamiński :Aaron Trent ' CARGO_PKG_DESCRIPTION='Generic types implementing functionality of arrays' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=generic-array CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/fizyk20/generic-array.git' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.14.7 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=14 CARGO_PKG_VERSION_PATCH=7 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.cy4zYrLhIY/target/debug/deps rustc --crate-name build_script_build --edition=2015 /tmp/tmp.cy4zYrLhIY/registry/generic-array-0.14.7/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="more_lengths"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("more_lengths", "serde", "zeroize"))' -C metadata=160edb9b35222b14 -C extra-filename=-160edb9b35222b14 --out-dir /tmp/tmp.cy4zYrLhIY/target/debug/build/generic-array-160edb9b35222b14 -L dependency=/tmp/tmp.cy4zYrLhIY/target/debug/deps --extern version_check=/tmp/tmp.cy4zYrLhIY/target/debug/deps/libversion_check-20e83cdf64ec3211.rlib --cap-lints warn` 291s warning: `futures-util` (lib) generated 10 warnings (1 duplicate) 291s 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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0--remap-path-prefix/tmp/tmp.cy4zYrLhIY/registry=/usr/share/cargo/registry-Ctarget-feature=+backchain' CARGO_MANIFEST_DIR=/tmp/tmp.cy4zYrLhIY/registry/typenum-1.17.0 CARGO_MANIFEST_PATH=/tmp/tmp.cy4zYrLhIY/registry/typenum-1.17.0/Cargo.toml CARGO_PKG_AUTHORS='Paho Lurie-Gregg :Andre Bogus ' CARGO_PKG_DESCRIPTION='Typenum is a Rust library for type-level numbers evaluated at 291s compile time. It currently supports bits, unsigned integers, and signed 291s integers. It also provides a type-level array of type-level numbers, but its 291s implementation is incomplete.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=typenum CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/paholg/typenum' CARGO_PKG_RUST_VERSION=1.37.0 CARGO_PKG_VERSION=1.17.0 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=17 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' DEBUG=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.cy4zYrLhIY/target/debug/deps:/tmp/tmp.cy4zYrLhIY/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/build/typenum-b1daa52c37018028/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.cy4zYrLhIY/target/debug/build/typenum-ef2812a6bded5202/build-script-main` 291s [typenum 1.17.0] cargo:rerun-if-changed=build/main.rs 291s Compiling cfg-if v1.0.0 291s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=cfg_if CARGO_MANIFEST_DIR=/tmp/tmp.cy4zYrLhIY/registry/cfg-if-1.0.0 CARGO_MANIFEST_PATH=/tmp/tmp.cy4zYrLhIY/registry/cfg-if-1.0.0/Cargo.toml CARGO_PKG_AUTHORS='Alex Crichton ' CARGO_PKG_DESCRIPTION='A macro to ergonomically define an item depending on a large number of #[cfg] 291s parameters. Structured like an if-else chain, the first matching branch is the 291s item that gets emitted. 291s ' CARGO_PKG_HOMEPAGE='https://github.com/alexcrichton/cfg-if' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=cfg-if CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/alexcrichton/cfg-if' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=1.0.0 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.cy4zYrLhIY/target/debug/deps rustc --crate-name cfg_if --edition=2018 /tmp/tmp.cy4zYrLhIY/registry/cfg-if-1.0.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("core"))' -C metadata=ff3ff84a061de73f -C extra-filename=-ff3ff84a061de73f --out-dir /tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.cy4zYrLhIY/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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.cy4zYrLhIY/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 291s warning: `cfg-if` (lib) generated 1 warning (1 duplicate) 291s Compiling crossbeam-utils v0.8.19 291s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.cy4zYrLhIY/registry/crossbeam-utils-0.8.19 CARGO_MANIFEST_PATH=/tmp/tmp.cy4zYrLhIY/registry/crossbeam-utils-0.8.19/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='Utilities for concurrent programming' CARGO_PKG_HOMEPAGE='https://github.com/crossbeam-rs/crossbeam/tree/master/crossbeam-utils' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=crossbeam-utils CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/crossbeam-rs/crossbeam' CARGO_PKG_RUST_VERSION=1.60 CARGO_PKG_VERSION=0.8.19 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=8 CARGO_PKG_VERSION_PATCH=19 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.cy4zYrLhIY/target/debug/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.cy4zYrLhIY/registry/crossbeam-utils-0.8.19/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "nightly", "std"))' -C metadata=481d5baddd087d3b -C extra-filename=-481d5baddd087d3b --out-dir /tmp/tmp.cy4zYrLhIY/target/debug/build/crossbeam-utils-481d5baddd087d3b -L dependency=/tmp/tmp.cy4zYrLhIY/target/debug/deps --cap-lints warn` 291s 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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0--remap-path-prefix/tmp/tmp.cy4zYrLhIY/registry=/usr/share/cargo/registry-Ctarget-feature=+backchain' CARGO_FEATURE_MORE_LENGTHS=1 CARGO_MANIFEST_DIR=/tmp/tmp.cy4zYrLhIY/registry/generic-array-0.14.7 CARGO_MANIFEST_PATH=/tmp/tmp.cy4zYrLhIY/registry/generic-array-0.14.7/Cargo.toml CARGO_PKG_AUTHORS='Bartłomiej Kamiński :Aaron Trent ' CARGO_PKG_DESCRIPTION='Generic types implementing functionality of arrays' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=generic-array CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/fizyk20/generic-array.git' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.14.7 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=14 CARGO_PKG_VERSION_PATCH=7 CARGO_PKG_VERSION_PRE='' DEBUG=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.cy4zYrLhIY/target/debug/deps:/tmp/tmp.cy4zYrLhIY/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/build/generic-array-da8fba9a25807be8/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.cy4zYrLhIY/target/debug/build/generic-array-160edb9b35222b14/build-script-build` 291s [generic-array 0.14.7] cargo:rustc-cfg=relaxed_coherence 291s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=typenum CARGO_MANIFEST_DIR=/tmp/tmp.cy4zYrLhIY/registry/typenum-1.17.0 CARGO_MANIFEST_PATH=/tmp/tmp.cy4zYrLhIY/registry/typenum-1.17.0/Cargo.toml CARGO_PKG_AUTHORS='Paho Lurie-Gregg :Andre Bogus ' CARGO_PKG_DESCRIPTION='Typenum is a Rust library for type-level numbers evaluated at 291s compile time. It currently supports bits, unsigned integers, and signed 291s integers. It also provides a type-level array of type-level numbers, but its 291s implementation is incomplete.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=typenum CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/paholg/typenum' CARGO_PKG_RUST_VERSION=1.37.0 CARGO_PKG_VERSION=1.17.0 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=17 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.cy4zYrLhIY/target/debug/deps OUT_DIR=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/build/typenum-b1daa52c37018028/out rustc --crate-name typenum --edition=2018 /tmp/tmp.cy4zYrLhIY/registry/typenum-1.17.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("const-generics", "force_unix_path_separator", "i128", "no_std", "strict"))' -C metadata=c66037e8139405ff -C extra-filename=-c66037e8139405ff --out-dir /tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.cy4zYrLhIY/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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.cy4zYrLhIY/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 291s warning: unexpected `cfg` condition value: `cargo-clippy` 291s --> /usr/share/cargo/registry/typenum-1.17.0/src/lib.rs:50:5 291s | 291s 50 | feature = "cargo-clippy", 291s | ^^^^^^^^^^^^^^^^^^^^^^^^ 291s | 291s = note: expected values for `feature` are: `const-generics`, `force_unix_path_separator`, `i128`, `no_std`, and `strict` 291s = help: consider adding `cargo-clippy` as a feature in `Cargo.toml` 291s = note: see for more information about checking conditional configuration 291s = note: `#[warn(unexpected_cfgs)]` on by default 291s 291s warning: unexpected `cfg` condition value: `cargo-clippy` 291s --> /usr/share/cargo/registry/typenum-1.17.0/src/lib.rs:60:13 291s | 291s 60 | #![cfg_attr(feature = "cargo-clippy", deny(clippy::missing_inline_in_public_items))] 291s | ^^^^^^^^^^^^^^^^^^^^^^^^ 291s | 291s = note: expected values for `feature` are: `const-generics`, `force_unix_path_separator`, `i128`, `no_std`, and `strict` 291s = help: consider adding `cargo-clippy` as a feature in `Cargo.toml` 291s = note: see for more information about checking conditional configuration 291s 291s warning: unexpected `cfg` condition value: `scale_info` 291s --> /usr/share/cargo/registry/typenum-1.17.0/src/lib.rs:119:12 291s | 291s 119 | #[cfg_attr(feature = "scale_info", derive(scale_info::TypeInfo))] 291s | ^^^^^^^^^^^^^^^^^^^^^^ 291s | 291s = note: expected values for `feature` are: `const-generics`, `force_unix_path_separator`, `i128`, `no_std`, and `strict` 291s = help: consider adding `scale_info` as a feature in `Cargo.toml` 291s = note: see for more information about checking conditional configuration 291s 291s warning: unexpected `cfg` condition value: `scale_info` 291s --> /usr/share/cargo/registry/typenum-1.17.0/src/lib.rs:125:12 291s | 291s 125 | #[cfg_attr(feature = "scale_info", derive(scale_info::TypeInfo))] 291s | ^^^^^^^^^^^^^^^^^^^^^^ 291s | 291s = note: expected values for `feature` are: `const-generics`, `force_unix_path_separator`, `i128`, `no_std`, and `strict` 291s = help: consider adding `scale_info` as a feature in `Cargo.toml` 291s = note: see for more information about checking conditional configuration 291s 291s warning: unexpected `cfg` condition value: `scale_info` 291s --> /usr/share/cargo/registry/typenum-1.17.0/src/lib.rs:131:12 291s | 291s 131 | #[cfg_attr(feature = "scale_info", derive(scale_info::TypeInfo))] 291s | ^^^^^^^^^^^^^^^^^^^^^^ 291s | 291s = note: expected values for `feature` are: `const-generics`, `force_unix_path_separator`, `i128`, `no_std`, and `strict` 291s = help: consider adding `scale_info` as a feature in `Cargo.toml` 291s = note: see for more information about checking conditional configuration 291s 291s warning: unexpected `cfg` condition value: `scale_info` 291s --> /usr/share/cargo/registry/typenum-1.17.0/src/bit.rs:19:12 291s | 291s 19 | #[cfg_attr(feature = "scale_info", derive(scale_info::TypeInfo))] 291s | ^^^^^^^^^^^^^^^^^^^^^^ 291s | 291s = note: expected values for `feature` are: `const-generics`, `force_unix_path_separator`, `i128`, `no_std`, and `strict` 291s = help: consider adding `scale_info` as a feature in `Cargo.toml` 291s = note: see for more information about checking conditional configuration 291s 291s warning: unexpected `cfg` condition value: `scale_info` 291s --> /usr/share/cargo/registry/typenum-1.17.0/src/bit.rs:32:12 291s | 291s 32 | #[cfg_attr(feature = "scale_info", derive(scale_info::TypeInfo))] 291s | ^^^^^^^^^^^^^^^^^^^^^^ 291s | 291s = note: expected values for `feature` are: `const-generics`, `force_unix_path_separator`, `i128`, `no_std`, and `strict` 291s = help: consider adding `scale_info` as a feature in `Cargo.toml` 291s = note: see for more information about checking conditional configuration 291s 291s warning: unexpected `cfg` condition name: `tests` 291s --> /usr/share/cargo/registry/typenum-1.17.0/src/bit.rs:187:7 291s | 291s 187 | #[cfg(tests)] 291s | ^^^^^ help: there is a config with a similar name: `test` 291s | 291s = help: consider using a Cargo feature instead 291s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 291s [lints.rust] 291s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tests)'] } 291s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tests)");` to the top of the `build.rs` 291s = note: see for more information about checking conditional configuration 291s 291s warning: unexpected `cfg` condition value: `scale_info` 291s --> /usr/share/cargo/registry/typenum-1.17.0/src/int.rs:41:12 291s | 291s 41 | #[cfg_attr(feature = "scale_info", derive(scale_info::TypeInfo))] 291s | ^^^^^^^^^^^^^^^^^^^^^^ 291s | 291s = note: expected values for `feature` are: `const-generics`, `force_unix_path_separator`, `i128`, `no_std`, and `strict` 291s = help: consider adding `scale_info` as a feature in `Cargo.toml` 291s = note: see for more information about checking conditional configuration 291s 291s warning: unexpected `cfg` condition value: `scale_info` 291s --> /usr/share/cargo/registry/typenum-1.17.0/src/int.rs:48:12 291s | 291s 48 | #[cfg_attr(feature = "scale_info", derive(scale_info::TypeInfo))] 291s | ^^^^^^^^^^^^^^^^^^^^^^ 291s | 291s = note: expected values for `feature` are: `const-generics`, `force_unix_path_separator`, `i128`, `no_std`, and `strict` 291s = help: consider adding `scale_info` as a feature in `Cargo.toml` 291s = note: see for more information about checking conditional configuration 291s 291s warning: unexpected `cfg` condition value: `scale_info` 291s --> /usr/share/cargo/registry/typenum-1.17.0/src/int.rs:71:12 291s | 291s 71 | #[cfg_attr(feature = "scale_info", derive(scale_info::TypeInfo))] 291s | ^^^^^^^^^^^^^^^^^^^^^^ 291s | 291s = note: expected values for `feature` are: `const-generics`, `force_unix_path_separator`, `i128`, `no_std`, and `strict` 291s = help: consider adding `scale_info` as a feature in `Cargo.toml` 291s = note: see for more information about checking conditional configuration 291s 291s warning: unexpected `cfg` condition value: `scale_info` 291s --> /usr/share/cargo/registry/typenum-1.17.0/src/uint.rs:49:12 291s | 291s 49 | #[cfg_attr(feature = "scale_info", derive(scale_info::TypeInfo))] 291s | ^^^^^^^^^^^^^^^^^^^^^^ 291s | 291s = note: expected values for `feature` are: `const-generics`, `force_unix_path_separator`, `i128`, `no_std`, and `strict` 291s = help: consider adding `scale_info` as a feature in `Cargo.toml` 291s = note: see for more information about checking conditional configuration 291s 291s warning: unexpected `cfg` condition value: `scale_info` 291s --> /usr/share/cargo/registry/typenum-1.17.0/src/uint.rs:147:12 291s | 291s 147 | #[cfg_attr(feature = "scale_info", derive(scale_info::TypeInfo))] 291s | ^^^^^^^^^^^^^^^^^^^^^^ 291s | 291s = note: expected values for `feature` are: `const-generics`, `force_unix_path_separator`, `i128`, `no_std`, and `strict` 291s = help: consider adding `scale_info` as a feature in `Cargo.toml` 291s = note: see for more information about checking conditional configuration 291s 291s warning: unexpected `cfg` condition name: `tests` 291s --> /usr/share/cargo/registry/typenum-1.17.0/src/uint.rs:1656:7 291s | 291s 1656 | #[cfg(tests)] 291s | ^^^^^ help: there is a config with a similar name: `test` 291s | 291s = help: consider using a Cargo feature instead 291s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 291s [lints.rust] 291s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tests)'] } 291s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tests)");` to the top of the `build.rs` 291s = note: see for more information about checking conditional configuration 291s 291s warning: unexpected `cfg` condition value: `cargo-clippy` 291s --> /usr/share/cargo/registry/typenum-1.17.0/src/uint.rs:1709:16 291s | 291s 1709 | #[cfg_attr(feature = "cargo-clippy", allow(clippy::suspicious_arithmetic_impl))] 291s | ^^^^^^^^^^^^^^^^^^^^^^^^ 291s | 291s = note: expected values for `feature` are: `const-generics`, `force_unix_path_separator`, `i128`, `no_std`, and `strict` 291s = help: consider adding `cargo-clippy` as a feature in `Cargo.toml` 291s = note: see for more information about checking conditional configuration 291s 291s warning: unexpected `cfg` condition value: `scale_info` 291s --> /usr/share/cargo/registry/typenum-1.17.0/src/array.rs:11:12 291s | 291s 11 | #[cfg_attr(feature = "scale_info", derive(scale_info::TypeInfo))] 291s | ^^^^^^^^^^^^^^^^^^^^^^ 291s | 291s = note: expected values for `feature` are: `const-generics`, `force_unix_path_separator`, `i128`, `no_std`, and `strict` 291s = help: consider adding `scale_info` as a feature in `Cargo.toml` 291s = note: see for more information about checking conditional configuration 291s 291s warning: unexpected `cfg` condition value: `scale_info` 291s --> /usr/share/cargo/registry/typenum-1.17.0/src/array.rs:23:12 291s | 291s 23 | #[cfg_attr(feature = "scale_info", derive(scale_info::TypeInfo))] 291s | ^^^^^^^^^^^^^^^^^^^^^^ 291s | 291s = note: expected values for `feature` are: `const-generics`, `force_unix_path_separator`, `i128`, `no_std`, and `strict` 291s = help: consider adding `scale_info` as a feature in `Cargo.toml` 291s = note: see for more information about checking conditional configuration 291s 291s warning: unused import: `*` 291s --> /usr/share/cargo/registry/typenum-1.17.0/src/lib.rs:106:25 291s | 291s 106 | N1, N2, Z0, P1, P2, *, 291s | ^ 291s | 291s = note: `#[warn(unused_imports)]` on by default 291s 291s 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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0--remap-path-prefix/tmp/tmp.cy4zYrLhIY/registry=/usr/share/cargo/registry-Ctarget-feature=+backchain' CARGO_MANIFEST_DIR=/tmp/tmp.cy4zYrLhIY/registry/crossbeam-utils-0.8.19 CARGO_MANIFEST_PATH=/tmp/tmp.cy4zYrLhIY/registry/crossbeam-utils-0.8.19/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='Utilities for concurrent programming' CARGO_PKG_HOMEPAGE='https://github.com/crossbeam-rs/crossbeam/tree/master/crossbeam-utils' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=crossbeam-utils CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/crossbeam-rs/crossbeam' CARGO_PKG_RUST_VERSION=1.60 CARGO_PKG_VERSION=0.8.19 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=8 CARGO_PKG_VERSION_PATCH=19 CARGO_PKG_VERSION_PRE='' DEBUG=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.cy4zYrLhIY/target/debug/deps:/tmp/tmp.cy4zYrLhIY/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/build/crossbeam-utils-41ced09745ce2d1e/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.cy4zYrLhIY/target/debug/build/crossbeam-utils-481d5baddd087d3b/build-script-build` 291s [crossbeam-utils 0.8.19] cargo:rerun-if-changed=no_atomic.rs 291s Compiling futures-executor v0.3.31 291s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=futures_executor CARGO_MANIFEST_DIR=/tmp/tmp.cy4zYrLhIY/registry/futures-executor-0.3.31 CARGO_MANIFEST_PATH=/tmp/tmp.cy4zYrLhIY/registry/futures-executor-0.3.31/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='Executors for asynchronous tasks based on the futures-rs library. 291s ' CARGO_PKG_HOMEPAGE='https://rust-lang.github.io/futures-rs' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=futures-executor CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/futures-rs' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=0.3.31 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=31 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.cy4zYrLhIY/target/debug/deps rustc --crate-name futures_executor --edition=2018 /tmp/tmp.cy4zYrLhIY/registry/futures-executor-0.3.31/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --warn=unreachable_pub --warn=unexpected_cfgs --warn=single_use_lifetimes --warn=rust_2018_idioms --warn=missing_debug_implementations --check-cfg 'cfg(futures_sanitizer)' --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "num_cpus", "std", "thread-pool"))' -C metadata=c03816d2d75c45a0 -C extra-filename=-c03816d2d75c45a0 --out-dir /tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.cy4zYrLhIY/target/debug/deps --extern futures_core=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps/libfutures_core-8d305950da6bf5c8.rmeta --extern futures_task=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps/libfutures_task-47c3a7d17767e18f.rmeta --extern futures_util=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps/libfutures_util-23beed03671fe7d3.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.cy4zYrLhIY/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 292s warning: `futures-executor` (lib) generated 1 warning (1 duplicate) 292s Compiling futures-channel v0.3.31 292s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=futures_channel CARGO_MANIFEST_DIR=/tmp/tmp.cy4zYrLhIY/registry/futures-channel-0.3.31 CARGO_MANIFEST_PATH=/tmp/tmp.cy4zYrLhIY/registry/futures-channel-0.3.31/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='Channels for asynchronous communication using futures-rs. 292s ' CARGO_PKG_HOMEPAGE='https://rust-lang.github.io/futures-rs' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=futures-channel CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/futures-rs' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=0.3.31 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=31 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.cy4zYrLhIY/target/debug/deps rustc --crate-name futures_channel --edition=2018 /tmp/tmp.cy4zYrLhIY/registry/futures-channel-0.3.31/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --warn=unreachable_pub --warn=unexpected_cfgs --warn=single_use_lifetimes --warn=rust_2018_idioms --warn=missing_debug_implementations --check-cfg 'cfg(futures_sanitizer)' --cfg 'feature="alloc"' --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "cfg-target-has-atomic", "default", "futures-sink", "sink", "std", "unstable"))' -C metadata=8ed485ea134c933c -C extra-filename=-8ed485ea134c933c --out-dir /tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.cy4zYrLhIY/target/debug/deps --extern futures_core=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps/libfutures_core-8d305950da6bf5c8.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.cy4zYrLhIY/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 292s warning: `typenum` (lib) generated 19 warnings (1 duplicate) 292s Compiling glib-macros v0.20.7 292s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=glib_macros CARGO_MANIFEST_DIR=/tmp/tmp.cy4zYrLhIY/registry/glib-macros-0.20.7 CARGO_MANIFEST_PATH=/tmp/tmp.cy4zYrLhIY/registry/glib-macros-0.20.7/Cargo.toml CARGO_PKG_AUTHORS='The gtk-rs Project Developers' CARGO_PKG_DESCRIPTION='Rust bindings for the GLib library, proc macros crate' CARGO_PKG_HOMEPAGE='https://gtk-rs.org/' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=glib-macros CARGO_PKG_README='' CARGO_PKG_REPOSITORY='https://github.com/gtk-rs/gtk-rs-core' CARGO_PKG_RUST_VERSION=1.70 CARGO_PKG_VERSION=0.20.7 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=20 CARGO_PKG_VERSION_PATCH=7 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.cy4zYrLhIY/target/debug/deps rustc --crate-name glib_macros --edition=2021 /tmp/tmp.cy4zYrLhIY/registry/glib-macros-0.20.7/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=e197971b64e0210b -C extra-filename=-e197971b64e0210b --out-dir /tmp/tmp.cy4zYrLhIY/target/debug/deps -L dependency=/tmp/tmp.cy4zYrLhIY/target/debug/deps --extern heck=/tmp/tmp.cy4zYrLhIY/target/debug/deps/libheck-780ed41701172964.rlib --extern proc_macro_crate=/tmp/tmp.cy4zYrLhIY/target/debug/deps/libproc_macro_crate-76b8c9685ffc2762.rlib --extern proc_macro2=/tmp/tmp.cy4zYrLhIY/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rlib --extern quote=/tmp/tmp.cy4zYrLhIY/target/debug/deps/libquote-dc92c6f25ee0f0c6.rlib --extern syn=/tmp/tmp.cy4zYrLhIY/target/debug/deps/libsyn-0167beed9e699402.rlib --extern proc_macro --cap-lints warn` 292s warning: `futures-channel` (lib) generated 1 warning (1 duplicate) 292s Compiling memchr v2.7.4 292s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=memchr CARGO_MANIFEST_DIR=/tmp/tmp.cy4zYrLhIY/registry/memchr-2.7.4 CARGO_MANIFEST_PATH=/tmp/tmp.cy4zYrLhIY/registry/memchr-2.7.4/Cargo.toml CARGO_PKG_AUTHORS='Andrew Gallant :bluss' CARGO_PKG_DESCRIPTION='Provides extremely fast (uses SIMD on x86_64, aarch64 and wasm32) routines for 292s 1, 2 or 3 byte search and single substring search. 292s ' CARGO_PKG_HOMEPAGE='https://github.com/BurntSushi/memchr' CARGO_PKG_LICENSE='Unlicense OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=memchr CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/BurntSushi/memchr' CARGO_PKG_RUST_VERSION=1.61 CARGO_PKG_VERSION=2.7.4 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=7 CARGO_PKG_VERSION_PATCH=4 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.cy4zYrLhIY/target/debug/deps rustc --crate-name memchr --edition=2021 /tmp/tmp.cy4zYrLhIY/registry/memchr-2.7.4/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="alloc"' --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "compiler_builtins", "core", "default", "libc", "logging", "rustc-dep-of-std", "std", "use_std"))' -C metadata=944ab1891fd21906 -C extra-filename=-944ab1891fd21906 --out-dir /tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.cy4zYrLhIY/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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.cy4zYrLhIY/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 292s warning: `memchr` (lib) generated 1 warning (1 duplicate) 292s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=smallvec CARGO_MANIFEST_DIR=/tmp/tmp.cy4zYrLhIY/registry/smallvec-1.13.2 CARGO_MANIFEST_PATH=/tmp/tmp.cy4zYrLhIY/registry/smallvec-1.13.2/Cargo.toml CARGO_PKG_AUTHORS='The Servo Project Developers' CARGO_PKG_DESCRIPTION=''\''Small vector'\'' optimization: store up to a small number of items on the stack' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=smallvec CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/servo/rust-smallvec' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=1.13.2 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=13 CARGO_PKG_VERSION_PATCH=2 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.cy4zYrLhIY/target/debug/deps rustc --crate-name smallvec --edition=2018 /tmp/tmp.cy4zYrLhIY/registry/smallvec-1.13.2/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="const_generics"' --cfg 'feature="const_new"' --cfg 'feature="union"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("arbitrary", "const_generics", "const_new", "debugger_visualizer", "drain_filter", "drain_keep_rest", "may_dangle", "serde", "specialization", "union", "write"))' -C metadata=ef72c43926f60793 -C extra-filename=-ef72c43926f60793 --out-dir /tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.cy4zYrLhIY/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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.cy4zYrLhIY/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 292s warning: `smallvec` (lib) generated 1 warning (1 duplicate) 292s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.cy4zYrLhIY/registry/serde-1.0.217 CARGO_MANIFEST_PATH=/tmp/tmp.cy4zYrLhIY/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.cy4zYrLhIY/target/debug/deps rustc --crate-name build_script_build --edition=2018 /tmp/tmp.cy4zYrLhIY/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.cy4zYrLhIY/target/debug/build/serde-c22c8603f1f999ec -L dependency=/tmp/tmp.cy4zYrLhIY/target/debug/deps --cap-lints warn` 293s 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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0--remap-path-prefix/tmp/tmp.cy4zYrLhIY/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.cy4zYrLhIY/registry/serde-1.0.217 CARGO_MANIFEST_PATH=/tmp/tmp.cy4zYrLhIY/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.cy4zYrLhIY/target/debug/deps:/tmp/tmp.cy4zYrLhIY/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/build/serde-c08ea6899e623ec6/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.cy4zYrLhIY/target/debug/build/serde-c22c8603f1f999ec/build-script-build` 293s [serde 1.0.217] cargo:rerun-if-changed=build.rs 293s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_core_cstr) 293s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_core_error) 293s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_core_net) 293s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_core_num_saturating) 293s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_core_try_from) 293s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_diagnostic_namespace) 293s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_float_copysign) 293s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_num_nonzero_signed) 293s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_relaxed_trait_bounds) 293s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_serde_derive) 293s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_std_atomic) 293s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_std_atomic64) 293s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_systemtime_checked_add) 293s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_target_has_atomic) 293s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=generic_array CARGO_MANIFEST_DIR=/tmp/tmp.cy4zYrLhIY/registry/generic-array-0.14.7 CARGO_MANIFEST_PATH=/tmp/tmp.cy4zYrLhIY/registry/generic-array-0.14.7/Cargo.toml CARGO_PKG_AUTHORS='Bartłomiej Kamiński :Aaron Trent ' CARGO_PKG_DESCRIPTION='Generic types implementing functionality of arrays' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=generic-array CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/fizyk20/generic-array.git' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.14.7 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=14 CARGO_PKG_VERSION_PATCH=7 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.cy4zYrLhIY/target/debug/deps OUT_DIR=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/build/generic-array-da8fba9a25807be8/out rustc --crate-name generic_array --edition=2015 /tmp/tmp.cy4zYrLhIY/registry/generic-array-0.14.7/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="more_lengths"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("more_lengths", "serde", "zeroize"))' -C metadata=d02d059964c7aee0 -C extra-filename=-d02d059964c7aee0 --out-dir /tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.cy4zYrLhIY/target/debug/deps --extern typenum=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps/libtypenum-c66037e8139405ff.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.cy4zYrLhIY/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain --cfg relaxed_coherence` 293s warning: unexpected `cfg` condition name: `relaxed_coherence` 293s --> /usr/share/cargo/registry/generic-array-0.14.7/src/impls.rs:136:19 293s | 293s 136 | #[cfg(relaxed_coherence)] 293s | ^^^^^^^^^^^^^^^^^ 293s ... 293s 183 | / impl_from! { 293s 184 | | 1 => ::typenum::U1, 293s 185 | | 2 => ::typenum::U2, 293s 186 | | 3 => ::typenum::U3, 293s ... | 293s 215 | | 32 => ::typenum::U32 293s 216 | | } 293s | |_- in this macro invocation 293s | 293s = help: expected names are: `clippy`, `debug_assertions`, `doc`, `docsrs`, `doctest`, `feature`, `fmt_debug`, `miri`, `overflow_checks`, `panic`, `proc_macro`, `relocation_model`, `rustfmt`, `sanitize`, `sanitizer_cfi_generalize_pointers`, `sanitizer_cfi_normalize_integers`, `target_abi`, `target_arch`, `target_endian`, `target_env`, `target_family`, `target_feature`, `target_has_atomic`, `target_has_atomic_equal_alignment`, `target_has_atomic_load_store`, `target_os`, `target_pointer_width`, `target_thread_local`, `target_vendor`, `test`, `ub_checks`, `unix`, and `windows` 293s = help: consider using a Cargo feature instead 293s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 293s [lints.rust] 293s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(relaxed_coherence)'] } 293s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(relaxed_coherence)");` to the top of the `build.rs` 293s = note: see for more information about checking conditional configuration 293s = note: `#[warn(unexpected_cfgs)]` on by default 293s = note: this warning originates in the macro `impl_from` (in Nightly builds, run with -Z macro-backtrace for more info) 293s 293s warning: unexpected `cfg` condition name: `relaxed_coherence` 293s --> /usr/share/cargo/registry/generic-array-0.14.7/src/impls.rs:158:23 293s | 293s 158 | #[cfg(not(relaxed_coherence))] 293s | ^^^^^^^^^^^^^^^^^ 293s ... 293s 183 | / impl_from! { 293s 184 | | 1 => ::typenum::U1, 293s 185 | | 2 => ::typenum::U2, 293s 186 | | 3 => ::typenum::U3, 293s ... | 293s 215 | | 32 => ::typenum::U32 293s 216 | | } 293s | |_- in this macro invocation 293s | 293s = help: consider using a Cargo feature instead 293s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 293s [lints.rust] 293s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(relaxed_coherence)'] } 293s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(relaxed_coherence)");` to the top of the `build.rs` 293s = note: see for more information about checking conditional configuration 293s = note: this warning originates in the macro `impl_from` (in Nightly builds, run with -Z macro-backtrace for more info) 293s 293s warning: unexpected `cfg` condition name: `relaxed_coherence` 293s --> /usr/share/cargo/registry/generic-array-0.14.7/src/impls.rs:136:19 293s | 293s 136 | #[cfg(relaxed_coherence)] 293s | ^^^^^^^^^^^^^^^^^ 293s ... 293s 219 | / impl_from! { 293s 220 | | 33 => ::typenum::U33, 293s 221 | | 34 => ::typenum::U34, 293s 222 | | 35 => ::typenum::U35, 293s ... | 293s 268 | | 1024 => ::typenum::U1024 293s 269 | | } 293s | |_- in this macro invocation 293s | 293s = help: consider using a Cargo feature instead 293s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 293s [lints.rust] 293s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(relaxed_coherence)'] } 293s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(relaxed_coherence)");` to the top of the `build.rs` 293s = note: see for more information about checking conditional configuration 293s = note: this warning originates in the macro `impl_from` (in Nightly builds, run with -Z macro-backtrace for more info) 293s 293s warning: unexpected `cfg` condition name: `relaxed_coherence` 293s --> /usr/share/cargo/registry/generic-array-0.14.7/src/impls.rs:158:23 293s | 293s 158 | #[cfg(not(relaxed_coherence))] 293s | ^^^^^^^^^^^^^^^^^ 293s ... 293s 219 | / impl_from! { 293s 220 | | 33 => ::typenum::U33, 293s 221 | | 34 => ::typenum::U34, 293s 222 | | 35 => ::typenum::U35, 293s ... | 293s 268 | | 1024 => ::typenum::U1024 293s 269 | | } 293s | |_- in this macro invocation 293s | 293s = help: consider using a Cargo feature instead 293s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 293s [lints.rust] 293s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(relaxed_coherence)'] } 293s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(relaxed_coherence)");` to the top of the `build.rs` 293s = note: see for more information about checking conditional configuration 293s = note: this warning originates in the macro `impl_from` (in Nightly builds, run with -Z macro-backtrace for more info) 293s 293s warning: `generic-array` (lib) generated 5 warnings (1 duplicate) 293s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=crossbeam_utils CARGO_MANIFEST_DIR=/tmp/tmp.cy4zYrLhIY/registry/crossbeam-utils-0.8.19 CARGO_MANIFEST_PATH=/tmp/tmp.cy4zYrLhIY/registry/crossbeam-utils-0.8.19/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='Utilities for concurrent programming' CARGO_PKG_HOMEPAGE='https://github.com/crossbeam-rs/crossbeam/tree/master/crossbeam-utils' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=crossbeam-utils CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/crossbeam-rs/crossbeam' CARGO_PKG_RUST_VERSION=1.60 CARGO_PKG_VERSION=0.8.19 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=8 CARGO_PKG_VERSION_PATCH=19 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.cy4zYrLhIY/target/debug/deps OUT_DIR=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/build/crossbeam-utils-41ced09745ce2d1e/out rustc --crate-name crossbeam_utils --edition=2021 /tmp/tmp.cy4zYrLhIY/registry/crossbeam-utils-0.8.19/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "nightly", "std"))' -C metadata=bcaf20eecaf4c1fc -C extra-filename=-bcaf20eecaf4c1fc --out-dir /tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.cy4zYrLhIY/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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.cy4zYrLhIY/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 293s warning: unexpected `cfg` condition name: `crossbeam_loom` 293s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/lib.rs:42:7 293s | 293s 42 | #[cfg(crossbeam_loom)] 293s | ^^^^^^^^^^^^^^ 293s | 293s = help: expected names are: `clippy`, `debug_assertions`, `doc`, `docsrs`, `doctest`, `feature`, `fmt_debug`, `miri`, `overflow_checks`, `panic`, `proc_macro`, `relocation_model`, `rustfmt`, `sanitize`, `sanitizer_cfi_generalize_pointers`, `sanitizer_cfi_normalize_integers`, `target_abi`, `target_arch`, `target_endian`, `target_env`, `target_family`, `target_feature`, `target_has_atomic`, `target_has_atomic_equal_alignment`, `target_has_atomic_load_store`, `target_os`, `target_pointer_width`, `target_thread_local`, `target_vendor`, `test`, `ub_checks`, `unix`, and `windows` 293s = help: consider using a Cargo feature instead 293s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 293s [lints.rust] 293s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 293s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 293s = note: see for more information about checking conditional configuration 293s = note: `#[warn(unexpected_cfgs)]` on by default 293s 293s warning: unexpected `cfg` condition name: `crossbeam_loom` 293s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/lib.rs:65:11 293s | 293s 65 | #[cfg(not(crossbeam_loom))] 293s | ^^^^^^^^^^^^^^ 293s | 293s = help: consider using a Cargo feature instead 293s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 293s [lints.rust] 293s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 293s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 293s = note: see for more information about checking conditional configuration 293s 293s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 293s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/lib.rs:74:23 293s | 293s 74 | #[cfg(not(crossbeam_no_atomic))] 293s | ^^^^^^^^^^^^^^^^^^^ 293s | 293s = help: consider using a Cargo feature instead 293s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 293s [lints.rust] 293s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 293s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 293s = note: see for more information about checking conditional configuration 293s 293s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 293s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/lib.rs:78:23 293s | 293s 78 | #[cfg(not(crossbeam_no_atomic))] 293s | ^^^^^^^^^^^^^^^^^^^ 293s | 293s = help: consider using a Cargo feature instead 293s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 293s [lints.rust] 293s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 293s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 293s = note: see for more information about checking conditional configuration 293s 293s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 293s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/lib.rs:81:23 293s | 293s 81 | #[cfg(not(crossbeam_no_atomic))] 293s | ^^^^^^^^^^^^^^^^^^^ 293s | 293s = help: consider using a Cargo feature instead 293s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 293s [lints.rust] 293s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 293s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 293s = note: see for more information about checking conditional configuration 293s 293s warning: unexpected `cfg` condition name: `crossbeam_loom` 293s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/mod.rs:7:11 293s | 293s 7 | #[cfg(not(crossbeam_loom))] 293s | ^^^^^^^^^^^^^^ 293s | 293s = help: consider using a Cargo feature instead 293s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 293s [lints.rust] 293s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 293s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 293s = note: see for more information about checking conditional configuration 293s 293s warning: unexpected `cfg` condition name: `crossbeam_loom` 293s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/mod.rs:25:11 293s | 293s 25 | #[cfg(not(crossbeam_loom))] 293s | ^^^^^^^^^^^^^^ 293s | 293s = help: consider using a Cargo feature instead 293s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 293s [lints.rust] 293s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 293s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 293s = note: see for more information about checking conditional configuration 293s 293s warning: unexpected `cfg` condition name: `crossbeam_loom` 293s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/mod.rs:28:11 293s | 293s 28 | #[cfg(not(crossbeam_loom))] 293s | ^^^^^^^^^^^^^^ 293s | 293s = help: consider using a Cargo feature instead 293s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 293s [lints.rust] 293s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 293s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 293s = note: see for more information about checking conditional configuration 293s 293s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 293s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:1:11 293s | 293s 1 | #[cfg(not(crossbeam_no_atomic))] 293s | ^^^^^^^^^^^^^^^^^^^ 293s | 293s = help: consider using a Cargo feature instead 293s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 293s [lints.rust] 293s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 293s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 293s = note: see for more information about checking conditional configuration 293s 293s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 293s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:27:11 293s | 293s 27 | #[cfg(not(crossbeam_no_atomic))] 293s | ^^^^^^^^^^^^^^^^^^^ 293s | 293s = help: consider using a Cargo feature instead 293s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 293s [lints.rust] 293s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 293s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 293s = note: see for more information about checking conditional configuration 293s 293s warning: unexpected `cfg` condition name: `crossbeam_loom` 293s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:36:19 293s | 293s 36 | not(any(miri, crossbeam_loom, crossbeam_sanitize_thread)), 293s | ^^^^^^^^^^^^^^ 293s | 293s = help: consider using a Cargo feature instead 293s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 293s [lints.rust] 293s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 293s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 293s = note: see for more information about checking conditional configuration 293s 293s warning: unexpected `cfg` condition name: `crossbeam_sanitize_thread` 293s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:36:35 293s | 293s 36 | not(any(miri, crossbeam_loom, crossbeam_sanitize_thread)), 293s | ^^^^^^^^^^^^^^^^^^^^^^^^^ 293s | 293s = help: consider using a Cargo feature instead 293s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 293s [lints.rust] 293s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_sanitize_thread)'] } 293s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_sanitize_thread)");` to the top of the `build.rs` 293s = note: see for more information about checking conditional configuration 293s 293s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 293s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:50:11 293s | 293s 50 | #[cfg(not(crossbeam_no_atomic))] 293s | ^^^^^^^^^^^^^^^^^^^ 293s | 293s = help: consider using a Cargo feature instead 293s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 293s [lints.rust] 293s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 293s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 293s = note: see for more information about checking conditional configuration 293s 293s warning: unexpected `cfg` condition name: `crossbeam_loom` 293s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:53:19 293s | 293s 53 | not(any(miri, crossbeam_loom, crossbeam_sanitize_thread)), 293s | ^^^^^^^^^^^^^^ 293s | 293s = help: consider using a Cargo feature instead 293s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 293s [lints.rust] 293s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 293s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 293s = note: see for more information about checking conditional configuration 293s 293s warning: unexpected `cfg` condition name: `crossbeam_sanitize_thread` 293s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:53:35 293s | 293s 53 | not(any(miri, crossbeam_loom, crossbeam_sanitize_thread)), 293s | ^^^^^^^^^^^^^^^^^^^^^^^^^ 293s | 293s = help: consider using a Cargo feature instead 293s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 293s [lints.rust] 293s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_sanitize_thread)'] } 293s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_sanitize_thread)");` to the top of the `build.rs` 293s = note: see for more information about checking conditional configuration 293s 293s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 293s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:101:11 293s | 293s 101 | #[cfg(not(crossbeam_no_atomic))] 293s | ^^^^^^^^^^^^^^^^^^^ 293s | 293s = help: consider using a Cargo feature instead 293s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 293s [lints.rust] 293s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 293s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 293s = note: see for more information about checking conditional configuration 293s 293s warning: unexpected `cfg` condition name: `crossbeam_loom` 293s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:107:7 293s | 293s 107 | #[cfg(crossbeam_loom)] 293s | ^^^^^^^^^^^^^^ 293s | 293s = help: consider using a Cargo feature instead 293s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 293s [lints.rust] 293s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 293s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 293s = note: see for more information about checking conditional configuration 293s 293s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 293s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:66:19 293s | 293s 66 | #[cfg(not(crossbeam_no_atomic))] 293s | ^^^^^^^^^^^^^^^^^^^ 293s ... 293s 79 | impl_atomic!(AtomicBool, bool); 293s | ------------------------------ in this macro invocation 293s | 293s = help: consider using a Cargo feature instead 293s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 293s [lints.rust] 293s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 293s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 293s = note: see for more information about checking conditional configuration 293s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 293s 293s warning: unexpected `cfg` condition name: `crossbeam_loom` 293s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:71:15 293s | 293s 71 | #[cfg(crossbeam_loom)] 293s | ^^^^^^^^^^^^^^ 293s ... 293s 79 | impl_atomic!(AtomicBool, bool); 293s | ------------------------------ in this macro invocation 293s | 293s = help: consider using a Cargo feature instead 293s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 293s [lints.rust] 293s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 293s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 293s = note: see for more information about checking conditional configuration 293s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 293s 293s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 293s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:66:19 293s | 293s 66 | #[cfg(not(crossbeam_no_atomic))] 293s | ^^^^^^^^^^^^^^^^^^^ 293s ... 293s 80 | impl_atomic!(AtomicUsize, usize); 293s | -------------------------------- in this macro invocation 293s | 293s = help: consider using a Cargo feature instead 293s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 293s [lints.rust] 293s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 293s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 293s = note: see for more information about checking conditional configuration 293s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 293s 293s warning: unexpected `cfg` condition name: `crossbeam_loom` 293s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:71:15 293s | 293s 71 | #[cfg(crossbeam_loom)] 293s | ^^^^^^^^^^^^^^ 293s ... 293s 80 | impl_atomic!(AtomicUsize, usize); 293s | -------------------------------- in this macro invocation 293s | 293s = help: consider using a Cargo feature instead 293s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 293s [lints.rust] 293s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 293s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 293s = note: see for more information about checking conditional configuration 293s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 293s 293s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 293s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:66:19 293s | 293s 66 | #[cfg(not(crossbeam_no_atomic))] 293s | ^^^^^^^^^^^^^^^^^^^ 293s ... 293s 81 | impl_atomic!(AtomicIsize, isize); 293s | -------------------------------- in this macro invocation 293s | 293s = help: consider using a Cargo feature instead 293s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 293s [lints.rust] 293s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 293s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 293s = note: see for more information about checking conditional configuration 293s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 293s 293s warning: unexpected `cfg` condition name: `crossbeam_loom` 293s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:71:15 293s | 293s 71 | #[cfg(crossbeam_loom)] 293s | ^^^^^^^^^^^^^^ 293s ... 293s 81 | impl_atomic!(AtomicIsize, isize); 293s | -------------------------------- in this macro invocation 293s | 293s = help: consider using a Cargo feature instead 293s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 293s [lints.rust] 293s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 293s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 293s = note: see for more information about checking conditional configuration 293s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 293s 293s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 293s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:66:19 293s | 293s 66 | #[cfg(not(crossbeam_no_atomic))] 293s | ^^^^^^^^^^^^^^^^^^^ 293s ... 293s 82 | impl_atomic!(AtomicU8, u8); 293s | -------------------------- in this macro invocation 293s | 293s = help: consider using a Cargo feature instead 293s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 293s [lints.rust] 293s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 293s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 293s = note: see for more information about checking conditional configuration 293s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 293s 293s warning: unexpected `cfg` condition name: `crossbeam_loom` 293s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:71:15 293s | 293s 71 | #[cfg(crossbeam_loom)] 293s | ^^^^^^^^^^^^^^ 293s ... 293s 82 | impl_atomic!(AtomicU8, u8); 293s | -------------------------- in this macro invocation 293s | 293s = help: consider using a Cargo feature instead 293s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 293s [lints.rust] 293s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 293s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 293s = note: see for more information about checking conditional configuration 293s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 293s 293s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 293s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:66:19 293s | 293s 66 | #[cfg(not(crossbeam_no_atomic))] 293s | ^^^^^^^^^^^^^^^^^^^ 293s ... 293s 83 | impl_atomic!(AtomicI8, i8); 293s | -------------------------- in this macro invocation 293s | 293s = help: consider using a Cargo feature instead 293s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 293s [lints.rust] 293s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 293s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 293s = note: see for more information about checking conditional configuration 293s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 293s 293s warning: unexpected `cfg` condition name: `crossbeam_loom` 293s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:71:15 293s | 293s 71 | #[cfg(crossbeam_loom)] 293s | ^^^^^^^^^^^^^^ 293s ... 293s 83 | impl_atomic!(AtomicI8, i8); 293s | -------------------------- in this macro invocation 293s | 293s = help: consider using a Cargo feature instead 293s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 293s [lints.rust] 293s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 293s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 293s = note: see for more information about checking conditional configuration 293s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 293s 293s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 293s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:66:19 293s | 293s 66 | #[cfg(not(crossbeam_no_atomic))] 293s | ^^^^^^^^^^^^^^^^^^^ 293s ... 293s 84 | impl_atomic!(AtomicU16, u16); 293s | ---------------------------- in this macro invocation 293s | 293s = help: consider using a Cargo feature instead 293s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 293s [lints.rust] 293s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 293s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 293s = note: see for more information about checking conditional configuration 293s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 293s 293s warning: unexpected `cfg` condition name: `crossbeam_loom` 293s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:71:15 293s | 293s 71 | #[cfg(crossbeam_loom)] 293s | ^^^^^^^^^^^^^^ 293s ... 293s 84 | impl_atomic!(AtomicU16, u16); 293s | ---------------------------- in this macro invocation 293s | 293s = help: consider using a Cargo feature instead 293s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 293s [lints.rust] 293s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 293s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 293s = note: see for more information about checking conditional configuration 293s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 293s 293s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 293s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:66:19 293s | 293s 66 | #[cfg(not(crossbeam_no_atomic))] 293s | ^^^^^^^^^^^^^^^^^^^ 293s ... 293s 85 | impl_atomic!(AtomicI16, i16); 293s | ---------------------------- in this macro invocation 293s | 293s = help: consider using a Cargo feature instead 293s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 293s [lints.rust] 293s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 293s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 293s = note: see for more information about checking conditional configuration 293s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 293s 293s warning: unexpected `cfg` condition name: `crossbeam_loom` 293s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:71:15 293s | 293s 71 | #[cfg(crossbeam_loom)] 293s | ^^^^^^^^^^^^^^ 293s ... 293s 85 | impl_atomic!(AtomicI16, i16); 293s | ---------------------------- in this macro invocation 293s | 293s = help: consider using a Cargo feature instead 293s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 293s [lints.rust] 293s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 293s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 293s = note: see for more information about checking conditional configuration 293s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 293s 293s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 293s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:66:19 293s | 293s 66 | #[cfg(not(crossbeam_no_atomic))] 293s | ^^^^^^^^^^^^^^^^^^^ 293s ... 293s 87 | impl_atomic!(AtomicU32, u32); 293s | ---------------------------- in this macro invocation 293s | 293s = help: consider using a Cargo feature instead 293s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 293s [lints.rust] 293s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 293s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 293s = note: see for more information about checking conditional configuration 293s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 293s 293s warning: unexpected `cfg` condition name: `crossbeam_loom` 293s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:71:15 293s | 293s 71 | #[cfg(crossbeam_loom)] 293s | ^^^^^^^^^^^^^^ 293s ... 293s 87 | impl_atomic!(AtomicU32, u32); 293s | ---------------------------- in this macro invocation 293s | 293s = help: consider using a Cargo feature instead 293s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 293s [lints.rust] 293s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 293s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 293s = note: see for more information about checking conditional configuration 293s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 293s 293s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 293s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:66:19 293s | 293s 66 | #[cfg(not(crossbeam_no_atomic))] 293s | ^^^^^^^^^^^^^^^^^^^ 293s ... 293s 89 | impl_atomic!(AtomicI32, i32); 293s | ---------------------------- in this macro invocation 293s | 293s = help: consider using a Cargo feature instead 293s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 293s [lints.rust] 293s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 293s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 293s = note: see for more information about checking conditional configuration 293s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 293s 293s warning: unexpected `cfg` condition name: `crossbeam_loom` 293s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:71:15 293s | 293s 71 | #[cfg(crossbeam_loom)] 293s | ^^^^^^^^^^^^^^ 293s ... 293s 89 | impl_atomic!(AtomicI32, i32); 293s | ---------------------------- in this macro invocation 293s | 293s = help: consider using a Cargo feature instead 293s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 293s [lints.rust] 293s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 293s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 293s = note: see for more information about checking conditional configuration 293s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 293s 293s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 293s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:66:19 293s | 293s 66 | #[cfg(not(crossbeam_no_atomic))] 293s | ^^^^^^^^^^^^^^^^^^^ 293s ... 293s 94 | impl_atomic!(AtomicU64, u64); 293s | ---------------------------- in this macro invocation 293s | 293s = help: consider using a Cargo feature instead 293s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 293s [lints.rust] 293s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 293s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 293s = note: see for more information about checking conditional configuration 293s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 293s 293s warning: unexpected `cfg` condition name: `crossbeam_loom` 293s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:71:15 293s | 293s 71 | #[cfg(crossbeam_loom)] 293s | ^^^^^^^^^^^^^^ 293s ... 293s 94 | impl_atomic!(AtomicU64, u64); 293s | ---------------------------- in this macro invocation 293s | 293s = help: consider using a Cargo feature instead 293s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 293s [lints.rust] 293s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 293s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 293s = note: see for more information about checking conditional configuration 293s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 293s 293s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 293s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:66:19 293s | 293s 66 | #[cfg(not(crossbeam_no_atomic))] 293s | ^^^^^^^^^^^^^^^^^^^ 293s ... 293s 99 | impl_atomic!(AtomicI64, i64); 293s | ---------------------------- in this macro invocation 293s | 293s = help: consider using a Cargo feature instead 293s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 293s [lints.rust] 293s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 293s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 293s = note: see for more information about checking conditional configuration 293s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 293s 293s warning: unexpected `cfg` condition name: `crossbeam_loom` 293s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:71:15 293s | 293s 71 | #[cfg(crossbeam_loom)] 293s | ^^^^^^^^^^^^^^ 293s ... 293s 99 | impl_atomic!(AtomicI64, i64); 293s | ---------------------------- in this macro invocation 293s | 293s = help: consider using a Cargo feature instead 293s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 293s [lints.rust] 293s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 293s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 293s = note: see for more information about checking conditional configuration 293s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 293s 294s warning: `crossbeam-utils` (lib) generated 40 warnings (1 duplicate) 294s Compiling zerocopy-derive v0.7.34 294s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=zerocopy_derive CARGO_MANIFEST_DIR=/tmp/tmp.cy4zYrLhIY/registry/zerocopy-derive-0.7.34 CARGO_MANIFEST_PATH=/tmp/tmp.cy4zYrLhIY/registry/zerocopy-derive-0.7.34/Cargo.toml CARGO_PKG_AUTHORS='Joshua Liebow-Feeser ' CARGO_PKG_DESCRIPTION='Custom derive for traits from the zerocopy crate' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='BSD-2-Clause OR Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=zerocopy-derive CARGO_PKG_README='' CARGO_PKG_REPOSITORY='https://github.com/google/zerocopy' CARGO_PKG_RUST_VERSION=1.60.0 CARGO_PKG_VERSION=0.7.34 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=7 CARGO_PKG_VERSION_PATCH=34 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.cy4zYrLhIY/target/debug/deps rustc --crate-name zerocopy_derive --edition=2018 /tmp/tmp.cy4zYrLhIY/registry/zerocopy-derive-0.7.34/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type proc-macro --emit=dep-info,link -C prefer-dynamic -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=676bad9287e184ca -C extra-filename=-676bad9287e184ca --out-dir /tmp/tmp.cy4zYrLhIY/target/debug/deps -L dependency=/tmp/tmp.cy4zYrLhIY/target/debug/deps --extern proc_macro2=/tmp/tmp.cy4zYrLhIY/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rlib --extern quote=/tmp/tmp.cy4zYrLhIY/target/debug/deps/libquote-dc92c6f25ee0f0c6.rlib --extern syn=/tmp/tmp.cy4zYrLhIY/target/debug/deps/libsyn-0167beed9e699402.rlib --extern proc_macro --cap-lints warn` 295s Compiling serde_derive v1.0.217 295s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=serde_derive CARGO_MANIFEST_DIR=/tmp/tmp.cy4zYrLhIY/registry/serde_derive-1.0.217 CARGO_MANIFEST_PATH=/tmp/tmp.cy4zYrLhIY/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.cy4zYrLhIY/target/debug/deps rustc --crate-name serde_derive --edition=2015 /tmp/tmp.cy4zYrLhIY/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=85fb19fec9ccb150 -C extra-filename=-85fb19fec9ccb150 --out-dir /tmp/tmp.cy4zYrLhIY/target/debug/deps -L dependency=/tmp/tmp.cy4zYrLhIY/target/debug/deps --extern proc_macro2=/tmp/tmp.cy4zYrLhIY/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rlib --extern quote=/tmp/tmp.cy4zYrLhIY/target/debug/deps/libquote-dc92c6f25ee0f0c6.rlib --extern syn=/tmp/tmp.cy4zYrLhIY/target/debug/deps/libsyn-0167beed9e699402.rlib --extern proc_macro --cap-lints warn` 297s Compiling glib v0.20.7 297s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=glib CARGO_MANIFEST_DIR=/tmp/tmp.cy4zYrLhIY/registry/glib-0.20.7 CARGO_MANIFEST_PATH=/tmp/tmp.cy4zYrLhIY/registry/glib-0.20.7/Cargo.toml CARGO_PKG_AUTHORS='The gtk-rs Project Developers' CARGO_PKG_DESCRIPTION='Rust bindings for the GLib library' CARGO_PKG_HOMEPAGE='https://gtk-rs.org/' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=glib CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/gtk-rs/gtk-rs-core' CARGO_PKG_RUST_VERSION=1.70 CARGO_PKG_VERSION=0.20.7 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=20 CARGO_PKG_VERSION_PATCH=7 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.cy4zYrLhIY/target/debug/deps rustc --crate-name glib --edition=2021 /tmp/tmp.cy4zYrLhIY/registry/glib-0.20.7/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="gio"' --cfg 'feature="gio-sys"' --cfg 'feature="v2_58"' --cfg 'feature="v2_60"' --cfg 'feature="v2_62"' --cfg 'feature="v2_64"' --cfg 'feature="v2_66"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("compiletests", "default", "gio", "gio-sys", "log", "log_macros", "rs-log", "v2_58", "v2_60", "v2_62", "v2_64", "v2_66", "v2_68", "v2_70", "v2_72", "v2_74", "v2_76", "v2_78", "v2_80", "v2_82", "v2_84"))' -C metadata=86961142feeefe07 -C extra-filename=-86961142feeefe07 --out-dir /tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.cy4zYrLhIY/target/debug/deps --extern bitflags=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps/libbitflags-4b295667124b9dc6.rmeta --extern futures_channel=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps/libfutures_channel-8ed485ea134c933c.rmeta --extern futures_core=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps/libfutures_core-8d305950da6bf5c8.rmeta --extern futures_executor=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps/libfutures_executor-c03816d2d75c45a0.rmeta --extern futures_task=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps/libfutures_task-47c3a7d17767e18f.rmeta --extern futures_util=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps/libfutures_util-23beed03671fe7d3.rmeta --extern gio_sys=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps/libgio_sys-09c58e200e125269.rmeta --extern glib_macros=/tmp/tmp.cy4zYrLhIY/target/debug/deps/libglib_macros-e197971b64e0210b.so --extern glib_sys=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps/libglib_sys-8d7612a6c3ae820a.rmeta --extern gobject_sys=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps/libgobject_sys-c41d1b14aec65cc2.rmeta --extern libc=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps/liblibc-cf2521928ac070dc.rmeta --extern memchr=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps/libmemchr-944ab1891fd21906.rmeta --extern smallvec=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps/libsmallvec-ef72c43926f60793.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.cy4zYrLhIY/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 299s Compiling cairo-sys-rs v0.20.7 299s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.cy4zYrLhIY/registry/cairo-sys-rs-0.20.7 CARGO_MANIFEST_PATH=/tmp/tmp.cy4zYrLhIY/registry/cairo-sys-rs-0.20.7/Cargo.toml CARGO_PKG_AUTHORS='The gtk-rs Project Developers' CARGO_PKG_DESCRIPTION='FFI bindings to libcairo' CARGO_PKG_HOMEPAGE='https://gtk-rs.org/' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=cairo-sys-rs CARGO_PKG_README='' CARGO_PKG_REPOSITORY='https://github.com/gtk-rs/gtk-rs-core' CARGO_PKG_RUST_VERSION=1.70 CARGO_PKG_VERSION=0.20.7 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=20 CARGO_PKG_VERSION_PATCH=7 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.cy4zYrLhIY/target/debug/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.cy4zYrLhIY/registry/cairo-sys-rs-0.20.7/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="glib-sys"' --cfg 'feature="use_glib"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("freetype", "glib-sys", "pdf", "png", "ps", "script", "svg", "use_glib", "v1_16", "v1_18", "x11", "xcb", "xlib"))' -C metadata=4972b5d5a676236d -C extra-filename=-4972b5d5a676236d --out-dir /tmp/tmp.cy4zYrLhIY/target/debug/build/cairo-sys-rs-4972b5d5a676236d -L dependency=/tmp/tmp.cy4zYrLhIY/target/debug/deps --extern system_deps=/tmp/tmp.cy4zYrLhIY/target/debug/deps/libsystem_deps-df5512f70260f2a1.rlib --cap-lints warn` 299s Compiling pango-sys v0.20.7 299s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.cy4zYrLhIY/registry/pango-sys-0.20.7 CARGO_MANIFEST_PATH=/tmp/tmp.cy4zYrLhIY/registry/pango-sys-0.20.7/Cargo.toml CARGO_PKG_AUTHORS='The gtk-rs Project Developers' CARGO_PKG_DESCRIPTION='FFI bindings to libpango-1.0' CARGO_PKG_HOMEPAGE='https://gtk-rs.org/' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=pango-sys CARGO_PKG_README='' CARGO_PKG_REPOSITORY='https://github.com/gtk-rs/gtk-rs-core' CARGO_PKG_RUST_VERSION=1.70 CARGO_PKG_VERSION=0.20.7 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=20 CARGO_PKG_VERSION_PATCH=7 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.cy4zYrLhIY/target/debug/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.cy4zYrLhIY/registry/pango-sys-0.20.7/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="v1_42"' --cfg 'feature="v1_44"' --cfg 'feature="v1_46"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("v1_42", "v1_44", "v1_46", "v1_48", "v1_50", "v1_52", "v1_54", "v1_56"))' -C metadata=6dc5a8848ee39789 -C extra-filename=-6dc5a8848ee39789 --out-dir /tmp/tmp.cy4zYrLhIY/target/debug/build/pango-sys-6dc5a8848ee39789 -L dependency=/tmp/tmp.cy4zYrLhIY/target/debug/deps --extern system_deps=/tmp/tmp.cy4zYrLhIY/target/debug/deps/libsystem_deps-df5512f70260f2a1.rlib --cap-lints warn` 300s Compiling gdk-pixbuf-sys v0.20.7 300s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.cy4zYrLhIY/registry/gdk-pixbuf-sys-0.20.7 CARGO_MANIFEST_PATH=/tmp/tmp.cy4zYrLhIY/registry/gdk-pixbuf-sys-0.20.7/Cargo.toml CARGO_PKG_AUTHORS='The gtk-rs Project Developers' CARGO_PKG_DESCRIPTION='FFI bindings to libgdk_pixbuf-2.0' CARGO_PKG_HOMEPAGE='https://gtk-rs.org/' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=gdk-pixbuf-sys CARGO_PKG_README='' CARGO_PKG_REPOSITORY='https://github.com/gtk-rs/gtk-rs-core' CARGO_PKG_RUST_VERSION=1.70 CARGO_PKG_VERSION=0.20.7 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=20 CARGO_PKG_VERSION_PATCH=7 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.cy4zYrLhIY/target/debug/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.cy4zYrLhIY/registry/gdk-pixbuf-sys-0.20.7/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("v2_40", "v2_42"))' -C metadata=8aafb2c38cfa708b -C extra-filename=-8aafb2c38cfa708b --out-dir /tmp/tmp.cy4zYrLhIY/target/debug/build/gdk-pixbuf-sys-8aafb2c38cfa708b -L dependency=/tmp/tmp.cy4zYrLhIY/target/debug/deps --extern system_deps=/tmp/tmp.cy4zYrLhIY/target/debug/deps/libsystem_deps-df5512f70260f2a1.rlib --cap-lints warn` 300s Compiling zvariant_utils v2.1.0 300s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=zvariant_utils CARGO_MANIFEST_DIR=/tmp/tmp.cy4zYrLhIY/registry/zvariant_utils-2.1.0 CARGO_MANIFEST_PATH=/tmp/tmp.cy4zYrLhIY/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.cy4zYrLhIY/target/debug/deps rustc --crate-name zvariant_utils --edition=2021 /tmp/tmp.cy4zYrLhIY/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=555d90bad4acf190 -C extra-filename=-555d90bad4acf190 --out-dir /tmp/tmp.cy4zYrLhIY/target/debug/deps -L dependency=/tmp/tmp.cy4zYrLhIY/target/debug/deps --extern proc_macro2=/tmp/tmp.cy4zYrLhIY/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rmeta --extern quote=/tmp/tmp.cy4zYrLhIY/target/debug/deps/libquote-dc92c6f25ee0f0c6.rmeta --extern syn=/tmp/tmp.cy4zYrLhIY/target/debug/deps/libsyn-0167beed9e699402.rmeta --cap-lints warn` 300s Compiling gio v0.20.7 300s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.cy4zYrLhIY/registry/gio-0.20.7 CARGO_MANIFEST_PATH=/tmp/tmp.cy4zYrLhIY/registry/gio-0.20.7/Cargo.toml CARGO_PKG_AUTHORS='The gtk-rs Project Developers' CARGO_PKG_DESCRIPTION='Rust bindings for the Gio library' CARGO_PKG_HOMEPAGE='https://gtk-rs.org/' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=gio CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/gtk-rs/gtk-rs-core' CARGO_PKG_RUST_VERSION=1.70 CARGO_PKG_VERSION=0.20.7 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=20 CARGO_PKG_VERSION_PATCH=7 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.cy4zYrLhIY/target/debug/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.cy4zYrLhIY/registry/gio-0.20.7/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="v2_58"' --cfg 'feature="v2_60"' --cfg 'feature="v2_62"' --cfg 'feature="v2_64"' --cfg 'feature="v2_66"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("v2_58", "v2_60", "v2_62", "v2_64", "v2_66", "v2_68", "v2_70", "v2_72", "v2_74", "v2_76", "v2_78", "v2_80", "v2_82", "v2_84"))' -C metadata=544c6453d915c046 -C extra-filename=-544c6453d915c046 --out-dir /tmp/tmp.cy4zYrLhIY/target/debug/build/gio-544c6453d915c046 -L dependency=/tmp/tmp.cy4zYrLhIY/target/debug/deps --cap-lints warn` 301s Compiling byteorder v1.5.0 301s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=byteorder CARGO_MANIFEST_DIR=/tmp/tmp.cy4zYrLhIY/registry/byteorder-1.5.0 CARGO_MANIFEST_PATH=/tmp/tmp.cy4zYrLhIY/registry/byteorder-1.5.0/Cargo.toml CARGO_PKG_AUTHORS='Andrew Gallant ' CARGO_PKG_DESCRIPTION='Library for reading/writing numbers in big-endian and little-endian.' CARGO_PKG_HOMEPAGE='https://github.com/BurntSushi/byteorder' CARGO_PKG_LICENSE='Unlicense OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=byteorder CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/BurntSushi/byteorder' CARGO_PKG_RUST_VERSION=1.60 CARGO_PKG_VERSION=1.5.0 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=5 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.cy4zYrLhIY/target/debug/deps rustc --crate-name byteorder --edition=2021 /tmp/tmp.cy4zYrLhIY/registry/byteorder-1.5.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "i128", "std"))' -C metadata=89ebf31d1f97ee77 -C extra-filename=-89ebf31d1f97ee77 --out-dir /tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.cy4zYrLhIY/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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.cy4zYrLhIY/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 301s warning: `byteorder` (lib) generated 1 warning (1 duplicate) 301s Compiling zerocopy v0.7.34 301s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=zerocopy CARGO_MANIFEST_DIR=/tmp/tmp.cy4zYrLhIY/registry/zerocopy-0.7.34 CARGO_MANIFEST_PATH=/tmp/tmp.cy4zYrLhIY/registry/zerocopy-0.7.34/Cargo.toml CARGO_PKG_AUTHORS='Joshua Liebow-Feeser ' CARGO_PKG_DESCRIPTION='Utilities for zero-copy parsing and serialization' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='BSD-2-Clause OR Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=zerocopy CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/google/zerocopy' CARGO_PKG_RUST_VERSION=1.60.0 CARGO_PKG_VERSION=0.7.34 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=7 CARGO_PKG_VERSION_PATCH=34 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.cy4zYrLhIY/target/debug/deps rustc --crate-name zerocopy --edition=2018 /tmp/tmp.cy4zYrLhIY/registry/zerocopy-0.7.34/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="byteorder"' --cfg 'feature="default"' --cfg 'feature="derive"' --cfg 'feature="simd"' --cfg 'feature="zerocopy-derive"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("__internal_use_only_features_that_work_on_stable", "alloc", "byteorder", "default", "derive", "simd", "simd-nightly", "zerocopy-derive"))' -C metadata=777d8c6c10ffcfc6 -C extra-filename=-777d8c6c10ffcfc6 --out-dir /tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.cy4zYrLhIY/target/debug/deps --extern byteorder=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps/libbyteorder-89ebf31d1f97ee77.rmeta --extern zerocopy_derive=/tmp/tmp.cy4zYrLhIY/target/debug/deps/libzerocopy_derive-676bad9287e184ca.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.cy4zYrLhIY/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 301s warning: unnecessary qualification 301s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/util.rs:597:32 301s | 301s 597 | let remainder = t.addr() % mem::align_of::(); 301s | ^^^^^^^^^^^^^^^^^^ 301s | 301s note: the lint level is defined here 301s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:174:5 301s | 301s 174 | unused_qualifications, 301s | ^^^^^^^^^^^^^^^^^^^^^ 301s help: remove the unnecessary path segments 301s | 301s 597 - let remainder = t.addr() % mem::align_of::(); 301s 597 + let remainder = t.addr() % align_of::(); 301s | 301s 301s warning: unnecessary qualification 301s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:333:35 301s | 301s 333 | const POINTER_WIDTH_BITS: usize = mem::size_of::() * 8; 301s | ^^^^^^^^^^^^^^^^^^^^^ 301s | 301s help: remove the unnecessary path segments 301s | 301s 333 - const POINTER_WIDTH_BITS: usize = mem::size_of::() * 8; 301s 333 + const POINTER_WIDTH_BITS: usize = size_of::() * 8; 301s | 301s 301s warning: unnecessary qualification 301s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:488:44 301s | 301s 488 | align: match NonZeroUsize::new(mem::align_of::()) { 301s | ^^^^^^^^^^^^^^^^^^ 301s | 301s help: remove the unnecessary path segments 301s | 301s 488 - align: match NonZeroUsize::new(mem::align_of::()) { 301s 488 + align: match NonZeroUsize::new(align_of::()) { 301s | 301s 301s warning: unnecessary qualification 301s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:492:49 301s | 301s 492 | size_info: SizeInfo::Sized { _size: mem::size_of::() }, 301s | ^^^^^^^^^^^^^^^^^ 301s | 301s help: remove the unnecessary path segments 301s | 301s 492 - size_info: SizeInfo::Sized { _size: mem::size_of::() }, 301s 492 + size_info: SizeInfo::Sized { _size: size_of::() }, 301s | 301s 301s warning: unnecessary qualification 301s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:511:44 301s | 301s 511 | align: match NonZeroUsize::new(mem::align_of::()) { 301s | ^^^^^^^^^^^^^^^^^^ 301s | 301s help: remove the unnecessary path segments 301s | 301s 511 - align: match NonZeroUsize::new(mem::align_of::()) { 301s 511 + align: match NonZeroUsize::new(align_of::()) { 301s | 301s 301s warning: unnecessary qualification 301s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:517:29 301s | 301s 517 | _elem_size: mem::size_of::(), 301s | ^^^^^^^^^^^^^^^^^ 301s | 301s help: remove the unnecessary path segments 301s | 301s 517 - _elem_size: mem::size_of::(), 301s 517 + _elem_size: size_of::(), 301s | 301s 301s warning: unnecessary qualification 301s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:1418:19 301s | 301s 1418 | let len = mem::size_of_val(self); 301s | ^^^^^^^^^^^^^^^^ 301s | 301s help: remove the unnecessary path segments 301s | 301s 1418 - let len = mem::size_of_val(self); 301s 1418 + let len = size_of_val(self); 301s | 301s 301s warning: unnecessary qualification 301s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:2714:19 301s | 301s 2714 | let len = mem::size_of_val(self); 301s | ^^^^^^^^^^^^^^^^ 301s | 301s help: remove the unnecessary path segments 301s | 301s 2714 - let len = mem::size_of_val(self); 301s 2714 + let len = size_of_val(self); 301s | 301s 301s warning: unnecessary qualification 301s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:2789:19 301s | 301s 2789 | let len = mem::size_of_val(self); 301s | ^^^^^^^^^^^^^^^^ 301s | 301s help: remove the unnecessary path segments 301s | 301s 2789 - let len = mem::size_of_val(self); 301s 2789 + let len = size_of_val(self); 301s | 301s 301s warning: unnecessary qualification 301s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:2863:27 301s | 301s 2863 | if bytes.len() != mem::size_of_val(self) { 301s | ^^^^^^^^^^^^^^^^ 301s | 301s help: remove the unnecessary path segments 301s | 301s 2863 - if bytes.len() != mem::size_of_val(self) { 301s 2863 + if bytes.len() != size_of_val(self) { 301s | 301s 301s warning: unnecessary qualification 301s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:2920:20 301s | 301s 2920 | let size = mem::size_of_val(self); 301s | ^^^^^^^^^^^^^^^^ 301s | 301s help: remove the unnecessary path segments 301s | 301s 2920 - let size = mem::size_of_val(self); 301s 2920 + let size = size_of_val(self); 301s | 301s 301s warning: unnecessary qualification 301s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:2981:45 301s | 301s 2981 | let start = bytes.len().checked_sub(mem::size_of_val(self))?; 301s | ^^^^^^^^^^^^^^^^ 301s | 301s help: remove the unnecessary path segments 301s | 301s 2981 - let start = bytes.len().checked_sub(mem::size_of_val(self))?; 301s 2981 + let start = bytes.len().checked_sub(size_of_val(self))?; 301s | 301s 301s warning: unnecessary qualification 301s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:4161:27 301s | 301s 4161 | if bytes.len() != mem::size_of::() || !util::aligned_to::<_, T>(bytes.deref()) { 301s | ^^^^^^^^^^^^^^^^^ 301s | 301s help: remove the unnecessary path segments 301s | 301s 4161 - if bytes.len() != mem::size_of::() || !util::aligned_to::<_, T>(bytes.deref()) { 301s 4161 + if bytes.len() != size_of::() || !util::aligned_to::<_, T>(bytes.deref()) { 301s | 301s 301s warning: unnecessary qualification 301s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:4176:26 301s | 301s 4176 | if bytes.len() < mem::size_of::() || !util::aligned_to::<_, T>(bytes.deref()) { 301s | ^^^^^^^^^^^^^^^^^ 301s | 301s help: remove the unnecessary path segments 301s | 301s 4176 - if bytes.len() < mem::size_of::() || !util::aligned_to::<_, T>(bytes.deref()) { 301s 4176 + if bytes.len() < size_of::() || !util::aligned_to::<_, T>(bytes.deref()) { 301s | 301s 301s warning: unnecessary qualification 301s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:4179:46 301s | 301s 4179 | let (bytes, suffix) = bytes.split_at(mem::size_of::()); 301s | ^^^^^^^^^^^^^^^^^ 301s | 301s help: remove the unnecessary path segments 301s | 301s 4179 - let (bytes, suffix) = bytes.split_at(mem::size_of::()); 301s 4179 + let (bytes, suffix) = bytes.split_at(size_of::()); 301s | 301s 301s warning: unnecessary qualification 301s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:4194:46 301s | 301s 4194 | let split_at = bytes_len.checked_sub(mem::size_of::())?; 301s | ^^^^^^^^^^^^^^^^^ 301s | 301s help: remove the unnecessary path segments 301s | 301s 4194 - let split_at = bytes_len.checked_sub(mem::size_of::())?; 301s 4194 + let split_at = bytes_len.checked_sub(size_of::())?; 301s | 301s 301s warning: unnecessary qualification 301s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:4221:26 301s | 301s 4221 | .checked_rem(mem::size_of::()) 301s | ^^^^^^^^^^^^^^^^^ 301s | 301s help: remove the unnecessary path segments 301s | 301s 4221 - .checked_rem(mem::size_of::()) 301s 4221 + .checked_rem(size_of::()) 301s | 301s 301s warning: unnecessary qualification 301s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:4243:34 301s | 301s 4243 | let expected_len = match mem::size_of::().checked_mul(count) { 301s | ^^^^^^^^^^^^^^^^^ 301s | 301s help: remove the unnecessary path segments 301s | 301s 4243 - let expected_len = match mem::size_of::().checked_mul(count) { 301s 4243 + let expected_len = match size_of::().checked_mul(count) { 301s | 301s 301s warning: unnecessary qualification 301s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:4268:34 301s | 301s 4268 | let expected_len = match mem::size_of::().checked_mul(count) { 301s | ^^^^^^^^^^^^^^^^^ 301s | 301s help: remove the unnecessary path segments 301s | 301s 4268 - let expected_len = match mem::size_of::().checked_mul(count) { 301s 4268 + let expected_len = match size_of::().checked_mul(count) { 301s | 301s 301s warning: unnecessary qualification 301s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:4795:25 301s | 301s 4795 | let elem_size = mem::size_of::(); 301s | ^^^^^^^^^^^^^^^^^ 301s | 301s help: remove the unnecessary path segments 301s | 301s 4795 - let elem_size = mem::size_of::(); 301s 4795 + let elem_size = size_of::(); 301s | 301s 301s warning: unnecessary qualification 301s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:4825:25 301s | 301s 4825 | let elem_size = mem::size_of::(); 301s | ^^^^^^^^^^^^^^^^^ 301s | 301s help: remove the unnecessary path segments 301s | 301s 4825 - let elem_size = mem::size_of::(); 301s 4825 + let elem_size = size_of::(); 301s | 301s 301s warning: `zerocopy` (lib) generated 22 warnings (1 duplicate) 301s 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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0--remap-path-prefix/tmp/tmp.cy4zYrLhIY/registry=/usr/share/cargo/registry-Ctarget-feature=+backchain' CARGO_FEATURE_V2_58=1 CARGO_FEATURE_V2_60=1 CARGO_FEATURE_V2_62=1 CARGO_FEATURE_V2_64=1 CARGO_FEATURE_V2_66=1 CARGO_MANIFEST_DIR=/tmp/tmp.cy4zYrLhIY/registry/gio-0.20.7 CARGO_MANIFEST_PATH=/tmp/tmp.cy4zYrLhIY/registry/gio-0.20.7/Cargo.toml CARGO_PKG_AUTHORS='The gtk-rs Project Developers' CARGO_PKG_DESCRIPTION='Rust bindings for the Gio library' CARGO_PKG_HOMEPAGE='https://gtk-rs.org/' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=gio CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/gtk-rs/gtk-rs-core' CARGO_PKG_RUST_VERSION=1.70 CARGO_PKG_VERSION=0.20.7 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=20 CARGO_PKG_VERSION_PATCH=7 CARGO_PKG_VERSION_PRE='' DEBUG=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.cy4zYrLhIY/target/debug/deps:/tmp/tmp.cy4zYrLhIY/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/build/gio-b380b9dc244b7663/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.cy4zYrLhIY/target/debug/build/gio-544c6453d915c046/build-script-build` 301s 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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0--remap-path-prefix/tmp/tmp.cy4zYrLhIY/registry=/usr/share/cargo/registry-Ctarget-feature=+backchain' CARGO_MANIFEST_DIR=/tmp/tmp.cy4zYrLhIY/registry/gdk-pixbuf-sys-0.20.7 CARGO_MANIFEST_PATH=/tmp/tmp.cy4zYrLhIY/registry/gdk-pixbuf-sys-0.20.7/Cargo.toml CARGO_PKG_AUTHORS='The gtk-rs Project Developers' CARGO_PKG_DESCRIPTION='FFI bindings to libgdk_pixbuf-2.0' CARGO_PKG_HOMEPAGE='https://gtk-rs.org/' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=gdk-pixbuf-sys CARGO_PKG_README='' CARGO_PKG_REPOSITORY='https://github.com/gtk-rs/gtk-rs-core' CARGO_PKG_RUST_VERSION=1.70 CARGO_PKG_VERSION=0.20.7 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=20 CARGO_PKG_VERSION_PATCH=7 CARGO_PKG_VERSION_PRE='' DEBUG=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.cy4zYrLhIY/target/debug/deps:/tmp/tmp.cy4zYrLhIY/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/build/gdk-pixbuf-sys-ab4c33b0ec0f5591/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.cy4zYrLhIY/target/debug/build/gdk-pixbuf-sys-8aafb2c38cfa708b/build-script-build` 301s [gdk-pixbuf-sys 0.20.7] cargo:rerun-if-changed=/tmp/tmp.cy4zYrLhIY/registry/gdk-pixbuf-sys-0.20.7/Cargo.toml 301s [gdk-pixbuf-sys 0.20.7] cargo:rerun-if-env-changed=GDK_PIXBUF_2.0_NO_PKG_CONFIG 301s [gdk-pixbuf-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_s390x-unknown-linux-gnu 301s [gdk-pixbuf-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_s390x_unknown_linux_gnu 301s [gdk-pixbuf-sys 0.20.7] cargo:rerun-if-env-changed=HOST_PKG_CONFIG 301s [gdk-pixbuf-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG 301s [gdk-pixbuf-sys 0.20.7] cargo:rerun-if-env-changed=DEB_HOST_GNU_TYPE 301s [gdk-pixbuf-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_PATH_s390x-unknown-linux-gnu 301s [gdk-pixbuf-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_PATH_s390x_unknown_linux_gnu 301s [gdk-pixbuf-sys 0.20.7] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_PATH 301s [gdk-pixbuf-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_PATH 301s [gdk-pixbuf-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR_s390x-unknown-linux-gnu 301s [gdk-pixbuf-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR_s390x_unknown_linux_gnu 301s [gdk-pixbuf-sys 0.20.7] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_LIBDIR 301s [gdk-pixbuf-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR 301s [gdk-pixbuf-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR_s390x-unknown-linux-gnu 301s [gdk-pixbuf-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR_s390x_unknown_linux_gnu 301s [gdk-pixbuf-sys 0.20.7] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_SYSROOT_DIR 301s [gdk-pixbuf-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR 301s [gdk-pixbuf-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR 301s [gdk-pixbuf-sys 0.20.7] cargo:rerun-if-env-changed=SYSROOT 301s [gdk-pixbuf-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_s390x-unknown-linux-gnu 301s [gdk-pixbuf-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_s390x_unknown_linux_gnu 301s [gdk-pixbuf-sys 0.20.7] cargo:rerun-if-env-changed=HOST_PKG_CONFIG 301s [gdk-pixbuf-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG 301s [gdk-pixbuf-sys 0.20.7] cargo:rerun-if-env-changed=DEB_HOST_GNU_TYPE 301s [gdk-pixbuf-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_PATH_s390x-unknown-linux-gnu 301s [gdk-pixbuf-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_PATH_s390x_unknown_linux_gnu 301s [gdk-pixbuf-sys 0.20.7] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_PATH 301s [gdk-pixbuf-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_PATH 301s [gdk-pixbuf-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR_s390x-unknown-linux-gnu 301s [gdk-pixbuf-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR_s390x_unknown_linux_gnu 301s [gdk-pixbuf-sys 0.20.7] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_LIBDIR 301s [gdk-pixbuf-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR 301s [gdk-pixbuf-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR_s390x-unknown-linux-gnu 301s [gdk-pixbuf-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR_s390x_unknown_linux_gnu 301s [gdk-pixbuf-sys 0.20.7] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_SYSROOT_DIR 301s [gdk-pixbuf-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR 301s [gdk-pixbuf-sys 0.20.7] cargo:rustc-link-lib=gdk_pixbuf-2.0 301s [gdk-pixbuf-sys 0.20.7] cargo:rustc-link-lib=gobject-2.0 301s [gdk-pixbuf-sys 0.20.7] cargo:rustc-link-lib=glib-2.0 301s [gdk-pixbuf-sys 0.20.7] cargo:include=/usr/include/gdk-pixbuf-2.0:/usr/include:/usr/include/glib-2.0:/usr/lib/s390x-linux-gnu/glib-2.0/include:/usr/include/sysprof-6:/usr/include/libpng16:/usr/include/s390x-linux-gnu:/usr/include/webp:/usr/include/libmount:/usr/include/blkid 301s [gdk-pixbuf-sys 0.20.7] cargo:rerun-if-env-changed=SYSTEM_DEPS_BUILD_INTERNAL 301s [gdk-pixbuf-sys 0.20.7] cargo:rerun-if-env-changed=SYSTEM_DEPS_LINK 301s [gdk-pixbuf-sys 0.20.7] cargo:rerun-if-env-changed=SYSTEM_DEPS_GDK_PIXBUF_2_0_LIB 301s [gdk-pixbuf-sys 0.20.7] cargo:rerun-if-env-changed=SYSTEM_DEPS_GDK_PIXBUF_2_0_LIB_FRAMEWORK 301s [gdk-pixbuf-sys 0.20.7] cargo:rerun-if-env-changed=SYSTEM_DEPS_GDK_PIXBUF_2_0_SEARCH_NATIVE 301s [gdk-pixbuf-sys 0.20.7] cargo:rerun-if-env-changed=SYSTEM_DEPS_GDK_PIXBUF_2_0_SEARCH_FRAMEWORK 301s [gdk-pixbuf-sys 0.20.7] cargo:rerun-if-env-changed=SYSTEM_DEPS_GDK_PIXBUF_2_0_INCLUDE 301s [gdk-pixbuf-sys 0.20.7] cargo:rerun-if-env-changed=SYSTEM_DEPS_GDK_PIXBUF_2_0_LDFLAGS 301s [gdk-pixbuf-sys 0.20.7] cargo:rerun-if-env-changed=SYSTEM_DEPS_GDK_PIXBUF_2_0_NO_PKG_CONFIG 301s [gdk-pixbuf-sys 0.20.7] cargo:rerun-if-env-changed=SYSTEM_DEPS_GDK_PIXBUF_2_0_BUILD_INTERNAL 301s [gdk-pixbuf-sys 0.20.7] cargo:rerun-if-env-changed=SYSTEM_DEPS_GDK_PIXBUF_2_0_LINK 301s [gdk-pixbuf-sys 0.20.7] 301s [gdk-pixbuf-sys 0.20.7] cargo:rustc-cfg=system_deps_have_gdk_pixbuf_2_0 301s 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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0--remap-path-prefix/tmp/tmp.cy4zYrLhIY/registry=/usr/share/cargo/registry-Ctarget-feature=+backchain' CARGO_FEATURE_V1_42=1 CARGO_FEATURE_V1_44=1 CARGO_FEATURE_V1_46=1 CARGO_MANIFEST_DIR=/tmp/tmp.cy4zYrLhIY/registry/pango-sys-0.20.7 CARGO_MANIFEST_PATH=/tmp/tmp.cy4zYrLhIY/registry/pango-sys-0.20.7/Cargo.toml CARGO_PKG_AUTHORS='The gtk-rs Project Developers' CARGO_PKG_DESCRIPTION='FFI bindings to libpango-1.0' CARGO_PKG_HOMEPAGE='https://gtk-rs.org/' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=pango-sys CARGO_PKG_README='' CARGO_PKG_REPOSITORY='https://github.com/gtk-rs/gtk-rs-core' CARGO_PKG_RUST_VERSION=1.70 CARGO_PKG_VERSION=0.20.7 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=20 CARGO_PKG_VERSION_PATCH=7 CARGO_PKG_VERSION_PRE='' DEBUG=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.cy4zYrLhIY/target/debug/deps:/tmp/tmp.cy4zYrLhIY/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/build/pango-sys-9148858f03bf443c/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.cy4zYrLhIY/target/debug/build/pango-sys-6dc5a8848ee39789/build-script-build` 301s [pango-sys 0.20.7] cargo:rerun-if-changed=/tmp/tmp.cy4zYrLhIY/registry/pango-sys-0.20.7/Cargo.toml 301s [pango-sys 0.20.7] cargo:rerun-if-env-changed=PANGO_NO_PKG_CONFIG 301s [pango-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_s390x-unknown-linux-gnu 301s [pango-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_s390x_unknown_linux_gnu 301s [pango-sys 0.20.7] cargo:rerun-if-env-changed=HOST_PKG_CONFIG 301s [pango-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG 301s [pango-sys 0.20.7] cargo:rerun-if-env-changed=DEB_HOST_GNU_TYPE 301s [pango-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_PATH_s390x-unknown-linux-gnu 301s [pango-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_PATH_s390x_unknown_linux_gnu 301s [pango-sys 0.20.7] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_PATH 301s [pango-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_PATH 301s [pango-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR_s390x-unknown-linux-gnu 301s [pango-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR_s390x_unknown_linux_gnu 301s [pango-sys 0.20.7] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_LIBDIR 301s [pango-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR 301s [pango-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR_s390x-unknown-linux-gnu 301s [pango-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR_s390x_unknown_linux_gnu 301s [pango-sys 0.20.7] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_SYSROOT_DIR 301s [pango-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR 301s [pango-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR 301s [pango-sys 0.20.7] cargo:rerun-if-env-changed=SYSROOT 301s [pango-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_s390x-unknown-linux-gnu 301s [pango-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_s390x_unknown_linux_gnu 301s [pango-sys 0.20.7] cargo:rerun-if-env-changed=HOST_PKG_CONFIG 301s [pango-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG 301s [pango-sys 0.20.7] cargo:rerun-if-env-changed=DEB_HOST_GNU_TYPE 301s [pango-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_PATH_s390x-unknown-linux-gnu 301s [pango-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_PATH_s390x_unknown_linux_gnu 301s [pango-sys 0.20.7] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_PATH 301s [pango-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_PATH 301s [pango-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR_s390x-unknown-linux-gnu 301s [pango-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR_s390x_unknown_linux_gnu 301s [pango-sys 0.20.7] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_LIBDIR 301s [pango-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR 301s [pango-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR_s390x-unknown-linux-gnu 301s [pango-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR_s390x_unknown_linux_gnu 301s [pango-sys 0.20.7] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_SYSROOT_DIR 301s [pango-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR 301s [pango-sys 0.20.7] cargo:rustc-link-lib=pango-1.0 301s [pango-sys 0.20.7] cargo:rustc-link-lib=gobject-2.0 301s [pango-sys 0.20.7] cargo:rustc-link-lib=glib-2.0 301s [pango-sys 0.20.7] cargo:rustc-link-lib=harfbuzz 301s [pango-sys 0.20.7] cargo:include=/usr/include/pango-1.0:/usr/include:/usr/include/glib-2.0:/usr/lib/s390x-linux-gnu/glib-2.0/include:/usr/include/sysprof-6:/usr/include/harfbuzz:/usr/include/freetype2:/usr/include/libpng16:/usr/include/libmount:/usr/include/blkid:/usr/include/fribidi:/usr/include/cairo:/usr/include/pixman-1 301s [pango-sys 0.20.7] cargo:rerun-if-env-changed=SYSTEM_DEPS_BUILD_INTERNAL 301s [pango-sys 0.20.7] cargo:rerun-if-env-changed=SYSTEM_DEPS_LINK 301s [pango-sys 0.20.7] cargo:rerun-if-env-changed=SYSTEM_DEPS_PANGO_LIB 301s [pango-sys 0.20.7] cargo:rerun-if-env-changed=SYSTEM_DEPS_PANGO_LIB_FRAMEWORK 301s [pango-sys 0.20.7] cargo:rerun-if-env-changed=SYSTEM_DEPS_PANGO_SEARCH_NATIVE 301s [pango-sys 0.20.7] cargo:rerun-if-env-changed=SYSTEM_DEPS_PANGO_SEARCH_FRAMEWORK 301s [pango-sys 0.20.7] cargo:rerun-if-env-changed=SYSTEM_DEPS_PANGO_INCLUDE 301s [pango-sys 0.20.7] cargo:rerun-if-env-changed=SYSTEM_DEPS_PANGO_LDFLAGS 301s [pango-sys 0.20.7] cargo:rerun-if-env-changed=SYSTEM_DEPS_PANGO_NO_PKG_CONFIG 301s [pango-sys 0.20.7] cargo:rerun-if-env-changed=SYSTEM_DEPS_PANGO_BUILD_INTERNAL 301s [pango-sys 0.20.7] cargo:rerun-if-env-changed=SYSTEM_DEPS_PANGO_LINK 301s [pango-sys 0.20.7] 301s [pango-sys 0.20.7] cargo:rustc-cfg=system_deps_have_pango 301s 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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0--remap-path-prefix/tmp/tmp.cy4zYrLhIY/registry=/usr/share/cargo/registry-Ctarget-feature=+backchain' CARGO_FEATURE_GLIB_SYS=1 CARGO_FEATURE_USE_GLIB=1 CARGO_MANIFEST_DIR=/tmp/tmp.cy4zYrLhIY/registry/cairo-sys-rs-0.20.7 CARGO_MANIFEST_PATH=/tmp/tmp.cy4zYrLhIY/registry/cairo-sys-rs-0.20.7/Cargo.toml CARGO_PKG_AUTHORS='The gtk-rs Project Developers' CARGO_PKG_DESCRIPTION='FFI bindings to libcairo' CARGO_PKG_HOMEPAGE='https://gtk-rs.org/' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=cairo-sys-rs CARGO_PKG_README='' CARGO_PKG_REPOSITORY='https://github.com/gtk-rs/gtk-rs-core' CARGO_PKG_RUST_VERSION=1.70 CARGO_PKG_VERSION=0.20.7 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=20 CARGO_PKG_VERSION_PATCH=7 CARGO_PKG_VERSION_PRE='' DEBUG=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.cy4zYrLhIY/target/debug/deps:/tmp/tmp.cy4zYrLhIY/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/build/cairo-sys-rs-9c51754cd28745bb/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.cy4zYrLhIY/target/debug/build/cairo-sys-rs-4972b5d5a676236d/build-script-build` 301s [cairo-sys-rs 0.20.7] cargo:rerun-if-changed=/tmp/tmp.cy4zYrLhIY/registry/cairo-sys-rs-0.20.7/Cargo.toml 301s [cairo-sys-rs 0.20.7] cargo:rerun-if-env-changed=CAIRO_NO_PKG_CONFIG 301s [cairo-sys-rs 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_s390x-unknown-linux-gnu 301s [cairo-sys-rs 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_s390x_unknown_linux_gnu 301s [cairo-sys-rs 0.20.7] cargo:rerun-if-env-changed=HOST_PKG_CONFIG 301s [cairo-sys-rs 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG 301s [cairo-sys-rs 0.20.7] cargo:rerun-if-env-changed=DEB_HOST_GNU_TYPE 301s [cairo-sys-rs 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_PATH_s390x-unknown-linux-gnu 301s [cairo-sys-rs 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_PATH_s390x_unknown_linux_gnu 301s [cairo-sys-rs 0.20.7] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_PATH 301s [cairo-sys-rs 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_PATH 301s [cairo-sys-rs 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR_s390x-unknown-linux-gnu 301s [cairo-sys-rs 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR_s390x_unknown_linux_gnu 301s [cairo-sys-rs 0.20.7] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_LIBDIR 301s [cairo-sys-rs 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR 301s [cairo-sys-rs 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR_s390x-unknown-linux-gnu 301s [cairo-sys-rs 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR_s390x_unknown_linux_gnu 301s [cairo-sys-rs 0.20.7] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_SYSROOT_DIR 301s [cairo-sys-rs 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR 301s [cairo-sys-rs 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR 301s [cairo-sys-rs 0.20.7] cargo:rerun-if-env-changed=SYSROOT 301s [cairo-sys-rs 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_s390x-unknown-linux-gnu 301s [cairo-sys-rs 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_s390x_unknown_linux_gnu 301s [cairo-sys-rs 0.20.7] cargo:rerun-if-env-changed=HOST_PKG_CONFIG 301s [cairo-sys-rs 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG 301s [cairo-sys-rs 0.20.7] cargo:rerun-if-env-changed=DEB_HOST_GNU_TYPE 301s [cairo-sys-rs 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_PATH_s390x-unknown-linux-gnu 301s [cairo-sys-rs 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_PATH_s390x_unknown_linux_gnu 301s [cairo-sys-rs 0.20.7] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_PATH 301s [cairo-sys-rs 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_PATH 301s [cairo-sys-rs 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR_s390x-unknown-linux-gnu 301s [cairo-sys-rs 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR_s390x_unknown_linux_gnu 301s [cairo-sys-rs 0.20.7] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_LIBDIR 301s [cairo-sys-rs 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR 301s [cairo-sys-rs 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR_s390x-unknown-linux-gnu 301s [cairo-sys-rs 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR_s390x_unknown_linux_gnu 301s [cairo-sys-rs 0.20.7] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_SYSROOT_DIR 301s [cairo-sys-rs 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR 301s [cairo-sys-rs 0.20.7] cargo:rerun-if-env-changed=CAIRO_GOBJECT_NO_PKG_CONFIG 301s [cairo-sys-rs 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_s390x-unknown-linux-gnu 301s [cairo-sys-rs 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_s390x_unknown_linux_gnu 301s [cairo-sys-rs 0.20.7] cargo:rerun-if-env-changed=HOST_PKG_CONFIG 301s [cairo-sys-rs 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG 301s [cairo-sys-rs 0.20.7] cargo:rerun-if-env-changed=DEB_HOST_GNU_TYPE 301s [cairo-sys-rs 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_PATH_s390x-unknown-linux-gnu 301s [cairo-sys-rs 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_PATH_s390x_unknown_linux_gnu 301s [cairo-sys-rs 0.20.7] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_PATH 301s [cairo-sys-rs 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_PATH 301s [cairo-sys-rs 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR_s390x-unknown-linux-gnu 301s [cairo-sys-rs 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR_s390x_unknown_linux_gnu 301s [cairo-sys-rs 0.20.7] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_LIBDIR 301s [cairo-sys-rs 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR 301s [cairo-sys-rs 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR_s390x-unknown-linux-gnu 301s [cairo-sys-rs 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR_s390x_unknown_linux_gnu 301s [cairo-sys-rs 0.20.7] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_SYSROOT_DIR 301s [cairo-sys-rs 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR 301s [cairo-sys-rs 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR 301s [cairo-sys-rs 0.20.7] cargo:rerun-if-env-changed=SYSROOT 301s [cairo-sys-rs 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_s390x-unknown-linux-gnu 301s [cairo-sys-rs 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_s390x_unknown_linux_gnu 301s [cairo-sys-rs 0.20.7] cargo:rerun-if-env-changed=HOST_PKG_CONFIG 301s [cairo-sys-rs 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG 301s [cairo-sys-rs 0.20.7] cargo:rerun-if-env-changed=DEB_HOST_GNU_TYPE 301s [cairo-sys-rs 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_PATH_s390x-unknown-linux-gnu 301s [cairo-sys-rs 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_PATH_s390x_unknown_linux_gnu 301s [cairo-sys-rs 0.20.7] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_PATH 301s [cairo-sys-rs 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_PATH 301s [cairo-sys-rs 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR_s390x-unknown-linux-gnu 301s [cairo-sys-rs 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR_s390x_unknown_linux_gnu 301s [cairo-sys-rs 0.20.7] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_LIBDIR 301s [cairo-sys-rs 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR 301s [cairo-sys-rs 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR_s390x-unknown-linux-gnu 301s [cairo-sys-rs 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR_s390x_unknown_linux_gnu 301s [cairo-sys-rs 0.20.7] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_SYSROOT_DIR 301s [cairo-sys-rs 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR 301s [cairo-sys-rs 0.20.7] cargo:rustc-link-lib=cairo 301s [cairo-sys-rs 0.20.7] cargo:rustc-link-lib=cairo-gobject 301s [cairo-sys-rs 0.20.7] cargo:rustc-link-lib=cairo 301s [cairo-sys-rs 0.20.7] cargo:rustc-link-lib=gobject-2.0 301s [cairo-sys-rs 0.20.7] cargo:rustc-link-lib=glib-2.0 301s [cairo-sys-rs 0.20.7] cargo:include=/usr/include/cairo:/usr/include:/usr/include/libpng16:/usr/include/freetype2:/usr/include/pixman-1:/usr/include/cairo:/usr/include:/usr/include/libpng16:/usr/include/freetype2:/usr/include/pixman-1:/usr/include/glib-2.0:/usr/lib/s390x-linux-gnu/glib-2.0/include:/usr/include/sysprof-6 301s [cairo-sys-rs 0.20.7] cargo:rerun-if-env-changed=SYSTEM_DEPS_BUILD_INTERNAL 301s [cairo-sys-rs 0.20.7] cargo:rerun-if-env-changed=SYSTEM_DEPS_LINK 301s [cairo-sys-rs 0.20.7] cargo:rerun-if-env-changed=SYSTEM_DEPS_CAIRO_LIB 301s [cairo-sys-rs 0.20.7] cargo:rerun-if-env-changed=SYSTEM_DEPS_CAIRO_LIB_FRAMEWORK 301s [cairo-sys-rs 0.20.7] cargo:rerun-if-env-changed=SYSTEM_DEPS_CAIRO_SEARCH_NATIVE 301s [cairo-sys-rs 0.20.7] cargo:rerun-if-env-changed=SYSTEM_DEPS_CAIRO_SEARCH_FRAMEWORK 301s [cairo-sys-rs 0.20.7] cargo:rerun-if-env-changed=SYSTEM_DEPS_CAIRO_INCLUDE 301s [cairo-sys-rs 0.20.7] cargo:rerun-if-env-changed=SYSTEM_DEPS_CAIRO_LDFLAGS 301s [cairo-sys-rs 0.20.7] cargo:rerun-if-env-changed=SYSTEM_DEPS_CAIRO_NO_PKG_CONFIG 301s [cairo-sys-rs 0.20.7] cargo:rerun-if-env-changed=SYSTEM_DEPS_CAIRO_BUILD_INTERNAL 301s [cairo-sys-rs 0.20.7] cargo:rerun-if-env-changed=SYSTEM_DEPS_CAIRO_LINK 301s [cairo-sys-rs 0.20.7] cargo:rerun-if-env-changed=SYSTEM_DEPS_CAIRO_GOBJECT_LIB 301s [cairo-sys-rs 0.20.7] cargo:rerun-if-env-changed=SYSTEM_DEPS_CAIRO_GOBJECT_LIB_FRAMEWORK 301s [cairo-sys-rs 0.20.7] cargo:rerun-if-env-changed=SYSTEM_DEPS_CAIRO_GOBJECT_SEARCH_NATIVE 301s [cairo-sys-rs 0.20.7] cargo:rerun-if-env-changed=SYSTEM_DEPS_CAIRO_GOBJECT_SEARCH_FRAMEWORK 301s [cairo-sys-rs 0.20.7] cargo:rerun-if-env-changed=SYSTEM_DEPS_CAIRO_GOBJECT_INCLUDE 301s [cairo-sys-rs 0.20.7] cargo:rerun-if-env-changed=SYSTEM_DEPS_CAIRO_GOBJECT_LDFLAGS 301s [cairo-sys-rs 0.20.7] cargo:rerun-if-env-changed=SYSTEM_DEPS_CAIRO_GOBJECT_NO_PKG_CONFIG 301s [cairo-sys-rs 0.20.7] cargo:rerun-if-env-changed=SYSTEM_DEPS_CAIRO_GOBJECT_BUILD_INTERNAL 301s [cairo-sys-rs 0.20.7] cargo:rerun-if-env-changed=SYSTEM_DEPS_CAIRO_GOBJECT_LINK 301s [cairo-sys-rs 0.20.7] 301s [cairo-sys-rs 0.20.7] cargo:rustc-cfg=system_deps_have_cairo 301s [cairo-sys-rs 0.20.7] cargo:rustc-cfg=system_deps_have_cairo_gobject 301s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=serde CARGO_MANIFEST_DIR=/tmp/tmp.cy4zYrLhIY/registry/serde-1.0.217 CARGO_MANIFEST_PATH=/tmp/tmp.cy4zYrLhIY/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.cy4zYrLhIY/target/debug/deps OUT_DIR=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/build/serde-c08ea6899e623ec6/out rustc --crate-name serde --edition=2018 /tmp/tmp.cy4zYrLhIY/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=0e7dff716e38da0d -C extra-filename=-0e7dff716e38da0d --out-dir /tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.cy4zYrLhIY/target/debug/deps --extern serde_derive=/tmp/tmp.cy4zYrLhIY/target/debug/deps/libserde_derive-85fb19fec9ccb150.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.cy4zYrLhIY/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)'` 303s warning: `serde` (lib) generated 1 warning (1 duplicate) 303s Compiling concurrent-queue v2.5.0 303s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=concurrent_queue CARGO_MANIFEST_DIR=/tmp/tmp.cy4zYrLhIY/registry/concurrent-queue-2.5.0 CARGO_MANIFEST_PATH=/tmp/tmp.cy4zYrLhIY/registry/concurrent-queue-2.5.0/Cargo.toml CARGO_PKG_AUTHORS='Stjepan Glavina :Taiki Endo :John Nunley ' CARGO_PKG_DESCRIPTION='Concurrent multi-producer multi-consumer queue' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=concurrent-queue CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/smol-rs/concurrent-queue' CARGO_PKG_RUST_VERSION=1.60 CARGO_PKG_VERSION=2.5.0 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=5 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.cy4zYrLhIY/target/debug/deps rustc --crate-name concurrent_queue --edition=2021 /tmp/tmp.cy4zYrLhIY/registry/concurrent-queue-2.5.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "portable-atomic", "std"))' -C metadata=9bda17a56537581e -C extra-filename=-9bda17a56537581e --out-dir /tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.cy4zYrLhIY/target/debug/deps --extern crossbeam_utils=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps/libcrossbeam_utils-bcaf20eecaf4c1fc.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.cy4zYrLhIY/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 304s warning: unexpected `cfg` condition name: `loom` 304s --> /usr/share/cargo/registry/concurrent-queue-2.5.0/src/bounded.rs:209:23 304s | 304s 209 | #[cfg(loom)] 304s | ^^^^ 304s | 304s = help: expected names are: `clippy`, `debug_assertions`, `doc`, `docsrs`, `doctest`, `feature`, `fmt_debug`, `miri`, `overflow_checks`, `panic`, `proc_macro`, `relocation_model`, `rustfmt`, `sanitize`, `sanitizer_cfi_generalize_pointers`, `sanitizer_cfi_normalize_integers`, `target_abi`, `target_arch`, `target_endian`, `target_env`, `target_family`, `target_feature`, `target_has_atomic`, `target_has_atomic_equal_alignment`, `target_has_atomic_load_store`, `target_os`, `target_pointer_width`, `target_thread_local`, `target_vendor`, `test`, `ub_checks`, `unix`, and `windows` 304s = help: consider using a Cargo feature instead 304s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 304s [lints.rust] 304s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(loom)'] } 304s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(loom)");` to the top of the `build.rs` 304s = note: see for more information about checking conditional configuration 304s = note: `#[warn(unexpected_cfgs)]` on by default 304s 304s warning: unexpected `cfg` condition name: `loom` 304s --> /usr/share/cargo/registry/concurrent-queue-2.5.0/src/bounded.rs:281:23 304s | 304s 281 | #[cfg(loom)] 304s | ^^^^ 304s | 304s = help: consider using a Cargo feature instead 304s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 304s [lints.rust] 304s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(loom)'] } 304s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(loom)");` to the top of the `build.rs` 304s = note: see for more information about checking conditional configuration 304s 304s warning: unexpected `cfg` condition name: `loom` 304s --> /usr/share/cargo/registry/concurrent-queue-2.5.0/src/unbounded.rs:43:15 304s | 304s 43 | #[cfg(not(loom))] 304s | ^^^^ 304s | 304s = help: consider using a Cargo feature instead 304s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 304s [lints.rust] 304s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(loom)'] } 304s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(loom)");` to the top of the `build.rs` 304s = note: see for more information about checking conditional configuration 304s 304s warning: unexpected `cfg` condition name: `loom` 304s --> /usr/share/cargo/registry/concurrent-queue-2.5.0/src/unbounded.rs:49:15 304s | 304s 49 | #[cfg(not(loom))] 304s | ^^^^ 304s | 304s = help: consider using a Cargo feature instead 304s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 304s [lints.rust] 304s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(loom)'] } 304s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(loom)");` to the top of the `build.rs` 304s = note: see for more information about checking conditional configuration 304s 304s warning: unexpected `cfg` condition name: `loom` 304s --> /usr/share/cargo/registry/concurrent-queue-2.5.0/src/unbounded.rs:54:11 304s | 304s 54 | #[cfg(loom)] 304s | ^^^^ 304s | 304s = help: consider using a Cargo feature instead 304s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 304s [lints.rust] 304s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(loom)'] } 304s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(loom)");` to the top of the `build.rs` 304s = note: see for more information about checking conditional configuration 304s 304s warning: unexpected `cfg` condition name: `loom` 304s --> /usr/share/cargo/registry/concurrent-queue-2.5.0/src/unbounded.rs:153:29 304s | 304s 153 | const_if: #[cfg(not(loom))]; 304s | ^^^^ 304s | 304s = help: consider using a Cargo feature instead 304s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 304s [lints.rust] 304s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(loom)'] } 304s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(loom)");` to the top of the `build.rs` 304s = note: see for more information about checking conditional configuration 304s 304s warning: unexpected `cfg` condition name: `loom` 304s --> /usr/share/cargo/registry/concurrent-queue-2.5.0/src/sync.rs:3:44 304s | 304s 3 | #[cfg(all(feature = "portable-atomic", not(loom)))] 304s | ^^^^ 304s | 304s = help: consider using a Cargo feature instead 304s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 304s [lints.rust] 304s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(loom)'] } 304s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(loom)");` to the top of the `build.rs` 304s = note: see for more information about checking conditional configuration 304s 304s warning: unexpected `cfg` condition name: `loom` 304s --> /usr/share/cargo/registry/concurrent-queue-2.5.0/src/sync.rs:15:49 304s | 304s 15 | #[cfg(all(not(feature = "portable-atomic"), not(loom)))] 304s | ^^^^ 304s | 304s = help: consider using a Cargo feature instead 304s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 304s [lints.rust] 304s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(loom)'] } 304s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(loom)");` to the top of the `build.rs` 304s = note: see for more information about checking conditional configuration 304s 304s warning: unexpected `cfg` condition name: `loom` 304s --> /usr/share/cargo/registry/concurrent-queue-2.5.0/src/sync.rs:31:7 304s | 304s 31 | #[cfg(loom)] 304s | ^^^^ 304s | 304s = help: consider using a Cargo feature instead 304s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 304s [lints.rust] 304s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(loom)'] } 304s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(loom)");` to the top of the `build.rs` 304s = note: see for more information about checking conditional configuration 304s 304s warning: unexpected `cfg` condition name: `loom` 304s --> /usr/share/cargo/registry/concurrent-queue-2.5.0/src/sync.rs:57:7 304s | 304s 57 | #[cfg(loom)] 304s | ^^^^ 304s | 304s = help: consider using a Cargo feature instead 304s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 304s [lints.rust] 304s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(loom)'] } 304s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(loom)");` to the top of the `build.rs` 304s = note: see for more information about checking conditional configuration 304s 304s warning: unexpected `cfg` condition name: `loom` 304s --> /usr/share/cargo/registry/concurrent-queue-2.5.0/src/sync.rs:60:11 304s | 304s 60 | #[cfg(not(loom))] 304s | ^^^^ 304s | 304s = help: consider using a Cargo feature instead 304s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 304s [lints.rust] 304s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(loom)'] } 304s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(loom)");` to the top of the `build.rs` 304s = note: see for more information about checking conditional configuration 304s 304s warning: unexpected `cfg` condition name: `loom` 304s --> /usr/share/cargo/registry/concurrent-queue-2.5.0/src/lib.rs:153:29 304s | 304s 153 | const_if: #[cfg(not(loom))]; 304s | ^^^^ 304s | 304s = help: consider using a Cargo feature instead 304s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 304s [lints.rust] 304s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(loom)'] } 304s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(loom)");` to the top of the `build.rs` 304s = note: see for more information about checking conditional configuration 304s 304s warning: unexpected `cfg` condition name: `loom` 304s --> /usr/share/cargo/registry/concurrent-queue-2.5.0/src/lib.rs:633:80 304s | 304s 633 | #[cfg(all(any(target_arch = "x86", target_arch = "x86_64"), not(miri), not(loom)))] 304s | ^^^^ 304s | 304s = help: consider using a Cargo feature instead 304s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 304s [lints.rust] 304s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(loom)'] } 304s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(loom)");` to the top of the `build.rs` 304s = note: see for more information about checking conditional configuration 304s 304s warning: `concurrent-queue` (lib) generated 14 warnings (1 duplicate) 304s Compiling getrandom v0.2.15 304s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=getrandom CARGO_MANIFEST_DIR=/tmp/tmp.cy4zYrLhIY/registry/getrandom-0.2.15 CARGO_MANIFEST_PATH=/tmp/tmp.cy4zYrLhIY/registry/getrandom-0.2.15/Cargo.toml CARGO_PKG_AUTHORS='The Rand Project Developers' CARGO_PKG_DESCRIPTION='A small cross-platform library for retrieving random data from system source' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=getrandom CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-random/getrandom' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.2.15 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=15 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.cy4zYrLhIY/target/debug/deps rustc --crate-name getrandom --edition=2018 /tmp/tmp.cy4zYrLhIY/registry/getrandom-0.2.15/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("compiler_builtins", "core", "custom", "linux_disable_fallback", "rdrand", "rustc-dep-of-std", "std", "test-in-browser"))' -C metadata=ed47f71499f7e17d -C extra-filename=-ed47f71499f7e17d --out-dir /tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.cy4zYrLhIY/target/debug/deps --extern cfg_if=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps/libcfg_if-ff3ff84a061de73f.rmeta --extern libc=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps/liblibc-cf2521928ac070dc.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.cy4zYrLhIY/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 304s warning: unexpected `cfg` condition value: `js` 304s --> /usr/share/cargo/registry/getrandom-0.2.15/src/lib.rs:334:25 304s | 304s 334 | } else if #[cfg(all(feature = "js", 304s | ^^^^^^^^^^^^^^ 304s | 304s = note: expected values for `feature` are: `compiler_builtins`, `core`, `custom`, `linux_disable_fallback`, `rdrand`, `rustc-dep-of-std`, `std`, and `test-in-browser` 304s = help: consider adding `js` as a feature in `Cargo.toml` 304s = note: see for more information about checking conditional configuration 304s = note: `#[warn(unexpected_cfgs)]` on by default 304s 304s warning: `getrandom` (lib) generated 2 warnings (1 duplicate) 304s Compiling memoffset v0.8.0 304s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.cy4zYrLhIY/registry/memoffset-0.8.0 CARGO_MANIFEST_PATH=/tmp/tmp.cy4zYrLhIY/registry/memoffset-0.8.0/Cargo.toml CARGO_PKG_AUTHORS='Gilad Naaman ' CARGO_PKG_DESCRIPTION='offset_of functionality for Rust structs.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=memoffset CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/Gilnaa/memoffset' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.8.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=8 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.cy4zYrLhIY/target/debug/deps rustc --crate-name build_script_build --edition=2015 /tmp/tmp.cy4zYrLhIY/registry/memoffset-0.8.0/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "unstable_const"))' -C metadata=b637076bbed49000 -C extra-filename=-b637076bbed49000 --out-dir /tmp/tmp.cy4zYrLhIY/target/debug/build/memoffset-b637076bbed49000 -L dependency=/tmp/tmp.cy4zYrLhIY/target/debug/deps --extern autocfg=/tmp/tmp.cy4zYrLhIY/target/debug/deps/libautocfg-9ebcd9511383083c.rlib --cap-lints warn` 304s Compiling enumflags2_derive v0.7.10 304s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=enumflags2_derive CARGO_MANIFEST_DIR=/tmp/tmp.cy4zYrLhIY/registry/enumflags2_derive-0.7.10 CARGO_MANIFEST_PATH=/tmp/tmp.cy4zYrLhIY/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.cy4zYrLhIY/target/debug/deps rustc --crate-name enumflags2_derive --edition=2018 /tmp/tmp.cy4zYrLhIY/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=588090abb48fd7e4 -C extra-filename=-588090abb48fd7e4 --out-dir /tmp/tmp.cy4zYrLhIY/target/debug/deps -L dependency=/tmp/tmp.cy4zYrLhIY/target/debug/deps --extern proc_macro2=/tmp/tmp.cy4zYrLhIY/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rlib --extern quote=/tmp/tmp.cy4zYrLhIY/target/debug/deps/libquote-dc92c6f25ee0f0c6.rlib --extern syn=/tmp/tmp.cy4zYrLhIY/target/debug/deps/libsyn-0167beed9e699402.rlib --extern proc_macro --cap-lints warn` 305s Compiling cfg_aliases v0.2.1 305s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=cfg_aliases CARGO_MANIFEST_DIR=/tmp/tmp.cy4zYrLhIY/registry/cfg_aliases-0.2.1 CARGO_MANIFEST_PATH=/tmp/tmp.cy4zYrLhIY/registry/cfg_aliases-0.2.1/Cargo.toml CARGO_PKG_AUTHORS='Zicklag ' CARGO_PKG_DESCRIPTION='A tiny utility to help save you a lot of effort with long winded `#[cfg()]` checks.' CARGO_PKG_HOMEPAGE='https://github.com/katharostech/cfg_aliases' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=cfg_aliases CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/katharostech/cfg_aliases' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.2.1 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.cy4zYrLhIY/target/debug/deps rustc --crate-name cfg_aliases --edition=2018 /tmp/tmp.cy4zYrLhIY/registry/cfg_aliases-0.2.1/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 '--deny=clippy::str_to_string' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=8701cbe9ff8ee006 -C extra-filename=-8701cbe9ff8ee006 --out-dir /tmp/tmp.cy4zYrLhIY/target/debug/deps -L dependency=/tmp/tmp.cy4zYrLhIY/target/debug/deps --cap-lints warn` 305s Compiling futures-io v0.3.31 305s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=futures_io CARGO_MANIFEST_DIR=/tmp/tmp.cy4zYrLhIY/registry/futures-io-0.3.31 CARGO_MANIFEST_PATH=/tmp/tmp.cy4zYrLhIY/registry/futures-io-0.3.31/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='The `AsyncRead`, `AsyncWrite`, `AsyncSeek`, and `AsyncBufRead` traits for the futures-rs library. 305s ' CARGO_PKG_HOMEPAGE='https://rust-lang.github.io/futures-rs' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=futures-io CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/futures-rs' CARGO_PKG_RUST_VERSION=1.36 CARGO_PKG_VERSION=0.3.31 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=31 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.cy4zYrLhIY/target/debug/deps rustc --crate-name futures_io --edition=2018 /tmp/tmp.cy4zYrLhIY/registry/futures-io-0.3.31/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --warn=unreachable_pub --warn=unexpected_cfgs --warn=single_use_lifetimes --warn=rust_2018_idioms --warn=missing_debug_implementations --check-cfg 'cfg(futures_sanitizer)' --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "std", "unstable"))' -C metadata=1a4387591f8b2b95 -C extra-filename=-1a4387591f8b2b95 --out-dir /tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.cy4zYrLhIY/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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.cy4zYrLhIY/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 305s warning: `futures-io` (lib) generated 1 warning (1 duplicate) 305s Compiling parking v2.2.0 305s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=parking CARGO_MANIFEST_DIR=/tmp/tmp.cy4zYrLhIY/registry/parking-2.2.0 CARGO_MANIFEST_PATH=/tmp/tmp.cy4zYrLhIY/registry/parking-2.2.0/Cargo.toml CARGO_PKG_AUTHORS='Stjepan Glavina :The Rust Project Developers' CARGO_PKG_DESCRIPTION='Thread parking and unparking' CARGO_PKG_HOMEPAGE='https://github.com/smol-rs/parking' CARGO_PKG_LICENSE='Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=parking CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/smol-rs/parking' CARGO_PKG_RUST_VERSION=1.51 CARGO_PKG_VERSION=2.2.0 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.cy4zYrLhIY/target/debug/deps rustc --crate-name parking --edition=2018 /tmp/tmp.cy4zYrLhIY/registry/parking-2.2.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=0a38dc17b1bc33e2 -C extra-filename=-0a38dc17b1bc33e2 --out-dir /tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.cy4zYrLhIY/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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.cy4zYrLhIY/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 305s warning: unexpected `cfg` condition name: `loom` 305s --> /usr/share/cargo/registry/parking-2.2.0/src/lib.rs:41:15 305s | 305s 41 | #[cfg(not(all(loom, feature = "loom")))] 305s | ^^^^ 305s | 305s = help: expected names are: `clippy`, `debug_assertions`, `doc`, `docsrs`, `doctest`, `feature`, `fmt_debug`, `miri`, `overflow_checks`, `panic`, `proc_macro`, `relocation_model`, `rustfmt`, `sanitize`, `sanitizer_cfi_generalize_pointers`, `sanitizer_cfi_normalize_integers`, `target_abi`, `target_arch`, `target_endian`, `target_env`, `target_family`, `target_feature`, `target_has_atomic`, `target_has_atomic_equal_alignment`, `target_has_atomic_load_store`, `target_os`, `target_pointer_width`, `target_thread_local`, `target_vendor`, `test`, `ub_checks`, `unix`, and `windows` 305s = help: consider using a Cargo feature instead 305s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 305s [lints.rust] 305s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(loom)'] } 305s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(loom)");` to the top of the `build.rs` 305s = note: see for more information about checking conditional configuration 305s = note: `#[warn(unexpected_cfgs)]` on by default 305s 305s warning: unexpected `cfg` condition value: `loom` 305s --> /usr/share/cargo/registry/parking-2.2.0/src/lib.rs:41:21 305s | 305s 41 | #[cfg(not(all(loom, feature = "loom")))] 305s | ^^^^^^^^^^^^^^^^ help: remove the condition 305s | 305s = note: no expected values for `feature` 305s = help: consider adding `loom` as a feature in `Cargo.toml` 305s = note: see for more information about checking conditional configuration 305s 305s warning: unexpected `cfg` condition name: `loom` 305s --> /usr/share/cargo/registry/parking-2.2.0/src/lib.rs:44:11 305s | 305s 44 | #[cfg(all(loom, feature = "loom"))] 305s | ^^^^ 305s | 305s = help: consider using a Cargo feature instead 305s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 305s [lints.rust] 305s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(loom)'] } 305s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(loom)");` to the top of the `build.rs` 305s = note: see for more information about checking conditional configuration 305s 305s warning: unexpected `cfg` condition value: `loom` 305s --> /usr/share/cargo/registry/parking-2.2.0/src/lib.rs:44:17 305s | 305s 44 | #[cfg(all(loom, feature = "loom"))] 305s | ^^^^^^^^^^^^^^^^ help: remove the condition 305s | 305s = note: no expected values for `feature` 305s = help: consider adding `loom` as a feature in `Cargo.toml` 305s = note: see for more information about checking conditional configuration 305s 305s warning: unexpected `cfg` condition name: `loom` 305s --> /usr/share/cargo/registry/parking-2.2.0/src/lib.rs:54:15 305s | 305s 54 | #[cfg(not(all(loom, feature = "loom")))] 305s | ^^^^ 305s | 305s = help: consider using a Cargo feature instead 305s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 305s [lints.rust] 305s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(loom)'] } 305s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(loom)");` to the top of the `build.rs` 305s = note: see for more information about checking conditional configuration 305s 305s warning: unexpected `cfg` condition value: `loom` 305s --> /usr/share/cargo/registry/parking-2.2.0/src/lib.rs:54:21 305s | 305s 54 | #[cfg(not(all(loom, feature = "loom")))] 305s | ^^^^^^^^^^^^^^^^ help: remove the condition 305s | 305s = note: no expected values for `feature` 305s = help: consider adding `loom` as a feature in `Cargo.toml` 305s = note: see for more information about checking conditional configuration 305s 305s warning: unexpected `cfg` condition name: `loom` 305s --> /usr/share/cargo/registry/parking-2.2.0/src/lib.rs:140:15 305s | 305s 140 | #[cfg(not(loom))] 305s | ^^^^ 305s | 305s = help: consider using a Cargo feature instead 305s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 305s [lints.rust] 305s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(loom)'] } 305s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(loom)");` to the top of the `build.rs` 305s = note: see for more information about checking conditional configuration 305s 305s warning: unexpected `cfg` condition name: `loom` 305s --> /usr/share/cargo/registry/parking-2.2.0/src/lib.rs:160:15 305s | 305s 160 | #[cfg(not(loom))] 305s | ^^^^ 305s | 305s = help: consider using a Cargo feature instead 305s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 305s [lints.rust] 305s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(loom)'] } 305s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(loom)");` to the top of the `build.rs` 305s = note: see for more information about checking conditional configuration 305s 305s warning: unexpected `cfg` condition name: `loom` 305s --> /usr/share/cargo/registry/parking-2.2.0/src/lib.rs:379:27 305s | 305s 379 | #[cfg(not(loom))] 305s | ^^^^ 305s | 305s = help: consider using a Cargo feature instead 305s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 305s [lints.rust] 305s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(loom)'] } 305s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(loom)");` to the top of the `build.rs` 305s = note: see for more information about checking conditional configuration 305s 305s warning: unexpected `cfg` condition name: `loom` 305s --> /usr/share/cargo/registry/parking-2.2.0/src/lib.rs:393:23 305s | 305s 393 | #[cfg(loom)] 305s | ^^^^ 305s | 305s = help: consider using a Cargo feature instead 305s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 305s [lints.rust] 305s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(loom)'] } 305s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(loom)");` to the top of the `build.rs` 305s = note: see for more information about checking conditional configuration 305s 305s warning: `parking` (lib) generated 11 warnings (1 duplicate) 305s Compiling event-listener v5.4.0 305s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=event_listener CARGO_MANIFEST_DIR=/tmp/tmp.cy4zYrLhIY/registry/event-listener-5.4.0 CARGO_MANIFEST_PATH=/tmp/tmp.cy4zYrLhIY/registry/event-listener-5.4.0/Cargo.toml CARGO_PKG_AUTHORS='Stjepan Glavina :John Nunley ' CARGO_PKG_DESCRIPTION='Notify async tasks or threads' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=event-listener CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/smol-rs/event-listener' CARGO_PKG_RUST_VERSION=1.60 CARGO_PKG_VERSION=5.4.0 CARGO_PKG_VERSION_MAJOR=5 CARGO_PKG_VERSION_MINOR=4 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.cy4zYrLhIY/target/debug/deps rustc --crate-name event_listener --edition=2021 /tmp/tmp.cy4zYrLhIY/registry/event-listener-5.4.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --warn=unexpected_cfgs --check-cfg 'cfg(loom)' --cfg 'feature="default"' --cfg 'feature="parking"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("critical-section", "default", "parking", "std"))' -C metadata=93bdad7496d4853a -C extra-filename=-93bdad7496d4853a --out-dir /tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.cy4zYrLhIY/target/debug/deps --extern concurrent_queue=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps/libconcurrent_queue-9bda17a56537581e.rmeta --extern parking=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps/libparking-0a38dc17b1bc33e2.rmeta --extern pin_project_lite=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps/libpin_project_lite-5dc815523e98d889.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.cy4zYrLhIY/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 305s warning: unexpected `cfg` condition value: `portable-atomic` 305s --> /usr/share/cargo/registry/event-listener-5.4.0/src/lib.rs:1362:15 305s | 305s 1362 | #[cfg(not(feature = "portable-atomic"))] 305s | ^^^^^^^^^^^^^^^^^^^^^^^^^^^ 305s | 305s = note: expected values for `feature` are: `critical-section`, `default`, `parking`, and `std` 305s = help: consider adding `portable-atomic` as a feature in `Cargo.toml` 305s = note: see for more information about checking conditional configuration 305s = note: requested on the command line with `-W unexpected-cfgs` 305s 305s warning: unexpected `cfg` condition value: `portable-atomic` 305s --> /usr/share/cargo/registry/event-listener-5.4.0/src/lib.rs:1364:15 305s | 305s 1364 | #[cfg(not(feature = "portable-atomic"))] 305s | ^^^^^^^^^^^^^^^^^^^^^^^^^^^ 305s | 305s = note: expected values for `feature` are: `critical-section`, `default`, `parking`, and `std` 305s = help: consider adding `portable-atomic` as a feature in `Cargo.toml` 305s = note: see for more information about checking conditional configuration 305s 305s warning: unexpected `cfg` condition value: `portable-atomic` 305s --> /usr/share/cargo/registry/event-listener-5.4.0/src/lib.rs:1367:11 305s | 305s 1367 | #[cfg(feature = "portable-atomic")] 305s | ^^^^^^^^^^^^^^^^^^^^^^^^^^^ 305s | 305s = note: expected values for `feature` are: `critical-section`, `default`, `parking`, and `std` 305s = help: consider adding `portable-atomic` as a feature in `Cargo.toml` 305s = note: see for more information about checking conditional configuration 305s 305s warning: unexpected `cfg` condition value: `portable-atomic` 305s --> /usr/share/cargo/registry/event-listener-5.4.0/src/lib.rs:1369:11 305s | 305s 1369 | #[cfg(feature = "portable-atomic")] 305s | ^^^^^^^^^^^^^^^^^^^^^^^^^^^ 305s | 305s = note: expected values for `feature` are: `critical-section`, `default`, `parking`, and `std` 305s = help: consider adding `portable-atomic` as a feature in `Cargo.toml` 305s = note: see for more information about checking conditional configuration 305s 305s warning: `event-listener` (lib) generated 5 warnings (1 duplicate) 305s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=gio CARGO_MANIFEST_DIR=/tmp/tmp.cy4zYrLhIY/registry/gio-0.20.7 CARGO_MANIFEST_PATH=/tmp/tmp.cy4zYrLhIY/registry/gio-0.20.7/Cargo.toml CARGO_PKG_AUTHORS='The gtk-rs Project Developers' CARGO_PKG_DESCRIPTION='Rust bindings for the Gio library' CARGO_PKG_HOMEPAGE='https://gtk-rs.org/' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=gio CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/gtk-rs/gtk-rs-core' CARGO_PKG_RUST_VERSION=1.70 CARGO_PKG_VERSION=0.20.7 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=20 CARGO_PKG_VERSION_PATCH=7 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.cy4zYrLhIY/target/debug/deps OUT_DIR=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/build/gio-b380b9dc244b7663/out rustc --crate-name gio --edition=2021 /tmp/tmp.cy4zYrLhIY/registry/gio-0.20.7/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="v2_58"' --cfg 'feature="v2_60"' --cfg 'feature="v2_62"' --cfg 'feature="v2_64"' --cfg 'feature="v2_66"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("v2_58", "v2_60", "v2_62", "v2_64", "v2_66", "v2_68", "v2_70", "v2_72", "v2_74", "v2_76", "v2_78", "v2_80", "v2_82", "v2_84"))' -C metadata=9c864d2fb50eb745 -C extra-filename=-9c864d2fb50eb745 --out-dir /tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.cy4zYrLhIY/target/debug/deps --extern futures_channel=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps/libfutures_channel-8ed485ea134c933c.rmeta --extern futures_core=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps/libfutures_core-8d305950da6bf5c8.rmeta --extern futures_io=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps/libfutures_io-1a4387591f8b2b95.rmeta --extern futures_util=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps/libfutures_util-23beed03671fe7d3.rmeta --extern gio_sys=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps/libgio_sys-09c58e200e125269.rmeta --extern glib=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps/libglib-86961142feeefe07.rmeta --extern libc=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps/liblibc-cf2521928ac070dc.rmeta --extern pin_project_lite=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps/libpin_project_lite-5dc815523e98d889.rmeta --extern smallvec=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps/libsmallvec-ef72c43926f60793.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.cy4zYrLhIY/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 306s warning: `glib` (lib) generated 1 warning (1 duplicate) 306s Compiling nix v0.29.0 306s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.cy4zYrLhIY/registry/nix-0.29.0 CARGO_MANIFEST_PATH=/tmp/tmp.cy4zYrLhIY/registry/nix-0.29.0/Cargo.toml CARGO_PKG_AUTHORS='The nix-rust Project Developers' CARGO_PKG_DESCRIPTION='Rust friendly bindings to *nix APIs' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=nix CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/nix-rust/nix' CARGO_PKG_RUST_VERSION=1.69 CARGO_PKG_VERSION=0.29.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=29 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.cy4zYrLhIY/target/debug/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.cy4zYrLhIY/registry/nix-0.29.0/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="feature"' --cfg 'feature="memoffset"' --cfg 'feature="socket"' --cfg 'feature="uio"' --cfg 'feature="user"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("acct", "aio", "default", "dir", "env", "event", "fanotify", "feature", "fs", "hostname", "inotify", "ioctl", "kmod", "memoffset", "mman", "mount", "mqueue", "net", "personality", "pin-utils", "poll", "process", "pthread", "ptrace", "quota", "reboot", "resource", "sched", "signal", "socket", "term", "time", "ucontext", "uio", "user", "zerocopy"))' -C metadata=9cc97a3a2fcb749b -C extra-filename=-9cc97a3a2fcb749b --out-dir /tmp/tmp.cy4zYrLhIY/target/debug/build/nix-9cc97a3a2fcb749b -L dependency=/tmp/tmp.cy4zYrLhIY/target/debug/deps --extern cfg_aliases=/tmp/tmp.cy4zYrLhIY/target/debug/deps/libcfg_aliases-8701cbe9ff8ee006.rlib --cap-lints warn` 306s Compiling enumflags2 v0.7.10 306s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=enumflags2 CARGO_MANIFEST_DIR=/tmp/tmp.cy4zYrLhIY/registry/enumflags2-0.7.10 CARGO_MANIFEST_PATH=/tmp/tmp.cy4zYrLhIY/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.cy4zYrLhIY/target/debug/deps rustc --crate-name enumflags2 --edition=2018 /tmp/tmp.cy4zYrLhIY/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=2867d32c4b4f39e8 -C extra-filename=-2867d32c4b4f39e8 --out-dir /tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.cy4zYrLhIY/target/debug/deps --extern enumflags2_derive=/tmp/tmp.cy4zYrLhIY/target/debug/deps/libenumflags2_derive-588090abb48fd7e4.so --extern serde=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps/libserde-0e7dff716e38da0d.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.cy4zYrLhIY/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 306s warning: `enumflags2` (lib) generated 1 warning (1 duplicate) 306s 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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0--remap-path-prefix/tmp/tmp.cy4zYrLhIY/registry=/usr/share/cargo/registry-Ctarget-feature=+backchain' CARGO_FEATURE_DEFAULT=1 CARGO_MANIFEST_DIR=/tmp/tmp.cy4zYrLhIY/registry/memoffset-0.8.0 CARGO_MANIFEST_PATH=/tmp/tmp.cy4zYrLhIY/registry/memoffset-0.8.0/Cargo.toml CARGO_PKG_AUTHORS='Gilad Naaman ' CARGO_PKG_DESCRIPTION='offset_of functionality for Rust structs.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=memoffset CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/Gilnaa/memoffset' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.8.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=8 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' DEBUG=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.cy4zYrLhIY/target/debug/deps:/tmp/tmp.cy4zYrLhIY/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/build/memoffset-b32fed70cf81e31f/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.cy4zYrLhIY/target/debug/build/memoffset-b637076bbed49000/build-script-build` 306s [memoffset 0.8.0] warning: unstable feature specified for `-Ctarget-feature`: `backchain` 306s [memoffset 0.8.0] | 306s [memoffset 0.8.0] = note: this feature is not stably supported; its behavior can change in the future 306s [memoffset 0.8.0] 306s [memoffset 0.8.0] warning: 1 warning emitted 306s [memoffset 0.8.0] 306s [memoffset 0.8.0] cargo:rustc-cfg=tuple_ty 306s [memoffset 0.8.0] cargo:rustc-cfg=allow_clippy 306s [memoffset 0.8.0] cargo:rustc-cfg=maybe_uninit 306s [memoffset 0.8.0] cargo:rustc-cfg=doctests 306s [memoffset 0.8.0] cargo:rustc-cfg=raw_ref_macros 306s [memoffset 0.8.0] cargo:rustc-cfg=stable_const 306s Compiling rand_core v0.6.4 306s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=rand_core CARGO_MANIFEST_DIR=/tmp/tmp.cy4zYrLhIY/registry/rand_core-0.6.4 CARGO_MANIFEST_PATH=/tmp/tmp.cy4zYrLhIY/registry/rand_core-0.6.4/Cargo.toml CARGO_PKG_AUTHORS='The Rand Project Developers:The Rust Project Developers' CARGO_PKG_DESCRIPTION='Core random number generator traits and tools for implementation. 306s ' CARGO_PKG_HOMEPAGE='https://rust-random.github.io/book' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=rand_core CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-random/rand' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.6.4 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=6 CARGO_PKG_VERSION_PATCH=4 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.cy4zYrLhIY/target/debug/deps rustc --crate-name rand_core --edition=2018 /tmp/tmp.cy4zYrLhIY/registry/rand_core-0.6.4/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="alloc"' --cfg 'feature="getrandom"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "getrandom", "serde", "serde1", "std"))' -C metadata=3c7246ca3f419bbc -C extra-filename=-3c7246ca3f419bbc --out-dir /tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.cy4zYrLhIY/target/debug/deps --extern getrandom=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps/libgetrandom-ed47f71499f7e17d.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.cy4zYrLhIY/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 306s warning: unexpected `cfg` condition name: `doc_cfg` 306s --> /usr/share/cargo/registry/rand_core-0.6.4/src/lib.rs:38:13 306s | 306s 38 | #![cfg_attr(doc_cfg, feature(doc_cfg))] 306s | ^^^^^^^ 306s | 306s = help: expected names are: `clippy`, `debug_assertions`, `doc`, `docsrs`, `doctest`, `feature`, `fmt_debug`, `miri`, `overflow_checks`, `panic`, `proc_macro`, `relocation_model`, `rustfmt`, `sanitize`, `sanitizer_cfi_generalize_pointers`, `sanitizer_cfi_normalize_integers`, `target_abi`, `target_arch`, `target_endian`, `target_env`, `target_family`, `target_feature`, `target_has_atomic`, `target_has_atomic_equal_alignment`, `target_has_atomic_load_store`, `target_os`, `target_pointer_width`, `target_thread_local`, `target_vendor`, `test`, `ub_checks`, `unix`, and `windows` 306s = help: consider using a Cargo feature instead 306s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 306s [lints.rust] 306s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 306s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 306s = note: see for more information about checking conditional configuration 306s = note: `#[warn(unexpected_cfgs)]` on by default 306s 306s warning: unexpected `cfg` condition name: `doc_cfg` 306s --> /usr/share/cargo/registry/rand_core-0.6.4/src/error.rs:50:16 306s | 306s 50 | #[cfg_attr(doc_cfg, doc(cfg(feature = "std")))] 306s | ^^^^^^^ 306s | 306s = help: consider using a Cargo feature instead 306s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 306s [lints.rust] 306s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 306s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 306s = note: see for more information about checking conditional configuration 306s 306s warning: unexpected `cfg` condition name: `doc_cfg` 306s --> /usr/share/cargo/registry/rand_core-0.6.4/src/error.rs:64:16 306s | 306s 64 | #[cfg_attr(doc_cfg, doc(cfg(feature = "std")))] 306s | ^^^^^^^ 306s | 306s = help: consider using a Cargo feature instead 306s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 306s [lints.rust] 306s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 306s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 306s = note: see for more information about checking conditional configuration 306s 306s warning: unexpected `cfg` condition name: `doc_cfg` 306s --> /usr/share/cargo/registry/rand_core-0.6.4/src/error.rs:75:16 306s | 306s 75 | #[cfg_attr(doc_cfg, doc(cfg(feature = "std")))] 306s | ^^^^^^^ 306s | 306s = help: consider using a Cargo feature instead 306s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 306s [lints.rust] 306s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 306s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 306s = note: see for more information about checking conditional configuration 306s 306s warning: unexpected `cfg` condition name: `doc_cfg` 306s --> /usr/share/cargo/registry/rand_core-0.6.4/src/os.rs:46:12 306s | 306s 46 | #[cfg_attr(doc_cfg, doc(cfg(feature = "getrandom")))] 306s | ^^^^^^^ 306s | 306s = help: consider using a Cargo feature instead 306s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 306s [lints.rust] 306s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 306s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 306s = note: see for more information about checking conditional configuration 306s 306s warning: unexpected `cfg` condition name: `doc_cfg` 306s --> /usr/share/cargo/registry/rand_core-0.6.4/src/lib.rs:411:16 306s | 306s 411 | #[cfg_attr(doc_cfg, doc(cfg(feature = "getrandom")))] 306s | ^^^^^^^ 306s | 306s = help: consider using a Cargo feature instead 306s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 306s [lints.rust] 306s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 306s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 306s = note: see for more information about checking conditional configuration 306s 306s warning: `rand_core` (lib) generated 7 warnings (1 duplicate) 306s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=cairo_sys CARGO_MANIFEST_DIR=/tmp/tmp.cy4zYrLhIY/registry/cairo-sys-rs-0.20.7 CARGO_MANIFEST_PATH=/tmp/tmp.cy4zYrLhIY/registry/cairo-sys-rs-0.20.7/Cargo.toml CARGO_PKG_AUTHORS='The gtk-rs Project Developers' CARGO_PKG_DESCRIPTION='FFI bindings to libcairo' CARGO_PKG_HOMEPAGE='https://gtk-rs.org/' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=cairo-sys-rs CARGO_PKG_README='' CARGO_PKG_REPOSITORY='https://github.com/gtk-rs/gtk-rs-core' CARGO_PKG_RUST_VERSION=1.70 CARGO_PKG_VERSION=0.20.7 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=20 CARGO_PKG_VERSION_PATCH=7 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.cy4zYrLhIY/target/debug/deps OUT_DIR=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/build/cairo-sys-rs-9c51754cd28745bb/out rustc --crate-name cairo_sys --edition=2021 /tmp/tmp.cy4zYrLhIY/registry/cairo-sys-rs-0.20.7/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="glib-sys"' --cfg 'feature="use_glib"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("freetype", "glib-sys", "pdf", "png", "ps", "script", "svg", "use_glib", "v1_16", "v1_18", "x11", "xcb", "xlib"))' -C metadata=4612600e92f34c6c -C extra-filename=-4612600e92f34c6c --out-dir /tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.cy4zYrLhIY/target/debug/deps --extern glib_sys=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps/libglib_sys-8d7612a6c3ae820a.rmeta --extern libc=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps/liblibc-cf2521928ac070dc.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.cy4zYrLhIY/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain -l cairo -l cairo-gobject -l cairo -l gobject-2.0 -l glib-2.0 --cfg system_deps_have_cairo --cfg system_deps_have_cairo_gobject` 307s warning: unexpected `cfg` condition value: `win32-surface` 307s --> /usr/share/cargo/registry/cairo-sys-rs-0.20.7/src/lib.rs:9:20 307s | 307s 9 | #[cfg(all(windows, feature = "win32-surface"))] 307s | ^^^^^^^^^^^^^^^^^^^^^^^^^ 307s | 307s = note: expected values for `feature` are: `freetype`, `glib-sys`, `pdf`, `png`, `ps`, `script`, `svg`, `use_glib`, `v1_16`, `v1_18`, `x11`, `xcb`, and `xlib` 307s = help: consider adding `win32-surface` as a feature in `Cargo.toml` 307s = note: see for more information about checking conditional configuration 307s = note: `#[warn(unexpected_cfgs)]` on by default 307s 307s warning: unexpected `cfg` condition value: `win32-surface` 307s --> /usr/share/cargo/registry/cairo-sys-rs-0.20.7/src/lib.rs:15:36 307s | 307s 15 | #[cfg(all(docsrs, not(all(windows, feature = "win32-surface"))))] 307s | ^^^^^^^^^^^^^^^^^^^^^^^^^ 307s | 307s = note: expected values for `feature` are: `freetype`, `glib-sys`, `pdf`, `png`, `ps`, `script`, `svg`, `use_glib`, `v1_16`, `v1_18`, `x11`, `xcb`, and `xlib` 307s = help: consider adding `win32-surface` as a feature in `Cargo.toml` 307s = note: see for more information about checking conditional configuration 307s 307s warning: unexpected `cfg` condition value: `win32-surface` 307s --> /usr/share/cargo/registry/cairo-sys-rs-0.20.7/src/lib.rs:1465:24 307s | 307s 1465 | #[cfg(all(windows, feature = "win32-surface"))] 307s | ^^^^^^^^^^^^^^^^^^^^^^^^^ 307s | 307s = note: expected values for `feature` are: `freetype`, `glib-sys`, `pdf`, `png`, `ps`, `script`, `svg`, `use_glib`, `v1_16`, `v1_18`, `x11`, `xcb`, and `xlib` 307s = help: consider adding `win32-surface` as a feature in `Cargo.toml` 307s = note: see for more information about checking conditional configuration 307s 307s warning: unexpected `cfg` condition value: `win32-surface` 307s --> /usr/share/cargo/registry/cairo-sys-rs-0.20.7/src/lib.rs:1468:24 307s | 307s 1468 | #[cfg(all(windows, feature = "win32-surface"))] 307s | ^^^^^^^^^^^^^^^^^^^^^^^^^ 307s | 307s = note: expected values for `feature` are: `freetype`, `glib-sys`, `pdf`, `png`, `ps`, `script`, `svg`, `use_glib`, `v1_16`, `v1_18`, `x11`, `xcb`, and `xlib` 307s = help: consider adding `win32-surface` as a feature in `Cargo.toml` 307s = note: see for more information about checking conditional configuration 307s 307s warning: unexpected `cfg` condition value: `win32-surface` 307s --> /usr/share/cargo/registry/cairo-sys-rs-0.20.7/src/lib.rs:1474:24 307s | 307s 1474 | #[cfg(all(windows, feature = "win32-surface"))] 307s | ^^^^^^^^^^^^^^^^^^^^^^^^^ 307s | 307s = note: expected values for `feature` are: `freetype`, `glib-sys`, `pdf`, `png`, `ps`, `script`, `svg`, `use_glib`, `v1_16`, `v1_18`, `x11`, `xcb`, and `xlib` 307s = help: consider adding `win32-surface` as a feature in `Cargo.toml` 307s = note: see for more information about checking conditional configuration 307s 307s warning: unexpected `cfg` condition value: `win32-surface` 307s --> /usr/share/cargo/registry/cairo-sys-rs-0.20.7/src/lib.rs:1481:24 307s | 307s 1481 | #[cfg(all(windows, feature = "win32-surface"))] 307s | ^^^^^^^^^^^^^^^^^^^^^^^^^ 307s | 307s = note: expected values for `feature` are: `freetype`, `glib-sys`, `pdf`, `png`, `ps`, `script`, `svg`, `use_glib`, `v1_16`, `v1_18`, `x11`, `xcb`, and `xlib` 307s = help: consider adding `win32-surface` as a feature in `Cargo.toml` 307s = note: see for more information about checking conditional configuration 307s 307s warning: unexpected `cfg` condition value: `win32-surface` 307s --> /usr/share/cargo/registry/cairo-sys-rs-0.20.7/src/lib.rs:1489:24 307s | 307s 1489 | #[cfg(all(windows, feature = "win32-surface"))] 307s | ^^^^^^^^^^^^^^^^^^^^^^^^^ 307s | 307s = note: expected values for `feature` are: `freetype`, `glib-sys`, `pdf`, `png`, `ps`, `script`, `svg`, `use_glib`, `v1_16`, `v1_18`, `x11`, `xcb`, and `xlib` 307s = help: consider adding `win32-surface` as a feature in `Cargo.toml` 307s = note: see for more information about checking conditional configuration 307s 307s warning: unexpected `cfg` condition value: `win32-surface` 307s --> /usr/share/cargo/registry/cairo-sys-rs-0.20.7/src/lib.rs:1492:24 307s | 307s 1492 | #[cfg(all(windows, feature = "win32-surface"))] 307s | ^^^^^^^^^^^^^^^^^^^^^^^^^ 307s | 307s = note: expected values for `feature` are: `freetype`, `glib-sys`, `pdf`, `png`, `ps`, `script`, `svg`, `use_glib`, `v1_16`, `v1_18`, `x11`, `xcb`, and `xlib` 307s = help: consider adding `win32-surface` as a feature in `Cargo.toml` 307s = note: see for more information about checking conditional configuration 307s 307s warning: unexpected `cfg` condition value: `win32-surface` 307s --> /usr/share/cargo/registry/cairo-sys-rs-0.20.7/src/lib.rs:1495:24 307s | 307s 1495 | #[cfg(all(windows, feature = "win32-surface"))] 307s | ^^^^^^^^^^^^^^^^^^^^^^^^^ 307s | 307s = note: expected values for `feature` are: `freetype`, `glib-sys`, `pdf`, `png`, `ps`, `script`, `svg`, `use_glib`, `v1_16`, `v1_18`, `x11`, `xcb`, and `xlib` 307s = help: consider adding `win32-surface` as a feature in `Cargo.toml` 307s = note: see for more information about checking conditional configuration 307s 307s warning: `cairo-sys-rs` (lib) generated 10 warnings (1 duplicate) 307s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=pango_sys CARGO_MANIFEST_DIR=/tmp/tmp.cy4zYrLhIY/registry/pango-sys-0.20.7 CARGO_MANIFEST_PATH=/tmp/tmp.cy4zYrLhIY/registry/pango-sys-0.20.7/Cargo.toml CARGO_PKG_AUTHORS='The gtk-rs Project Developers' CARGO_PKG_DESCRIPTION='FFI bindings to libpango-1.0' CARGO_PKG_HOMEPAGE='https://gtk-rs.org/' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=pango-sys CARGO_PKG_README='' CARGO_PKG_REPOSITORY='https://github.com/gtk-rs/gtk-rs-core' CARGO_PKG_RUST_VERSION=1.70 CARGO_PKG_VERSION=0.20.7 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=20 CARGO_PKG_VERSION_PATCH=7 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.cy4zYrLhIY/target/debug/deps OUT_DIR=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/build/pango-sys-9148858f03bf443c/out rustc --crate-name pango_sys --edition=2021 /tmp/tmp.cy4zYrLhIY/registry/pango-sys-0.20.7/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="v1_42"' --cfg 'feature="v1_44"' --cfg 'feature="v1_46"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("v1_42", "v1_44", "v1_46", "v1_48", "v1_50", "v1_52", "v1_54", "v1_56"))' -C metadata=f907ef533c31ecd7 -C extra-filename=-f907ef533c31ecd7 --out-dir /tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.cy4zYrLhIY/target/debug/deps --extern glib_sys=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps/libglib_sys-8d7612a6c3ae820a.rmeta --extern gobject_sys=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps/libgobject_sys-c41d1b14aec65cc2.rmeta --extern libc=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps/liblibc-cf2521928ac070dc.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.cy4zYrLhIY/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain -l pango-1.0 -l gobject-2.0 -l glib-2.0 -l harfbuzz --cfg system_deps_have_pango` 307s warning: `pango-sys` (lib) generated 1 warning (1 duplicate) 307s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=gdk_pixbuf_sys CARGO_MANIFEST_DIR=/tmp/tmp.cy4zYrLhIY/registry/gdk-pixbuf-sys-0.20.7 CARGO_MANIFEST_PATH=/tmp/tmp.cy4zYrLhIY/registry/gdk-pixbuf-sys-0.20.7/Cargo.toml CARGO_PKG_AUTHORS='The gtk-rs Project Developers' CARGO_PKG_DESCRIPTION='FFI bindings to libgdk_pixbuf-2.0' CARGO_PKG_HOMEPAGE='https://gtk-rs.org/' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=gdk-pixbuf-sys CARGO_PKG_README='' CARGO_PKG_REPOSITORY='https://github.com/gtk-rs/gtk-rs-core' CARGO_PKG_RUST_VERSION=1.70 CARGO_PKG_VERSION=0.20.7 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=20 CARGO_PKG_VERSION_PATCH=7 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.cy4zYrLhIY/target/debug/deps OUT_DIR=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/build/gdk-pixbuf-sys-ab4c33b0ec0f5591/out rustc --crate-name gdk_pixbuf_sys --edition=2021 /tmp/tmp.cy4zYrLhIY/registry/gdk-pixbuf-sys-0.20.7/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("v2_40", "v2_42"))' -C metadata=2987b4ccc6a33d16 -C extra-filename=-2987b4ccc6a33d16 --out-dir /tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.cy4zYrLhIY/target/debug/deps --extern gio_sys=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps/libgio_sys-09c58e200e125269.rmeta --extern glib_sys=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps/libglib_sys-8d7612a6c3ae820a.rmeta --extern gobject_sys=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps/libgobject_sys-c41d1b14aec65cc2.rmeta --extern libc=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps/liblibc-cf2521928ac070dc.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.cy4zYrLhIY/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain -l gdk_pixbuf-2.0 -l gobject-2.0 -l glib-2.0 --cfg system_deps_have_gdk_pixbuf_2_0` 307s warning: `gdk-pixbuf-sys` (lib) generated 1 warning (1 duplicate) 307s Compiling ppv-lite86 v0.2.20 307s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=ppv_lite86 CARGO_MANIFEST_DIR=/tmp/tmp.cy4zYrLhIY/registry/ppv-lite86-0.2.20 CARGO_MANIFEST_PATH=/tmp/tmp.cy4zYrLhIY/registry/ppv-lite86-0.2.20/Cargo.toml CARGO_PKG_AUTHORS='The CryptoCorrosion Contributors' CARGO_PKG_DESCRIPTION='Implementation of the crypto-simd API for x86' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=ppv-lite86 CARGO_PKG_README='' CARGO_PKG_REPOSITORY='https://github.com/cryptocorrosion/cryptocorrosion' CARGO_PKG_RUST_VERSION=1.61 CARGO_PKG_VERSION=0.2.20 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=20 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.cy4zYrLhIY/target/debug/deps rustc --crate-name ppv_lite86 --edition=2021 /tmp/tmp.cy4zYrLhIY/registry/ppv-lite86-0.2.20/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="simd"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "no_simd", "simd", "std"))' -C metadata=57e5b566e2a71c09 -C extra-filename=-57e5b566e2a71c09 --out-dir /tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.cy4zYrLhIY/target/debug/deps --extern zerocopy=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps/libzerocopy-777d8c6c10ffcfc6.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.cy4zYrLhIY/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 307s warning: `ppv-lite86` (lib) generated 1 warning (1 duplicate) 307s Compiling zvariant_derive v4.2.0 307s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=zvariant_derive CARGO_MANIFEST_DIR=/tmp/tmp.cy4zYrLhIY/registry/zvariant_derive-4.2.0 CARGO_MANIFEST_PATH=/tmp/tmp.cy4zYrLhIY/registry/zvariant_derive-4.2.0/Cargo.toml CARGO_PKG_AUTHORS='Zeeshan Ali Khan ' CARGO_PKG_DESCRIPTION='D-Bus & GVariant encoding & decoding' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=zvariant_derive CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dbus2/zbus/' CARGO_PKG_RUST_VERSION=1.75 CARGO_PKG_VERSION=4.2.0 CARGO_PKG_VERSION_MAJOR=4 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.cy4zYrLhIY/target/debug/deps rustc --crate-name zvariant_derive --edition=2021 /tmp/tmp.cy4zYrLhIY/registry/zvariant_derive-4.2.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type proc-macro --emit=dep-info,link -C prefer-dynamic -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=c08daefc625922fd -C extra-filename=-c08daefc625922fd --out-dir /tmp/tmp.cy4zYrLhIY/target/debug/deps -L dependency=/tmp/tmp.cy4zYrLhIY/target/debug/deps --extern proc_macro_crate=/tmp/tmp.cy4zYrLhIY/target/debug/deps/libproc_macro_crate-76b8c9685ffc2762.rlib --extern proc_macro2=/tmp/tmp.cy4zYrLhIY/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rlib --extern quote=/tmp/tmp.cy4zYrLhIY/target/debug/deps/libquote-dc92c6f25ee0f0c6.rlib --extern syn=/tmp/tmp.cy4zYrLhIY/target/debug/deps/libsyn-0167beed9e699402.rlib --extern zvariant_utils=/tmp/tmp.cy4zYrLhIY/target/debug/deps/libzvariant_utils-555d90bad4acf190.rlib --extern proc_macro --cap-lints warn` 308s Compiling block-buffer v0.10.2 308s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=block_buffer CARGO_MANIFEST_DIR=/tmp/tmp.cy4zYrLhIY/registry/block-buffer-0.10.2 CARGO_MANIFEST_PATH=/tmp/tmp.cy4zYrLhIY/registry/block-buffer-0.10.2/Cargo.toml CARGO_PKG_AUTHORS='RustCrypto Developers' CARGO_PKG_DESCRIPTION='Buffer type for block processing of data' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=block-buffer CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/RustCrypto/utils' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.10.2 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=10 CARGO_PKG_VERSION_PATCH=2 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.cy4zYrLhIY/target/debug/deps rustc --crate-name block_buffer --edition=2018 /tmp/tmp.cy4zYrLhIY/registry/block-buffer-0.10.2/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=4cd3db619b1d8e9e -C extra-filename=-4cd3db619b1d8e9e --out-dir /tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.cy4zYrLhIY/target/debug/deps --extern generic_array=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps/libgeneric_array-d02d059964c7aee0.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.cy4zYrLhIY/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 309s warning: `block-buffer` (lib) generated 1 warning (1 duplicate) 309s Compiling crypto-common v0.1.6 309s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=crypto_common CARGO_MANIFEST_DIR=/tmp/tmp.cy4zYrLhIY/registry/crypto-common-0.1.6 CARGO_MANIFEST_PATH=/tmp/tmp.cy4zYrLhIY/registry/crypto-common-0.1.6/Cargo.toml CARGO_PKG_AUTHORS='RustCrypto Developers' CARGO_PKG_DESCRIPTION='Common cryptographic traits' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=crypto-common CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/RustCrypto/traits' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.1.6 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=6 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.cy4zYrLhIY/target/debug/deps rustc --crate-name crypto_common --edition=2018 /tmp/tmp.cy4zYrLhIY/registry/crypto-common-0.1.6/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("getrandom", "rand_core", "std"))' -C metadata=77cd648c700afbb2 -C extra-filename=-77cd648c700afbb2 --out-dir /tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.cy4zYrLhIY/target/debug/deps --extern generic_array=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps/libgeneric_array-d02d059964c7aee0.rmeta --extern typenum=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps/libtypenum-c66037e8139405ff.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.cy4zYrLhIY/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 309s warning: `crypto-common` (lib) generated 1 warning (1 duplicate) 309s Compiling gdk4-sys v0.9.5 309s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.cy4zYrLhIY/registry/gdk4-sys-0.9.5 CARGO_MANIFEST_PATH=/tmp/tmp.cy4zYrLhIY/registry/gdk4-sys-0.9.5/Cargo.toml CARGO_PKG_AUTHORS='The gtk-rs Project Developers' CARGO_PKG_DESCRIPTION='FFI bindings of GDK 4' CARGO_PKG_HOMEPAGE='https://gtk-rs.org/gtk4-rs' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=gdk4-sys CARGO_PKG_README='' CARGO_PKG_REPOSITORY='https://github.com/gtk-rs/gtk4-rs' CARGO_PKG_RUST_VERSION=1.70 CARGO_PKG_VERSION=0.9.5 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=9 CARGO_PKG_VERSION_PATCH=5 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.cy4zYrLhIY/target/debug/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.cy4zYrLhIY/registry/gdk4-sys-0.9.5/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="v4_10"' --cfg 'feature="v4_2"' --cfg 'feature="v4_4"' --cfg 'feature="v4_6"' --cfg 'feature="v4_8"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("v4_10", "v4_12", "v4_14", "v4_16", "v4_18", "v4_2", "v4_4", "v4_6", "v4_8"))' -C metadata=4462722e825bb98b -C extra-filename=-4462722e825bb98b --out-dir /tmp/tmp.cy4zYrLhIY/target/debug/build/gdk4-sys-4462722e825bb98b -L dependency=/tmp/tmp.cy4zYrLhIY/target/debug/deps --extern pkg_config=/tmp/tmp.cy4zYrLhIY/target/debug/deps/libpkg_config-f20a1c89e2145860.rlib --extern system_deps=/tmp/tmp.cy4zYrLhIY/target/debug/deps/libsystem_deps-df5512f70260f2a1.rlib --cap-lints warn` 309s Compiling endi v1.1.0 309s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=endi CARGO_MANIFEST_DIR=/tmp/tmp.cy4zYrLhIY/registry/endi-1.1.0 CARGO_MANIFEST_PATH=/tmp/tmp.cy4zYrLhIY/registry/endi-1.1.0/Cargo.toml CARGO_PKG_AUTHORS='Zeeshan Ali Khan ' CARGO_PKG_DESCRIPTION='A simple endian-handling library' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=endi CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/zeenix/endi' CARGO_PKG_RUST_VERSION=1.60 CARGO_PKG_VERSION=1.1.0 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.cy4zYrLhIY/target/debug/deps rustc --crate-name endi --edition=2021 /tmp/tmp.cy4zYrLhIY/registry/endi-1.1.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "std"))' -C metadata=6479300693b4fccf -C extra-filename=-6479300693b4fccf --out-dir /tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.cy4zYrLhIY/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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.cy4zYrLhIY/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 309s warning: `endi` (lib) generated 1 warning (1 duplicate) 309s Compiling once_cell v1.20.2 309s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=once_cell CARGO_MANIFEST_DIR=/tmp/tmp.cy4zYrLhIY/registry/once_cell-1.20.2 CARGO_MANIFEST_PATH=/tmp/tmp.cy4zYrLhIY/registry/once_cell-1.20.2/Cargo.toml CARGO_PKG_AUTHORS='Aleksey Kladov ' CARGO_PKG_DESCRIPTION='Single assignment cells and lazy values.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=once_cell CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/matklad/once_cell' CARGO_PKG_RUST_VERSION=1.60 CARGO_PKG_VERSION=1.20.2 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=20 CARGO_PKG_VERSION_PATCH=2 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.cy4zYrLhIY/target/debug/deps rustc --crate-name once_cell --edition=2021 /tmp/tmp.cy4zYrLhIY/registry/once_cell-1.20.2/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="alloc"' --cfg 'feature="default"' --cfg 'feature="race"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "atomic-polyfill", "critical-section", "default", "parking_lot", "portable-atomic", "race", "std", "unstable"))' -C metadata=f9b984852945e4ac -C extra-filename=-f9b984852945e4ac --out-dir /tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.cy4zYrLhIY/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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.cy4zYrLhIY/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 309s warning: `once_cell` (lib) generated 1 warning (1 duplicate) 309s Compiling static_assertions v1.1.0 309s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=static_assertions CARGO_MANIFEST_DIR=/tmp/tmp.cy4zYrLhIY/registry/static_assertions-1.1.0 CARGO_MANIFEST_PATH=/tmp/tmp.cy4zYrLhIY/registry/static_assertions-1.1.0/Cargo.toml CARGO_PKG_AUTHORS='Nikolai Vazquez' CARGO_PKG_DESCRIPTION='Compile-time assertions to ensure that invariants are met.' CARGO_PKG_HOMEPAGE='https://github.com/nvzqz/static-assertions-rs' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=static_assertions CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/nvzqz/static-assertions-rs' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=1.1.0 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.cy4zYrLhIY/target/debug/deps rustc --crate-name static_assertions --edition=2015 /tmp/tmp.cy4zYrLhIY/registry/static_assertions-1.1.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("nightly"))' -C metadata=18df01cc327facaa -C extra-filename=-18df01cc327facaa --out-dir /tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.cy4zYrLhIY/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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.cy4zYrLhIY/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 310s warning: `static_assertions` (lib) generated 1 warning (1 duplicate) 310s Compiling zvariant v4.2.0 310s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=zvariant CARGO_MANIFEST_DIR=/tmp/tmp.cy4zYrLhIY/registry/zvariant-4.2.0 CARGO_MANIFEST_PATH=/tmp/tmp.cy4zYrLhIY/registry/zvariant-4.2.0/Cargo.toml CARGO_PKG_AUTHORS='Zeeshan Ali Khan ' CARGO_PKG_DESCRIPTION='D-Bus & GVariant encoding & decoding' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=zvariant CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dbus2/zbus/' CARGO_PKG_RUST_VERSION=1.75 CARGO_PKG_VERSION=4.2.0 CARGO_PKG_VERSION_MAJOR=4 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.cy4zYrLhIY/target/debug/deps rustc --crate-name zvariant --edition=2021 /tmp/tmp.cy4zYrLhIY/registry/zvariant-4.2.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="enumflags2"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("arrayvec", "chrono", "default", "enumflags2", "gvariant", "heapless", "option-as-array", "ostree-tests", "serde_bytes", "time", "url", "uuid"))' -C metadata=7b45eb8446d33c11 -C extra-filename=-7b45eb8446d33c11 --out-dir /tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.cy4zYrLhIY/target/debug/deps --extern endi=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps/libendi-6479300693b4fccf.rmeta --extern enumflags2=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps/libenumflags2-2867d32c4b4f39e8.rmeta --extern serde=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps/libserde-0e7dff716e38da0d.rmeta --extern static_assertions=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps/libstatic_assertions-18df01cc327facaa.rmeta --extern zvariant_derive=/tmp/tmp.cy4zYrLhIY/target/debug/deps/libzvariant_derive-c08daefc625922fd.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.cy4zYrLhIY/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 312s warning: `zvariant` (lib) generated 1 warning (1 duplicate) 312s Compiling tracing-core v0.1.32 312s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=tracing_core CARGO_MANIFEST_DIR=/tmp/tmp.cy4zYrLhIY/registry/tracing-core-0.1.32 CARGO_MANIFEST_PATH=/tmp/tmp.cy4zYrLhIY/registry/tracing-core-0.1.32/Cargo.toml CARGO_PKG_AUTHORS='Tokio Contributors ' CARGO_PKG_DESCRIPTION='Core primitives for application-level tracing. 312s ' CARGO_PKG_HOMEPAGE='https://tokio.rs' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=tracing-core CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/tokio-rs/tracing' CARGO_PKG_RUST_VERSION=1.56.0 CARGO_PKG_VERSION=0.1.32 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=32 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.cy4zYrLhIY/target/debug/deps rustc --crate-name tracing_core --edition=2018 /tmp/tmp.cy4zYrLhIY/registry/tracing-core-0.1.32/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="once_cell"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "once_cell", "std", "valuable"))' -C metadata=4c8af7279fad1469 -C extra-filename=-4c8af7279fad1469 --out-dir /tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.cy4zYrLhIY/target/debug/deps --extern once_cell=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps/libonce_cell-f9b984852945e4ac.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.cy4zYrLhIY/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 312s warning: lint `private_in_public` has been removed: replaced with another group of lints, see RFC for more information 312s --> /usr/share/cargo/registry/tracing-core-0.1.32/src/lib.rs:138:5 312s | 312s 138 | private_in_public, 312s | ^^^^^^^^^^^^^^^^^ 312s | 312s = note: `#[warn(renamed_and_removed_lints)]` on by default 312s 312s warning: unexpected `cfg` condition value: `alloc` 312s --> /usr/share/cargo/registry/tracing-core-0.1.32/src/dispatcher.rs:147:7 312s | 312s 147 | #[cfg(feature = "alloc")] 312s | ^^^^^^^^^^^^^^^^^ 312s | 312s = note: expected values for `feature` are: `default`, `once_cell`, `std`, and `valuable` 312s = help: consider adding `alloc` as a feature in `Cargo.toml` 312s = note: see for more information about checking conditional configuration 312s = note: `#[warn(unexpected_cfgs)]` on by default 312s 312s warning: unexpected `cfg` condition value: `alloc` 312s --> /usr/share/cargo/registry/tracing-core-0.1.32/src/dispatcher.rs:150:7 312s | 312s 150 | #[cfg(feature = "alloc")] 312s | ^^^^^^^^^^^^^^^^^ 312s | 312s = note: expected values for `feature` are: `default`, `once_cell`, `std`, and `valuable` 312s = help: consider adding `alloc` as a feature in `Cargo.toml` 312s = note: see for more information about checking conditional configuration 312s 312s warning: unexpected `cfg` condition name: `tracing_unstable` 312s --> /usr/share/cargo/registry/tracing-core-0.1.32/src/field.rs:374:11 312s | 312s 374 | #[cfg(all(tracing_unstable, feature = "valuable"))] 312s | ^^^^^^^^^^^^^^^^ 312s | 312s = help: expected names are: `clippy`, `debug_assertions`, `doc`, `docsrs`, `doctest`, `feature`, `fmt_debug`, `miri`, `overflow_checks`, `panic`, `proc_macro`, `relocation_model`, `rustfmt`, `sanitize`, `sanitizer_cfi_generalize_pointers`, `sanitizer_cfi_normalize_integers`, `target_abi`, `target_arch`, `target_endian`, `target_env`, `target_family`, `target_feature`, `target_has_atomic`, `target_has_atomic_equal_alignment`, `target_has_atomic_load_store`, `target_os`, `target_pointer_width`, `target_thread_local`, `target_vendor`, `test`, `ub_checks`, `unix`, and `windows` 312s = help: consider using a Cargo feature instead 312s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 312s [lints.rust] 312s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tracing_unstable)'] } 312s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tracing_unstable)");` to the top of the `build.rs` 312s = note: see for more information about checking conditional configuration 312s 312s warning: unexpected `cfg` condition name: `tracing_unstable` 312s --> /usr/share/cargo/registry/tracing-core-0.1.32/src/field.rs:719:11 312s | 312s 719 | #[cfg(all(tracing_unstable, feature = "valuable"))] 312s | ^^^^^^^^^^^^^^^^ 312s | 312s = help: consider using a Cargo feature instead 312s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 312s [lints.rust] 312s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tracing_unstable)'] } 312s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tracing_unstable)");` to the top of the `build.rs` 312s = note: see for more information about checking conditional configuration 312s 312s warning: unexpected `cfg` condition name: `tracing_unstable` 312s --> /usr/share/cargo/registry/tracing-core-0.1.32/src/field.rs:722:11 312s | 312s 722 | #[cfg(all(tracing_unstable, feature = "valuable"))] 312s | ^^^^^^^^^^^^^^^^ 312s | 312s = help: consider using a Cargo feature instead 312s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 312s [lints.rust] 312s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tracing_unstable)'] } 312s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tracing_unstable)");` to the top of the `build.rs` 312s = note: see for more information about checking conditional configuration 312s 312s warning: unexpected `cfg` condition name: `tracing_unstable` 312s --> /usr/share/cargo/registry/tracing-core-0.1.32/src/field.rs:730:11 312s | 312s 730 | #[cfg(all(tracing_unstable, feature = "valuable"))] 312s | ^^^^^^^^^^^^^^^^ 312s | 312s = help: consider using a Cargo feature instead 312s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 312s [lints.rust] 312s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tracing_unstable)'] } 312s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tracing_unstable)");` to the top of the `build.rs` 312s = note: see for more information about checking conditional configuration 312s 312s warning: unexpected `cfg` condition name: `tracing_unstable` 312s --> /usr/share/cargo/registry/tracing-core-0.1.32/src/field.rs:733:11 312s | 312s 733 | #[cfg(all(tracing_unstable, feature = "valuable"))] 312s | ^^^^^^^^^^^^^^^^ 312s | 312s = help: consider using a Cargo feature instead 312s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 312s [lints.rust] 312s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tracing_unstable)'] } 312s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tracing_unstable)");` to the top of the `build.rs` 312s = note: see for more information about checking conditional configuration 312s 312s warning: unexpected `cfg` condition name: `tracing_unstable` 312s --> /usr/share/cargo/registry/tracing-core-0.1.32/src/field.rs:270:15 312s | 312s 270 | #[cfg(all(tracing_unstable, feature = "valuable"))] 312s | ^^^^^^^^^^^^^^^^ 312s | 312s = help: consider using a Cargo feature instead 312s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 312s [lints.rust] 312s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tracing_unstable)'] } 312s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tracing_unstable)");` to the top of the `build.rs` 312s = note: see for more information about checking conditional configuration 312s 312s warning: creating a shared reference to mutable static is discouraged 312s --> /usr/share/cargo/registry/tracing-core-0.1.32/src/dispatcher.rs:458:9 312s | 312s 458 | &GLOBAL_DISPATCH 312s | ^^^^^^^^^^^^^^^^ shared reference to mutable static 312s | 312s = note: for more information, see 312s = note: shared references to mutable statics are dangerous; it's undefined behavior if the static is mutated or if a mutable reference is created for it while the shared reference lives 312s = note: `#[warn(static_mut_refs)]` on by default 312s help: use `&raw const` instead to create a raw pointer 312s | 312s 458 | &raw const GLOBAL_DISPATCH 312s | ~~~~~~~~~~ 312s 312s warning: `tracing-core` (lib) generated 11 warnings (1 duplicate) 312s 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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0--remap-path-prefix/tmp/tmp.cy4zYrLhIY/registry=/usr/share/cargo/registry-Ctarget-feature=+backchain' CARGO_FEATURE_V4_10=1 CARGO_FEATURE_V4_2=1 CARGO_FEATURE_V4_4=1 CARGO_FEATURE_V4_6=1 CARGO_FEATURE_V4_8=1 CARGO_MANIFEST_DIR=/tmp/tmp.cy4zYrLhIY/registry/gdk4-sys-0.9.5 CARGO_MANIFEST_PATH=/tmp/tmp.cy4zYrLhIY/registry/gdk4-sys-0.9.5/Cargo.toml CARGO_PKG_AUTHORS='The gtk-rs Project Developers' CARGO_PKG_DESCRIPTION='FFI bindings of GDK 4' CARGO_PKG_HOMEPAGE='https://gtk-rs.org/gtk4-rs' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=gdk4-sys CARGO_PKG_README='' CARGO_PKG_REPOSITORY='https://github.com/gtk-rs/gtk4-rs' CARGO_PKG_RUST_VERSION=1.70 CARGO_PKG_VERSION=0.9.5 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=9 CARGO_PKG_VERSION_PATCH=5 CARGO_PKG_VERSION_PRE='' DEBUG=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.cy4zYrLhIY/target/debug/deps:/tmp/tmp.cy4zYrLhIY/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/build/gdk4-sys-65ec9daac5947938/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.cy4zYrLhIY/target/debug/build/gdk4-sys-4462722e825bb98b/build-script-build` 312s [gdk4-sys 0.9.5] cargo:rerun-if-changed=/tmp/tmp.cy4zYrLhIY/registry/gdk4-sys-0.9.5/Cargo.toml 312s [gdk4-sys 0.9.5] cargo:rerun-if-env-changed=GTK4_NO_PKG_CONFIG 312s [gdk4-sys 0.9.5] cargo:rerun-if-env-changed=PKG_CONFIG_s390x-unknown-linux-gnu 312s [gdk4-sys 0.9.5] cargo:rerun-if-env-changed=PKG_CONFIG_s390x_unknown_linux_gnu 312s [gdk4-sys 0.9.5] cargo:rerun-if-env-changed=HOST_PKG_CONFIG 312s [gdk4-sys 0.9.5] cargo:rerun-if-env-changed=PKG_CONFIG 312s [gdk4-sys 0.9.5] cargo:rerun-if-env-changed=DEB_HOST_GNU_TYPE 312s [gdk4-sys 0.9.5] cargo:rerun-if-env-changed=PKG_CONFIG_PATH_s390x-unknown-linux-gnu 312s [gdk4-sys 0.9.5] cargo:rerun-if-env-changed=PKG_CONFIG_PATH_s390x_unknown_linux_gnu 312s [gdk4-sys 0.9.5] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_PATH 312s [gdk4-sys 0.9.5] cargo:rerun-if-env-changed=PKG_CONFIG_PATH 312s [gdk4-sys 0.9.5] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR_s390x-unknown-linux-gnu 312s [gdk4-sys 0.9.5] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR_s390x_unknown_linux_gnu 312s [gdk4-sys 0.9.5] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_LIBDIR 312s [gdk4-sys 0.9.5] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR 312s [gdk4-sys 0.9.5] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR_s390x-unknown-linux-gnu 312s [gdk4-sys 0.9.5] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR_s390x_unknown_linux_gnu 312s [gdk4-sys 0.9.5] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_SYSROOT_DIR 312s [gdk4-sys 0.9.5] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR 312s [gdk4-sys 0.9.5] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR 312s [gdk4-sys 0.9.5] cargo:rerun-if-env-changed=SYSROOT 312s [gdk4-sys 0.9.5] cargo:rerun-if-env-changed=PKG_CONFIG_s390x-unknown-linux-gnu 312s [gdk4-sys 0.9.5] cargo:rerun-if-env-changed=PKG_CONFIG_s390x_unknown_linux_gnu 312s [gdk4-sys 0.9.5] cargo:rerun-if-env-changed=HOST_PKG_CONFIG 312s [gdk4-sys 0.9.5] cargo:rerun-if-env-changed=PKG_CONFIG 312s [gdk4-sys 0.9.5] cargo:rerun-if-env-changed=DEB_HOST_GNU_TYPE 312s [gdk4-sys 0.9.5] cargo:rerun-if-env-changed=PKG_CONFIG_PATH_s390x-unknown-linux-gnu 312s [gdk4-sys 0.9.5] cargo:rerun-if-env-changed=PKG_CONFIG_PATH_s390x_unknown_linux_gnu 312s [gdk4-sys 0.9.5] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_PATH 312s [gdk4-sys 0.9.5] cargo:rerun-if-env-changed=PKG_CONFIG_PATH 312s [gdk4-sys 0.9.5] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR_s390x-unknown-linux-gnu 312s [gdk4-sys 0.9.5] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR_s390x_unknown_linux_gnu 312s [gdk4-sys 0.9.5] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_LIBDIR 312s [gdk4-sys 0.9.5] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR 312s [gdk4-sys 0.9.5] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR_s390x-unknown-linux-gnu 312s [gdk4-sys 0.9.5] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR_s390x_unknown_linux_gnu 312s [gdk4-sys 0.9.5] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_SYSROOT_DIR 312s [gdk4-sys 0.9.5] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR 312s [gdk4-sys 0.9.5] cargo:rustc-link-lib=gtk-4 312s [gdk4-sys 0.9.5] cargo:rustc-link-lib=pangocairo-1.0 312s [gdk4-sys 0.9.5] cargo:rustc-link-lib=pango-1.0 312s [gdk4-sys 0.9.5] cargo:rustc-link-lib=harfbuzz 312s [gdk4-sys 0.9.5] cargo:rustc-link-lib=gdk_pixbuf-2.0 312s [gdk4-sys 0.9.5] cargo:rustc-link-lib=cairo-gobject 312s [gdk4-sys 0.9.5] cargo:rustc-link-lib=cairo 312s [gdk4-sys 0.9.5] cargo:rustc-link-lib=vulkan 312s [gdk4-sys 0.9.5] cargo:rustc-link-lib=graphene-1.0 312s [gdk4-sys 0.9.5] cargo:rustc-link-lib=gio-2.0 312s [gdk4-sys 0.9.5] cargo:rustc-link-lib=gobject-2.0 312s [gdk4-sys 0.9.5] cargo:rustc-link-lib=glib-2.0 312s [gdk4-sys 0.9.5] cargo:include=/usr/include/gtk-4.0:/usr/include/pango-1.0:/usr/include:/usr/include/glib-2.0:/usr/lib/s390x-linux-gnu/glib-2.0/include:/usr/include/sysprof-6:/usr/include/harfbuzz:/usr/include/freetype2:/usr/include/libpng16:/usr/include/libmount:/usr/include/blkid:/usr/include/fribidi:/usr/include/cairo:/usr/include/pixman-1:/usr/include/gdk-pixbuf-2.0:/usr/include/s390x-linux-gnu:/usr/include/webp:/usr/include/graphene-1.0:/usr/lib/s390x-linux-gnu/graphene-1.0/include 312s [gdk4-sys 0.9.5] cargo:rerun-if-env-changed=SYSTEM_DEPS_BUILD_INTERNAL 312s [gdk4-sys 0.9.5] cargo:rerun-if-env-changed=SYSTEM_DEPS_LINK 312s [gdk4-sys 0.9.5] cargo:rerun-if-env-changed=SYSTEM_DEPS_GTK4_LIB 312s [gdk4-sys 0.9.5] cargo:rerun-if-env-changed=SYSTEM_DEPS_GTK4_LIB_FRAMEWORK 312s [gdk4-sys 0.9.5] cargo:rerun-if-env-changed=SYSTEM_DEPS_GTK4_SEARCH_NATIVE 312s [gdk4-sys 0.9.5] cargo:rerun-if-env-changed=SYSTEM_DEPS_GTK4_SEARCH_FRAMEWORK 312s [gdk4-sys 0.9.5] cargo:rerun-if-env-changed=SYSTEM_DEPS_GTK4_INCLUDE 312s [gdk4-sys 0.9.5] cargo:rerun-if-env-changed=SYSTEM_DEPS_GTK4_LDFLAGS 312s [gdk4-sys 0.9.5] cargo:rerun-if-env-changed=SYSTEM_DEPS_GTK4_NO_PKG_CONFIG 312s [gdk4-sys 0.9.5] cargo:rerun-if-env-changed=SYSTEM_DEPS_GTK4_BUILD_INTERNAL 312s [gdk4-sys 0.9.5] cargo:rerun-if-env-changed=SYSTEM_DEPS_GTK4_LINK 312s [gdk4-sys 0.9.5] 312s [gdk4-sys 0.9.5] cargo:rustc-cfg=system_deps_have_gtk4 312s [gdk4-sys 0.9.5] cargo:rerun-if-env-changed=PKG_CONFIG_s390x-unknown-linux-gnu 312s [gdk4-sys 0.9.5] cargo:rerun-if-env-changed=PKG_CONFIG_s390x_unknown_linux_gnu 312s [gdk4-sys 0.9.5] cargo:rerun-if-env-changed=HOST_PKG_CONFIG 312s [gdk4-sys 0.9.5] cargo:rerun-if-env-changed=PKG_CONFIG 312s [gdk4-sys 0.9.5] cargo:rerun-if-env-changed=DEB_HOST_GNU_TYPE 312s [gdk4-sys 0.9.5] cargo:rerun-if-env-changed=GTK4_STATIC 312s [gdk4-sys 0.9.5] cargo:rerun-if-env-changed=GTK4_DYNAMIC 312s [gdk4-sys 0.9.5] cargo:rerun-if-env-changed=PKG_CONFIG_ALL_STATIC 312s [gdk4-sys 0.9.5] cargo:rerun-if-env-changed=PKG_CONFIG_ALL_DYNAMIC 312s [gdk4-sys 0.9.5] cargo:rerun-if-env-changed=PKG_CONFIG_PATH_s390x-unknown-linux-gnu 312s [gdk4-sys 0.9.5] cargo:rerun-if-env-changed=PKG_CONFIG_PATH_s390x_unknown_linux_gnu 312s [gdk4-sys 0.9.5] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_PATH 312s [gdk4-sys 0.9.5] cargo:rerun-if-env-changed=PKG_CONFIG_PATH 312s [gdk4-sys 0.9.5] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR_s390x-unknown-linux-gnu 312s [gdk4-sys 0.9.5] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR_s390x_unknown_linux_gnu 312s [gdk4-sys 0.9.5] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_LIBDIR 312s [gdk4-sys 0.9.5] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR 312s [gdk4-sys 0.9.5] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR_s390x-unknown-linux-gnu 312s [gdk4-sys 0.9.5] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR_s390x_unknown_linux_gnu 312s [gdk4-sys 0.9.5] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_SYSROOT_DIR 312s [gdk4-sys 0.9.5] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR 312s [gdk4-sys 0.9.5] cargo:backends=broadway wayland x11 312s [gdk4-sys 0.9.5] cargo:rustc-cfg=gdk_backend="broadway" 312s [gdk4-sys 0.9.5] cargo:rustc-cfg=gdk_backend="wayland" 312s [gdk4-sys 0.9.5] cargo:rustc-cfg=gdk_backend="x11" 312s Compiling digest v0.10.7 312s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=digest CARGO_MANIFEST_DIR=/tmp/tmp.cy4zYrLhIY/registry/digest-0.10.7 CARGO_MANIFEST_PATH=/tmp/tmp.cy4zYrLhIY/registry/digest-0.10.7/Cargo.toml CARGO_PKG_AUTHORS='RustCrypto Developers' CARGO_PKG_DESCRIPTION='Traits for cryptographic hash functions and message authentication codes' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=digest CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/RustCrypto/traits' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.10.7 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=10 CARGO_PKG_VERSION_PATCH=7 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.cy4zYrLhIY/target/debug/deps rustc --crate-name digest --edition=2018 /tmp/tmp.cy4zYrLhIY/registry/digest-0.10.7/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="alloc"' --cfg 'feature="block-buffer"' --cfg 'feature="core-api"' --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "blobby", "block-buffer", "const-oid", "core-api", "default", "dev", "mac", "oid", "rand_core", "std", "subtle"))' -C metadata=027272cf65436a63 -C extra-filename=-027272cf65436a63 --out-dir /tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.cy4zYrLhIY/target/debug/deps --extern block_buffer=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps/libblock_buffer-4cd3db619b1d8e9e.rmeta --extern crypto_common=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps/libcrypto_common-77cd648c700afbb2.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.cy4zYrLhIY/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 312s warning: `digest` (lib) generated 1 warning (1 duplicate) 312s Compiling rand_chacha v0.3.1 312s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=rand_chacha CARGO_MANIFEST_DIR=/tmp/tmp.cy4zYrLhIY/registry/rand_chacha-0.3.1 CARGO_MANIFEST_PATH=/tmp/tmp.cy4zYrLhIY/registry/rand_chacha-0.3.1/Cargo.toml CARGO_PKG_AUTHORS='The Rand Project Developers:The Rust Project Developers:The CryptoCorrosion Contributors' CARGO_PKG_DESCRIPTION='ChaCha random number generator 312s ' CARGO_PKG_HOMEPAGE='https://rust-random.github.io/book' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=rand_chacha CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-random/rand' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.3.1 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.cy4zYrLhIY/target/debug/deps rustc --crate-name rand_chacha --edition=2018 /tmp/tmp.cy4zYrLhIY/registry/rand_chacha-0.3.1/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "serde", "serde1", "simd", "std"))' -C metadata=dd56c23de683d750 -C extra-filename=-dd56c23de683d750 --out-dir /tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.cy4zYrLhIY/target/debug/deps --extern ppv_lite86=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps/libppv_lite86-57e5b566e2a71c09.rmeta --extern rand_core=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps/librand_core-3c7246ca3f419bbc.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.cy4zYrLhIY/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 313s warning: `rand_chacha` (lib) generated 1 warning (1 duplicate) 313s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=memoffset CARGO_MANIFEST_DIR=/tmp/tmp.cy4zYrLhIY/registry/memoffset-0.8.0 CARGO_MANIFEST_PATH=/tmp/tmp.cy4zYrLhIY/registry/memoffset-0.8.0/Cargo.toml CARGO_PKG_AUTHORS='Gilad Naaman ' CARGO_PKG_DESCRIPTION='offset_of functionality for Rust structs.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=memoffset CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/Gilnaa/memoffset' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.8.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=8 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.cy4zYrLhIY/target/debug/deps OUT_DIR=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/build/memoffset-b32fed70cf81e31f/out rustc --crate-name memoffset --edition=2015 /tmp/tmp.cy4zYrLhIY/registry/memoffset-0.8.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "unstable_const"))' -C metadata=2f432c32070b84ca -C extra-filename=-2f432c32070b84ca --out-dir /tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.cy4zYrLhIY/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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.cy4zYrLhIY/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain --cfg tuple_ty --cfg allow_clippy --cfg maybe_uninit --cfg doctests --cfg raw_ref_macros --cfg stable_const` 313s warning: unexpected `cfg` condition name: `stable_const` 313s --> /usr/share/cargo/registry/memoffset-0.8.0/src/lib.rs:60:41 313s | 313s 60 | all(feature = "unstable_const", not(stable_const)), 313s | ^^^^^^^^^^^^ 313s | 313s = help: expected names are: `clippy`, `debug_assertions`, `doc`, `docsrs`, `doctest`, `feature`, `fmt_debug`, `miri`, `overflow_checks`, `panic`, `proc_macro`, `relocation_model`, `rustfmt`, `sanitize`, `sanitizer_cfi_generalize_pointers`, `sanitizer_cfi_normalize_integers`, `target_abi`, `target_arch`, `target_endian`, `target_env`, `target_family`, `target_feature`, `target_has_atomic`, `target_has_atomic_equal_alignment`, `target_has_atomic_load_store`, `target_os`, `target_pointer_width`, `target_thread_local`, `target_vendor`, `test`, `ub_checks`, `unix`, and `windows` 313s = help: consider using a Cargo feature instead 313s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 313s [lints.rust] 313s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(stable_const)'] } 313s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(stable_const)");` to the top of the `build.rs` 313s = note: see for more information about checking conditional configuration 313s = note: `#[warn(unexpected_cfgs)]` on by default 313s 313s warning: unexpected `cfg` condition name: `doctests` 313s --> /usr/share/cargo/registry/memoffset-0.8.0/src/lib.rs:66:7 313s | 313s 66 | #[cfg(doctests)] 313s | ^^^^^^^^ help: there is a config with a similar name: `doctest` 313s | 313s = help: consider using a Cargo feature instead 313s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 313s [lints.rust] 313s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doctests)'] } 313s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doctests)");` to the top of the `build.rs` 313s = note: see for more information about checking conditional configuration 313s 313s warning: unexpected `cfg` condition name: `doctests` 313s --> /usr/share/cargo/registry/memoffset-0.8.0/src/lib.rs:69:7 313s | 313s 69 | #[cfg(doctests)] 313s | ^^^^^^^^ help: there is a config with a similar name: `doctest` 313s | 313s = help: consider using a Cargo feature instead 313s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 313s [lints.rust] 313s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doctests)'] } 313s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doctests)");` to the top of the `build.rs` 313s = note: see for more information about checking conditional configuration 313s 313s warning: unexpected `cfg` condition name: `raw_ref_macros` 313s --> /usr/share/cargo/registry/memoffset-0.8.0/src/raw_field.rs:22:7 313s | 313s 22 | #[cfg(raw_ref_macros)] 313s | ^^^^^^^^^^^^^^ 313s | 313s = help: consider using a Cargo feature instead 313s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 313s [lints.rust] 313s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(raw_ref_macros)'] } 313s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(raw_ref_macros)");` to the top of the `build.rs` 313s = note: see for more information about checking conditional configuration 313s 313s warning: unexpected `cfg` condition name: `raw_ref_macros` 313s --> /usr/share/cargo/registry/memoffset-0.8.0/src/raw_field.rs:30:11 313s | 313s 30 | #[cfg(not(raw_ref_macros))] 313s | ^^^^^^^^^^^^^^ 313s | 313s = help: consider using a Cargo feature instead 313s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 313s [lints.rust] 313s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(raw_ref_macros)'] } 313s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(raw_ref_macros)");` to the top of the `build.rs` 313s = note: see for more information about checking conditional configuration 313s 313s warning: unexpected `cfg` condition name: `allow_clippy` 313s --> /usr/share/cargo/registry/memoffset-0.8.0/src/raw_field.rs:57:7 313s | 313s 57 | #[cfg(allow_clippy)] 313s | ^^^^^^^^^^^^ 313s | 313s = help: consider using a Cargo feature instead 313s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 313s [lints.rust] 313s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(allow_clippy)'] } 313s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(allow_clippy)");` to the top of the `build.rs` 313s = note: see for more information about checking conditional configuration 313s 313s warning: unexpected `cfg` condition name: `allow_clippy` 313s --> /usr/share/cargo/registry/memoffset-0.8.0/src/raw_field.rs:69:11 313s | 313s 69 | #[cfg(not(allow_clippy))] 313s | ^^^^^^^^^^^^ 313s | 313s = help: consider using a Cargo feature instead 313s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 313s [lints.rust] 313s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(allow_clippy)'] } 313s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(allow_clippy)");` to the top of the `build.rs` 313s = note: see for more information about checking conditional configuration 313s 313s warning: unexpected `cfg` condition name: `allow_clippy` 313s --> /usr/share/cargo/registry/memoffset-0.8.0/src/raw_field.rs:90:7 313s | 313s 90 | #[cfg(allow_clippy)] 313s | ^^^^^^^^^^^^ 313s | 313s = help: consider using a Cargo feature instead 313s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 313s [lints.rust] 313s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(allow_clippy)'] } 313s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(allow_clippy)");` to the top of the `build.rs` 313s = note: see for more information about checking conditional configuration 313s 313s warning: unexpected `cfg` condition name: `allow_clippy` 313s --> /usr/share/cargo/registry/memoffset-0.8.0/src/raw_field.rs:100:11 313s | 313s 100 | #[cfg(not(allow_clippy))] 313s | ^^^^^^^^^^^^ 313s | 313s = help: consider using a Cargo feature instead 313s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 313s [lints.rust] 313s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(allow_clippy)'] } 313s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(allow_clippy)");` to the top of the `build.rs` 313s = note: see for more information about checking conditional configuration 313s 313s warning: unexpected `cfg` condition name: `allow_clippy` 313s --> /usr/share/cargo/registry/memoffset-0.8.0/src/raw_field.rs:125:7 313s | 313s 125 | #[cfg(allow_clippy)] 313s | ^^^^^^^^^^^^ 313s | 313s = help: consider using a Cargo feature instead 313s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 313s [lints.rust] 313s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(allow_clippy)'] } 313s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(allow_clippy)");` to the top of the `build.rs` 313s = note: see for more information about checking conditional configuration 313s 313s warning: unexpected `cfg` condition name: `allow_clippy` 313s --> /usr/share/cargo/registry/memoffset-0.8.0/src/raw_field.rs:141:11 313s | 313s 141 | #[cfg(not(allow_clippy))] 313s | ^^^^^^^^^^^^ 313s | 313s = help: consider using a Cargo feature instead 313s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 313s [lints.rust] 313s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(allow_clippy)'] } 313s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(allow_clippy)");` to the top of the `build.rs` 313s = note: see for more information about checking conditional configuration 313s 313s warning: unexpected `cfg` condition name: `tuple_ty` 313s --> /usr/share/cargo/registry/memoffset-0.8.0/src/raw_field.rs:183:7 313s | 313s 183 | #[cfg(tuple_ty)] 313s | ^^^^^^^^ 313s | 313s = help: consider using a Cargo feature instead 313s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 313s [lints.rust] 313s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tuple_ty)'] } 313s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tuple_ty)");` to the top of the `build.rs` 313s = note: see for more information about checking conditional configuration 313s 313s warning: unexpected `cfg` condition name: `maybe_uninit` 313s --> /usr/share/cargo/registry/memoffset-0.8.0/src/offset_of.rs:23:7 313s | 313s 23 | #[cfg(maybe_uninit)] 313s | ^^^^^^^^^^^^ 313s | 313s = help: consider using a Cargo feature instead 313s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 313s [lints.rust] 313s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(maybe_uninit)'] } 313s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(maybe_uninit)");` to the top of the `build.rs` 313s = note: see for more information about checking conditional configuration 313s 313s warning: unexpected `cfg` condition name: `maybe_uninit` 313s --> /usr/share/cargo/registry/memoffset-0.8.0/src/offset_of.rs:37:11 313s | 313s 37 | #[cfg(not(maybe_uninit))] 313s | ^^^^^^^^^^^^ 313s | 313s = help: consider using a Cargo feature instead 313s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 313s [lints.rust] 313s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(maybe_uninit)'] } 313s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(maybe_uninit)");` to the top of the `build.rs` 313s = note: see for more information about checking conditional configuration 313s 313s warning: unexpected `cfg` condition name: `stable_const` 313s --> /usr/share/cargo/registry/memoffset-0.8.0/src/offset_of.rs:49:39 313s | 313s 49 | #[cfg(any(feature = "unstable_const", stable_const))] 313s | ^^^^^^^^^^^^ 313s | 313s = help: consider using a Cargo feature instead 313s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 313s [lints.rust] 313s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(stable_const)'] } 313s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(stable_const)");` to the top of the `build.rs` 313s = note: see for more information about checking conditional configuration 313s 313s warning: unexpected `cfg` condition name: `stable_const` 313s --> /usr/share/cargo/registry/memoffset-0.8.0/src/offset_of.rs:61:43 313s | 313s 61 | #[cfg(not(any(feature = "unstable_const", stable_const)))] 313s | ^^^^^^^^^^^^ 313s | 313s = help: consider using a Cargo feature instead 313s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 313s [lints.rust] 313s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(stable_const)'] } 313s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(stable_const)");` to the top of the `build.rs` 313s = note: see for more information about checking conditional configuration 313s 313s warning: unexpected `cfg` condition name: `tuple_ty` 313s --> /usr/share/cargo/registry/memoffset-0.8.0/src/offset_of.rs:121:7 313s | 313s 121 | #[cfg(tuple_ty)] 313s | ^^^^^^^^ 313s | 313s = help: consider using a Cargo feature instead 313s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 313s [lints.rust] 313s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tuple_ty)'] } 313s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tuple_ty)");` to the top of the `build.rs` 313s = note: see for more information about checking conditional configuration 313s 313s warning: `memoffset` (lib) generated 18 warnings (1 duplicate) 313s 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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0--remap-path-prefix/tmp/tmp.cy4zYrLhIY/registry=/usr/share/cargo/registry-Ctarget-feature=+backchain' CARGO_FEATURE_FEATURE=1 CARGO_FEATURE_MEMOFFSET=1 CARGO_FEATURE_SOCKET=1 CARGO_FEATURE_UIO=1 CARGO_FEATURE_USER=1 CARGO_MANIFEST_DIR=/tmp/tmp.cy4zYrLhIY/registry/nix-0.29.0 CARGO_MANIFEST_PATH=/tmp/tmp.cy4zYrLhIY/registry/nix-0.29.0/Cargo.toml CARGO_PKG_AUTHORS='The nix-rust Project Developers' CARGO_PKG_DESCRIPTION='Rust friendly bindings to *nix APIs' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=nix CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/nix-rust/nix' CARGO_PKG_RUST_VERSION=1.69 CARGO_PKG_VERSION=0.29.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=29 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' DEBUG=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.cy4zYrLhIY/target/debug/deps:/tmp/tmp.cy4zYrLhIY/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/build/nix-8065280fb097eaec/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.cy4zYrLhIY/target/debug/build/nix-9cc97a3a2fcb749b/build-script-build` 313s [nix 0.29.0] cargo:rustc-check-cfg=cfg(android) 313s [nix 0.29.0] cargo:rustc-check-cfg=cfg(dragonfly) 313s [nix 0.29.0] cargo:rustc-check-cfg=cfg(ios) 313s [nix 0.29.0] cargo:rustc-check-cfg=cfg(freebsd) 313s [nix 0.29.0] cargo:rustc-check-cfg=cfg(illumos) 313s [nix 0.29.0] cargo:rustc-check-cfg=cfg(linux) 313s [nix 0.29.0] cargo:rustc-cfg=linux 313s [nix 0.29.0] cargo:rustc-check-cfg=cfg(macos) 313s [nix 0.29.0] cargo:rustc-check-cfg=cfg(netbsd) 313s [nix 0.29.0] cargo:rustc-check-cfg=cfg(openbsd) 313s [nix 0.29.0] cargo:rustc-check-cfg=cfg(solaris) 313s [nix 0.29.0] cargo:rustc-check-cfg=cfg(watchos) 313s [nix 0.29.0] cargo:rustc-check-cfg=cfg(tvos) 313s [nix 0.29.0] cargo:rustc-check-cfg=cfg(visionos) 313s [nix 0.29.0] cargo:rustc-check-cfg=cfg(apple_targets) 313s [nix 0.29.0] cargo:rustc-check-cfg=cfg(bsd) 313s [nix 0.29.0] cargo:rustc-check-cfg=cfg(bsd_without_apple) 313s [nix 0.29.0] cargo:rustc-check-cfg=cfg(linux_android) 313s [nix 0.29.0] cargo:rustc-cfg=linux_android 313s [nix 0.29.0] cargo:rustc-check-cfg=cfg(freebsdlike) 313s [nix 0.29.0] cargo:rustc-check-cfg=cfg(netbsdlike) 313s [nix 0.29.0] cargo:rustc-check-cfg=cfg(solarish) 313s [nix 0.29.0] cargo:rustc-check-cfg=cfg(apple_targets) 313s [nix 0.29.0] cargo:rustc-check-cfg=cfg(bsd) 313s [nix 0.29.0] cargo:rustc-check-cfg=cfg(bsd_without_apple) 313s [nix 0.29.0] cargo:rustc-check-cfg=cfg(linux_android) 313s [nix 0.29.0] cargo:rustc-check-cfg=cfg(freebsdlike) 313s [nix 0.29.0] cargo:rustc-check-cfg=cfg(netbsdlike) 313s [nix 0.29.0] cargo:rustc-check-cfg=cfg(solarish) 313s [nix 0.29.0] cargo:rustc-check-cfg=cfg(fbsd14) 313s [nix 0.29.0] cargo:rustc-check-cfg=cfg(qemu) 313s Compiling event-listener-strategy v0.5.3 313s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=event_listener_strategy CARGO_MANIFEST_DIR=/tmp/tmp.cy4zYrLhIY/registry/event-listener-strategy-0.5.3 CARGO_MANIFEST_PATH=/tmp/tmp.cy4zYrLhIY/registry/event-listener-strategy-0.5.3/Cargo.toml CARGO_PKG_AUTHORS='John Nunley ' CARGO_PKG_DESCRIPTION='Block or poll on event_listener easily' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=event-listener-strategy CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/smol-rs/event-listener-strategy' CARGO_PKG_RUST_VERSION=1.60 CARGO_PKG_VERSION=0.5.3 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=5 CARGO_PKG_VERSION_PATCH=3 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.cy4zYrLhIY/target/debug/deps rustc --crate-name event_listener_strategy --edition=2021 /tmp/tmp.cy4zYrLhIY/registry/event-listener-strategy-0.5.3/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --warn=unexpected_cfgs --check-cfg 'cfg(wasm_bindgen_unstable_test_coverage)' --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "std"))' -C metadata=c155ba63305d40fd -C extra-filename=-c155ba63305d40fd --out-dir /tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.cy4zYrLhIY/target/debug/deps --extern event_listener=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps/libevent_listener-93bdad7496d4853a.rmeta --extern pin_project_lite=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps/libpin_project_lite-5dc815523e98d889.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.cy4zYrLhIY/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 313s warning: `event-listener-strategy` (lib) generated 1 warning (1 duplicate) 313s Compiling tracing-attributes v0.1.27 313s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=tracing_attributes CARGO_MANIFEST_DIR=/tmp/tmp.cy4zYrLhIY/registry/tracing-attributes-0.1.27 CARGO_MANIFEST_PATH=/tmp/tmp.cy4zYrLhIY/registry/tracing-attributes-0.1.27/Cargo.toml CARGO_PKG_AUTHORS='Tokio Contributors :Eliza Weisman :David Barsky ' CARGO_PKG_DESCRIPTION='Procedural macro attributes for automatically instrumenting functions. 313s ' CARGO_PKG_HOMEPAGE='https://tokio.rs' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=tracing-attributes CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/tokio-rs/tracing' CARGO_PKG_RUST_VERSION=1.56.0 CARGO_PKG_VERSION=0.1.27 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=27 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.cy4zYrLhIY/target/debug/deps rustc --crate-name tracing_attributes --edition=2018 /tmp/tmp.cy4zYrLhIY/registry/tracing-attributes-0.1.27/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("async-await"))' -C metadata=7f00f49c1aac99bb -C extra-filename=-7f00f49c1aac99bb --out-dir /tmp/tmp.cy4zYrLhIY/target/debug/deps -L dependency=/tmp/tmp.cy4zYrLhIY/target/debug/deps --extern proc_macro2=/tmp/tmp.cy4zYrLhIY/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rlib --extern quote=/tmp/tmp.cy4zYrLhIY/target/debug/deps/libquote-dc92c6f25ee0f0c6.rlib --extern syn=/tmp/tmp.cy4zYrLhIY/target/debug/deps/libsyn-0167beed9e699402.rlib --extern proc_macro --cap-lints warn` 313s warning: lint `private_in_public` has been removed: replaced with another group of lints, see RFC for more information 313s --> /tmp/tmp.cy4zYrLhIY/registry/tracing-attributes-0.1.27/src/lib.rs:73:5 313s | 313s 73 | private_in_public, 313s | ^^^^^^^^^^^^^^^^^ 313s | 313s = note: `#[warn(renamed_and_removed_lints)]` on by default 313s 315s warning: `tracing-attributes` (lib) generated 1 warning 315s Compiling tracing v0.1.40 315s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=tracing CARGO_MANIFEST_DIR=/tmp/tmp.cy4zYrLhIY/registry/tracing-0.1.40 CARGO_MANIFEST_PATH=/tmp/tmp.cy4zYrLhIY/registry/tracing-0.1.40/Cargo.toml CARGO_PKG_AUTHORS='Eliza Weisman :Tokio Contributors ' CARGO_PKG_DESCRIPTION='Application-level tracing for Rust. 315s ' CARGO_PKG_HOMEPAGE='https://tokio.rs' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=tracing CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/tokio-rs/tracing' CARGO_PKG_RUST_VERSION=1.56.0 CARGO_PKG_VERSION=0.1.40 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=40 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.cy4zYrLhIY/target/debug/deps rustc --crate-name tracing --edition=2018 /tmp/tmp.cy4zYrLhIY/registry/tracing-0.1.40/src/lib.rs --error-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="attributes"' --cfg 'feature="default"' --cfg 'feature="std"' --cfg 'feature="tracing-attributes"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("async-await", "attributes", "default", "log", "log-always", "max_level_debug", "max_level_error", "max_level_info", "max_level_off", "max_level_trace", "max_level_warn", "release_max_level_debug", "release_max_level_error", "release_max_level_info", "release_max_level_off", "release_max_level_trace", "release_max_level_warn", "std", "tracing-attributes"))' -C metadata=5f8a2432d30b4ef1 -C extra-filename=-5f8a2432d30b4ef1 --out-dir /tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.cy4zYrLhIY/target/debug/deps --extern pin_project_lite=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps/libpin_project_lite-5dc815523e98d889.rmeta --extern tracing_attributes=/tmp/tmp.cy4zYrLhIY/target/debug/deps/libtracing_attributes-7f00f49c1aac99bb.so --extern tracing_core=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps/libtracing_core-4c8af7279fad1469.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.cy4zYrLhIY/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 315s warning: lint `private_in_public` has been removed: replaced with another group of lints, see RFC for more information 315s --> /usr/share/cargo/registry/tracing-0.1.40/src/lib.rs:932:5 315s | 315s 932 | private_in_public, 315s | ^^^^^^^^^^^^^^^^^ 315s | 315s = note: `#[warn(renamed_and_removed_lints)]` on by default 315s 315s warning: `tracing` (lib) generated 2 warnings (1 duplicate) 315s Compiling async-broadcast v0.7.1 315s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=async_broadcast CARGO_MANIFEST_DIR=/tmp/tmp.cy4zYrLhIY/registry/async-broadcast-0.7.1 CARGO_MANIFEST_PATH=/tmp/tmp.cy4zYrLhIY/registry/async-broadcast-0.7.1/Cargo.toml CARGO_PKG_AUTHORS='Stjepan Glavina :Yoshua Wuyts :Zeeshan Ali Khan ' CARGO_PKG_DESCRIPTION='Async broadcast channels' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=async-broadcast CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/smol-rs/async-broadcast' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.7.1 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=7 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.cy4zYrLhIY/target/debug/deps rustc --crate-name async_broadcast --edition=2018 /tmp/tmp.cy4zYrLhIY/registry/async-broadcast-0.7.1/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=852b859fbdd9a4f4 -C extra-filename=-852b859fbdd9a4f4 --out-dir /tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.cy4zYrLhIY/target/debug/deps --extern event_listener=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps/libevent_listener-93bdad7496d4853a.rmeta --extern event_listener_strategy=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps/libevent_listener_strategy-c155ba63305d40fd.rmeta --extern futures_core=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps/libfutures_core-8d305950da6bf5c8.rmeta --extern pin_project_lite=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps/libpin_project_lite-5dc815523e98d889.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.cy4zYrLhIY/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 315s warning: `async-broadcast` (lib) generated 1 warning (1 duplicate) 315s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=nix CARGO_MANIFEST_DIR=/tmp/tmp.cy4zYrLhIY/registry/nix-0.29.0 CARGO_MANIFEST_PATH=/tmp/tmp.cy4zYrLhIY/registry/nix-0.29.0/Cargo.toml CARGO_PKG_AUTHORS='The nix-rust Project Developers' CARGO_PKG_DESCRIPTION='Rust friendly bindings to *nix APIs' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=nix CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/nix-rust/nix' CARGO_PKG_RUST_VERSION=1.69 CARGO_PKG_VERSION=0.29.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=29 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.cy4zYrLhIY/target/debug/deps OUT_DIR=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/build/nix-8065280fb097eaec/out rustc --crate-name nix --edition=2021 /tmp/tmp.cy4zYrLhIY/registry/nix-0.29.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="feature"' --cfg 'feature="memoffset"' --cfg 'feature="socket"' --cfg 'feature="uio"' --cfg 'feature="user"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("acct", "aio", "default", "dir", "env", "event", "fanotify", "feature", "fs", "hostname", "inotify", "ioctl", "kmod", "memoffset", "mman", "mount", "mqueue", "net", "personality", "pin-utils", "poll", "process", "pthread", "ptrace", "quota", "reboot", "resource", "sched", "signal", "socket", "term", "time", "ucontext", "uio", "user", "zerocopy"))' -C metadata=1c06771599af3024 -C extra-filename=-1c06771599af3024 --out-dir /tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.cy4zYrLhIY/target/debug/deps --extern bitflags=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps/libbitflags-4b295667124b9dc6.rmeta --extern cfg_if=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps/libcfg_if-ff3ff84a061de73f.rmeta --extern libc=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps/liblibc-cf2521928ac070dc.rmeta --extern memoffset=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps/libmemoffset-2f432c32070b84ca.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.cy4zYrLhIY/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain --cfg linux --cfg linux_android --check-cfg 'cfg(android)' --check-cfg 'cfg(dragonfly)' --check-cfg 'cfg(ios)' --check-cfg 'cfg(freebsd)' --check-cfg 'cfg(illumos)' --check-cfg 'cfg(linux)' --check-cfg 'cfg(macos)' --check-cfg 'cfg(netbsd)' --check-cfg 'cfg(openbsd)' --check-cfg 'cfg(solaris)' --check-cfg 'cfg(watchos)' --check-cfg 'cfg(tvos)' --check-cfg 'cfg(visionos)' --check-cfg 'cfg(apple_targets)' --check-cfg 'cfg(bsd)' --check-cfg 'cfg(bsd_without_apple)' --check-cfg 'cfg(linux_android)' --check-cfg 'cfg(freebsdlike)' --check-cfg 'cfg(netbsdlike)' --check-cfg 'cfg(solarish)' --check-cfg 'cfg(apple_targets)' --check-cfg 'cfg(bsd)' --check-cfg 'cfg(bsd_without_apple)' --check-cfg 'cfg(linux_android)' --check-cfg 'cfg(freebsdlike)' --check-cfg 'cfg(netbsdlike)' --check-cfg 'cfg(solarish)' --check-cfg 'cfg(fbsd14)' --check-cfg 'cfg(qemu)'` 315s warning: elided lifetime has a name 315s --> /usr/share/cargo/registry/nix-0.29.0/src/sys/socket/sockopt.rs:1577:34 315s | 315s 1576 | impl<'a> Set<'a, OsString> for SetOsString<'a> { 315s | -- lifetime `'a` declared here 315s 1577 | fn new(val: &'a OsString) -> SetOsString { 315s | ^^^^^^^^^^^ this elided lifetime gets resolved as `'a` 315s | 315s = note: `#[warn(elided_named_lifetimes)]` on by default 315s 316s warning: struct `GetU8` is never constructed 316s --> /usr/share/cargo/registry/nix-0.29.0/src/sys/socket/sockopt.rs:1441:8 316s | 316s 1441 | struct GetU8 { 316s | ^^^^^ 316s | 316s = note: `#[warn(dead_code)]` on by default 316s 316s warning: struct `SetU8` is never constructed 316s --> /usr/share/cargo/registry/nix-0.29.0/src/sys/socket/sockopt.rs:1473:8 316s | 316s 1473 | struct SetU8 { 316s | ^^^^^ 316s 316s warning: struct `GetCString` is never constructed 316s --> /usr/share/cargo/registry/nix-0.29.0/src/sys/socket/sockopt.rs:1593:8 316s | 316s 1593 | struct GetCString> { 316s | ^^^^^^^^^^ 316s 316s warning: `nix` (lib) generated 5 warnings (1 duplicate) 316s Compiling gdk-pixbuf v0.20.7 316s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=gdk_pixbuf CARGO_MANIFEST_DIR=/tmp/tmp.cy4zYrLhIY/registry/gdk-pixbuf-0.20.7 CARGO_MANIFEST_PATH=/tmp/tmp.cy4zYrLhIY/registry/gdk-pixbuf-0.20.7/Cargo.toml CARGO_PKG_AUTHORS='The gtk-rs Project Developers' CARGO_PKG_DESCRIPTION='Rust bindings for the GdkPixbuf library' CARGO_PKG_HOMEPAGE='https://gtk-rs.org/' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=gdk-pixbuf CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/gtk-rs/gtk-rs-core' CARGO_PKG_RUST_VERSION=1.70 CARGO_PKG_VERSION=0.20.7 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=20 CARGO_PKG_VERSION_PATCH=7 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.cy4zYrLhIY/target/debug/deps rustc --crate-name gdk_pixbuf --edition=2021 /tmp/tmp.cy4zYrLhIY/registry/gdk-pixbuf-0.20.7/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("v2_40", "v2_42"))' -C metadata=49c4431c8d965d05 -C extra-filename=-49c4431c8d965d05 --out-dir /tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.cy4zYrLhIY/target/debug/deps --extern gdk_pixbuf_sys=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps/libgdk_pixbuf_sys-2987b4ccc6a33d16.rmeta --extern gio=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps/libgio-9c864d2fb50eb745.rmeta --extern glib=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps/libglib-86961142feeefe07.rmeta --extern libc=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps/liblibc-cf2521928ac070dc.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.cy4zYrLhIY/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 317s warning: `gdk-pixbuf` (lib) generated 1 warning (1 duplicate) 317s Compiling pango v0.20.7 317s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=pango CARGO_MANIFEST_DIR=/tmp/tmp.cy4zYrLhIY/registry/pango-0.20.7 CARGO_MANIFEST_PATH=/tmp/tmp.cy4zYrLhIY/registry/pango-0.20.7/Cargo.toml CARGO_PKG_AUTHORS='The gtk-rs Project Developers' CARGO_PKG_DESCRIPTION='Rust bindings for the Pango library' CARGO_PKG_HOMEPAGE='https://gtk-rs.org/' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=pango CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/gtk-rs/gtk-rs-core' CARGO_PKG_RUST_VERSION=1.70 CARGO_PKG_VERSION=0.20.7 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=20 CARGO_PKG_VERSION_PATCH=7 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.cy4zYrLhIY/target/debug/deps rustc --crate-name pango --edition=2021 /tmp/tmp.cy4zYrLhIY/registry/pango-0.20.7/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="v1_42"' --cfg 'feature="v1_44"' --cfg 'feature="v1_46"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("v1_42", "v1_44", "v1_46", "v1_48", "v1_50", "v1_52", "v1_54", "v1_56"))' -C metadata=16cb4cd661e430dc -C extra-filename=-16cb4cd661e430dc --out-dir /tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.cy4zYrLhIY/target/debug/deps --extern gio=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps/libgio-9c864d2fb50eb745.rmeta --extern glib=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps/libglib-86961142feeefe07.rmeta --extern libc=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps/liblibc-cf2521928ac070dc.rmeta --extern pango_sys=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps/libpango_sys-f907ef533c31ecd7.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.cy4zYrLhIY/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 320s warning: `pango` (lib) generated 1 warning (1 duplicate) 320s Compiling rand v0.8.5 320s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=rand CARGO_MANIFEST_DIR=/tmp/tmp.cy4zYrLhIY/registry/rand-0.8.5 CARGO_MANIFEST_PATH=/tmp/tmp.cy4zYrLhIY/registry/rand-0.8.5/Cargo.toml CARGO_PKG_AUTHORS='The Rand Project Developers:The Rust Project Developers' CARGO_PKG_DESCRIPTION='Random number generators and other randomness functionality. 320s ' CARGO_PKG_HOMEPAGE='https://rust-random.github.io/book' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=rand CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-random/rand' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.8.5 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=8 CARGO_PKG_VERSION_PATCH=5 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.cy4zYrLhIY/target/debug/deps rustc --crate-name rand --edition=2018 /tmp/tmp.cy4zYrLhIY/registry/rand-0.8.5/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="alloc"' --cfg 'feature="default"' --cfg 'feature="getrandom"' --cfg 'feature="libc"' --cfg 'feature="rand_chacha"' --cfg 'feature="std"' --cfg 'feature="std_rng"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "default", "getrandom", "libc", "log", "min_const_gen", "nightly", "rand_chacha", "serde", "serde1", "small_rng", "std", "std_rng"))' -C metadata=da2a195293a4eb5f -C extra-filename=-da2a195293a4eb5f --out-dir /tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.cy4zYrLhIY/target/debug/deps --extern libc=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps/liblibc-cf2521928ac070dc.rmeta --extern rand_chacha=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps/librand_chacha-dd56c23de683d750.rmeta --extern rand_core=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps/librand_core-3c7246ca3f419bbc.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.cy4zYrLhIY/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 320s warning: unexpected `cfg` condition value: `simd_support` 320s --> /usr/share/cargo/registry/rand-0.8.5/src/lib.rs:52:13 320s | 320s 52 | #![cfg_attr(feature = "simd_support", feature(stdsimd))] 320s | ^^^^^^^^^^^^^^^^^^^^^^^^ 320s | 320s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 320s = help: consider adding `simd_support` as a feature in `Cargo.toml` 320s = note: see for more information about checking conditional configuration 320s = note: `#[warn(unexpected_cfgs)]` on by default 320s 320s warning: unexpected `cfg` condition name: `doc_cfg` 320s --> /usr/share/cargo/registry/rand-0.8.5/src/lib.rs:53:13 320s | 320s 53 | #![cfg_attr(doc_cfg, feature(doc_cfg))] 320s | ^^^^^^^ 320s | 320s = help: expected names are: `clippy`, `debug_assertions`, `doc`, `docsrs`, `doctest`, `feature`, `fmt_debug`, `miri`, `overflow_checks`, `panic`, `proc_macro`, `relocation_model`, `rustfmt`, `sanitize`, `sanitizer_cfi_generalize_pointers`, `sanitizer_cfi_normalize_integers`, `target_abi`, `target_arch`, `target_endian`, `target_env`, `target_family`, `target_feature`, `target_has_atomic`, `target_has_atomic_equal_alignment`, `target_has_atomic_load_store`, `target_os`, `target_pointer_width`, `target_thread_local`, `target_vendor`, `test`, `ub_checks`, `unix`, and `windows` 320s = help: consider using a Cargo feature instead 320s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 320s [lints.rust] 320s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 320s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 320s = note: see for more information about checking conditional configuration 320s 320s warning: unexpected `cfg` condition name: `doc_cfg` 320s --> /usr/share/cargo/registry/rand-0.8.5/src/lib.rs:181:12 320s | 320s 181 | #[cfg_attr(doc_cfg, doc(cfg(all(feature = "std", feature = "std_rng"))))] 320s | ^^^^^^^ 320s | 320s = help: consider using a Cargo feature instead 320s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 320s [lints.rust] 320s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 320s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 320s = note: see for more information about checking conditional configuration 320s 320s warning: unexpected `cfg` condition name: `doc_cfg` 320s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/mod.rs:116:12 320s | 320s 116 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 320s | ^^^^^^^ 320s | 320s = help: consider using a Cargo feature instead 320s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 320s [lints.rust] 320s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 320s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 320s = note: see for more information about checking conditional configuration 320s 320s warning: unexpected `cfg` condition name: `features` 320s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/distribution.rs:162:7 320s | 320s 162 | #[cfg(features = "nightly")] 320s | ^^^^^^^^^^^^^^^^^^^^ 320s | 320s = note: see for more information about checking conditional configuration 320s help: there is a config with a similar name and value 320s | 320s 162 | #[cfg(feature = "nightly")] 320s | ~~~~~~~ 320s 320s warning: unexpected `cfg` condition value: `simd_support` 320s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/float.rs:15:7 320s | 320s 15 | #[cfg(feature = "simd_support")] use packed_simd::*; 320s | ^^^^^^^^^^^^^^^^^^^^^^^^ 320s | 320s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 320s = help: consider adding `simd_support` as a feature in `Cargo.toml` 320s = note: see for more information about checking conditional configuration 320s 320s warning: unexpected `cfg` condition value: `simd_support` 320s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/float.rs:156:7 320s | 320s 156 | #[cfg(feature = "simd_support")] 320s | ^^^^^^^^^^^^^^^^^^^^^^^^ 320s | 320s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 320s = help: consider adding `simd_support` as a feature in `Cargo.toml` 320s = note: see for more information about checking conditional configuration 320s 320s warning: unexpected `cfg` condition value: `simd_support` 320s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/float.rs:158:7 320s | 320s 158 | #[cfg(feature = "simd_support")] 320s | ^^^^^^^^^^^^^^^^^^^^^^^^ 320s | 320s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 320s = help: consider adding `simd_support` as a feature in `Cargo.toml` 320s = note: see for more information about checking conditional configuration 320s 320s warning: unexpected `cfg` condition value: `simd_support` 320s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/float.rs:160:7 320s | 320s 160 | #[cfg(feature = "simd_support")] 320s | ^^^^^^^^^^^^^^^^^^^^^^^^ 320s | 320s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 320s = help: consider adding `simd_support` as a feature in `Cargo.toml` 320s = note: see for more information about checking conditional configuration 320s 320s warning: unexpected `cfg` condition value: `simd_support` 320s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/float.rs:162:7 320s | 320s 162 | #[cfg(feature = "simd_support")] 320s | ^^^^^^^^^^^^^^^^^^^^^^^^ 320s | 320s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 320s = help: consider adding `simd_support` as a feature in `Cargo.toml` 320s = note: see for more information about checking conditional configuration 320s 320s warning: unexpected `cfg` condition value: `simd_support` 320s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/float.rs:165:7 320s | 320s 165 | #[cfg(feature = "simd_support")] 320s | ^^^^^^^^^^^^^^^^^^^^^^^^ 320s | 320s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 320s = help: consider adding `simd_support` as a feature in `Cargo.toml` 320s = note: see for more information about checking conditional configuration 320s 320s warning: unexpected `cfg` condition value: `simd_support` 320s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/float.rs:167:7 320s | 320s 167 | #[cfg(feature = "simd_support")] 320s | ^^^^^^^^^^^^^^^^^^^^^^^^ 320s | 320s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 320s = help: consider adding `simd_support` as a feature in `Cargo.toml` 320s = note: see for more information about checking conditional configuration 320s 320s warning: unexpected `cfg` condition value: `simd_support` 320s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/float.rs:169:7 320s | 320s 169 | #[cfg(feature = "simd_support")] 320s | ^^^^^^^^^^^^^^^^^^^^^^^^ 320s | 320s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 320s = help: consider adding `simd_support` as a feature in `Cargo.toml` 320s = note: see for more information about checking conditional configuration 320s 320s warning: unexpected `cfg` condition value: `simd_support` 320s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/integer.rs:13:32 320s | 320s 13 | #[cfg(all(target_arch = "x86", feature = "simd_support"))] 320s | ^^^^^^^^^^^^^^^^^^^^^^^^ 320s | 320s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 320s = help: consider adding `simd_support` as a feature in `Cargo.toml` 320s = note: see for more information about checking conditional configuration 320s 320s warning: unexpected `cfg` condition value: `simd_support` 320s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/integer.rs:15:35 320s | 320s 15 | #[cfg(all(target_arch = "x86_64", feature = "simd_support"))] 320s | ^^^^^^^^^^^^^^^^^^^^^^^^ 320s | 320s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 320s = help: consider adding `simd_support` as a feature in `Cargo.toml` 320s = note: see for more information about checking conditional configuration 320s 320s warning: unexpected `cfg` condition value: `simd_support` 320s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/integer.rs:19:7 320s | 320s 19 | #[cfg(feature = "simd_support")] use packed_simd::*; 320s | ^^^^^^^^^^^^^^^^^^^^^^^^ 320s | 320s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 320s = help: consider adding `simd_support` as a feature in `Cargo.toml` 320s = note: see for more information about checking conditional configuration 320s 320s warning: unexpected `cfg` condition value: `simd_support` 320s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/integer.rs:112:7 320s | 320s 112 | #[cfg(feature = "simd_support")] 320s | ^^^^^^^^^^^^^^^^^^^^^^^^ 320s | 320s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 320s = help: consider adding `simd_support` as a feature in `Cargo.toml` 320s = note: see for more information about checking conditional configuration 320s 320s warning: unexpected `cfg` condition value: `simd_support` 320s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/integer.rs:142:7 320s | 320s 142 | #[cfg(feature = "simd_support")] 320s | ^^^^^^^^^^^^^^^^^^^^^^^^ 320s | 320s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 320s = help: consider adding `simd_support` as a feature in `Cargo.toml` 320s = note: see for more information about checking conditional configuration 320s 320s warning: unexpected `cfg` condition value: `simd_support` 320s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/integer.rs:144:7 320s | 320s 144 | #[cfg(feature = "simd_support")] 320s | ^^^^^^^^^^^^^^^^^^^^^^^^ 320s | 320s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 320s = help: consider adding `simd_support` as a feature in `Cargo.toml` 320s = note: see for more information about checking conditional configuration 320s 320s warning: unexpected `cfg` condition value: `simd_support` 320s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/integer.rs:146:7 320s | 320s 146 | #[cfg(feature = "simd_support")] 320s | ^^^^^^^^^^^^^^^^^^^^^^^^ 320s | 320s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 320s = help: consider adding `simd_support` as a feature in `Cargo.toml` 320s = note: see for more information about checking conditional configuration 320s 320s warning: unexpected `cfg` condition value: `simd_support` 320s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/integer.rs:148:7 320s | 320s 148 | #[cfg(feature = "simd_support")] 320s | ^^^^^^^^^^^^^^^^^^^^^^^^ 320s | 320s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 320s = help: consider adding `simd_support` as a feature in `Cargo.toml` 320s = note: see for more information about checking conditional configuration 320s 320s warning: unexpected `cfg` condition value: `simd_support` 320s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/integer.rs:150:7 320s | 320s 150 | #[cfg(feature = "simd_support")] 320s | ^^^^^^^^^^^^^^^^^^^^^^^^ 320s | 320s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 320s = help: consider adding `simd_support` as a feature in `Cargo.toml` 320s = note: see for more information about checking conditional configuration 320s 320s warning: unexpected `cfg` condition value: `simd_support` 320s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/integer.rs:152:7 320s | 320s 152 | #[cfg(feature = "simd_support")] 320s | ^^^^^^^^^^^^^^^^^^^^^^^^ 320s | 320s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 320s = help: consider adding `simd_support` as a feature in `Cargo.toml` 320s = note: see for more information about checking conditional configuration 320s 320s warning: unexpected `cfg` condition value: `simd_support` 320s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/integer.rs:155:5 320s | 320s 155 | feature = "simd_support", 320s | ^^^^^^^^^^^^^^^^^^^^^^^^ 320s | 320s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 320s = help: consider adding `simd_support` as a feature in `Cargo.toml` 320s = note: see for more information about checking conditional configuration 320s 320s warning: unexpected `cfg` condition value: `simd_support` 320s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:11:7 320s | 320s 11 | #[cfg(feature = "simd_support")] use packed_simd::*; 320s | ^^^^^^^^^^^^^^^^^^^^^^^^ 320s | 320s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 320s = help: consider adding `simd_support` as a feature in `Cargo.toml` 320s = note: see for more information about checking conditional configuration 320s 320s warning: unexpected `cfg` condition value: `simd_support` 320s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:144:7 320s | 320s 144 | #[cfg(feature = "simd_support")] 320s | ^^^^^^^^^^^^^^^^^^^^^^^^ 320s | 320s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 320s = help: consider adding `simd_support` as a feature in `Cargo.toml` 320s = note: see for more information about checking conditional configuration 320s 320s warning: unexpected `cfg` condition name: `std` 320s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:235:11 320s | 320s 235 | #[cfg(not(std))] 320s | ^^^ help: found config with similar value: `feature = "std"` 320s | 320s = help: consider using a Cargo feature instead 320s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 320s [lints.rust] 320s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(std)'] } 320s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(std)");` to the top of the `build.rs` 320s = note: see for more information about checking conditional configuration 320s 320s warning: unexpected `cfg` condition value: `simd_support` 320s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:363:7 320s | 320s 363 | #[cfg(feature = "simd_support")] 320s | ^^^^^^^^^^^^^^^^^^^^^^^^ 320s | 320s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 320s = help: consider adding `simd_support` as a feature in `Cargo.toml` 320s = note: see for more information about checking conditional configuration 320s 320s warning: unexpected `cfg` condition value: `simd_support` 320s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:423:7 320s | 320s 423 | #[cfg(feature="simd_support")] simd_impl! { f32x2, f32, m32x2, u32x2 } 320s | ^^^^^^^^^^^^^^^^^^^^^^ 320s | 320s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 320s = help: consider adding `simd_support` as a feature in `Cargo.toml` 320s = note: see for more information about checking conditional configuration 320s 320s warning: unexpected `cfg` condition value: `simd_support` 320s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:424:7 320s | 320s 424 | #[cfg(feature="simd_support")] simd_impl! { f32x4, f32, m32x4, u32x4 } 320s | ^^^^^^^^^^^^^^^^^^^^^^ 320s | 320s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 320s = help: consider adding `simd_support` as a feature in `Cargo.toml` 320s = note: see for more information about checking conditional configuration 320s 320s warning: unexpected `cfg` condition value: `simd_support` 320s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:425:7 320s | 320s 425 | #[cfg(feature="simd_support")] simd_impl! { f32x8, f32, m32x8, u32x8 } 320s | ^^^^^^^^^^^^^^^^^^^^^^ 320s | 320s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 320s = help: consider adding `simd_support` as a feature in `Cargo.toml` 320s = note: see for more information about checking conditional configuration 320s 320s warning: unexpected `cfg` condition value: `simd_support` 320s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:426:7 320s | 320s 426 | #[cfg(feature="simd_support")] simd_impl! { f32x16, f32, m32x16, u32x16 } 320s | ^^^^^^^^^^^^^^^^^^^^^^ 320s | 320s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 320s = help: consider adding `simd_support` as a feature in `Cargo.toml` 320s = note: see for more information about checking conditional configuration 320s 320s warning: unexpected `cfg` condition value: `simd_support` 320s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:427:7 320s | 320s 427 | #[cfg(feature="simd_support")] simd_impl! { f64x2, f64, m64x2, u64x2 } 320s | ^^^^^^^^^^^^^^^^^^^^^^ 320s | 320s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 320s = help: consider adding `simd_support` as a feature in `Cargo.toml` 320s = note: see for more information about checking conditional configuration 320s 320s warning: unexpected `cfg` condition value: `simd_support` 320s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:428:7 320s | 320s 428 | #[cfg(feature="simd_support")] simd_impl! { f64x4, f64, m64x4, u64x4 } 320s | ^^^^^^^^^^^^^^^^^^^^^^ 320s | 320s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 320s = help: consider adding `simd_support` as a feature in `Cargo.toml` 320s = note: see for more information about checking conditional configuration 320s 320s warning: unexpected `cfg` condition value: `simd_support` 320s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:429:7 320s | 320s 429 | #[cfg(feature="simd_support")] simd_impl! { f64x8, f64, m64x8, u64x8 } 320s | ^^^^^^^^^^^^^^^^^^^^^^ 320s | 320s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 320s = help: consider adding `simd_support` as a feature in `Cargo.toml` 320s = note: see for more information about checking conditional configuration 320s 320s warning: unexpected `cfg` condition name: `std` 320s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:291:19 320s | 320s 291 | #[cfg(not(std))] 320s | ^^^ help: found config with similar value: `feature = "std"` 320s ... 320s 359 | scalar_float_impl!(f32, u32); 320s | ---------------------------- in this macro invocation 320s | 320s = help: consider using a Cargo feature instead 320s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 320s [lints.rust] 320s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(std)'] } 320s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(std)");` to the top of the `build.rs` 320s = note: see for more information about checking conditional configuration 320s = note: this warning originates in the macro `scalar_float_impl` (in Nightly builds, run with -Z macro-backtrace for more info) 320s 320s warning: unexpected `cfg` condition name: `std` 320s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:291:19 320s | 320s 291 | #[cfg(not(std))] 320s | ^^^ help: found config with similar value: `feature = "std"` 320s ... 320s 360 | scalar_float_impl!(f64, u64); 320s | ---------------------------- in this macro invocation 320s | 320s = help: consider using a Cargo feature instead 320s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 320s [lints.rust] 320s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(std)'] } 320s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(std)");` to the top of the `build.rs` 320s = note: see for more information about checking conditional configuration 320s = note: this warning originates in the macro `scalar_float_impl` (in Nightly builds, run with -Z macro-backtrace for more info) 320s 320s warning: unexpected `cfg` condition name: `doc_cfg` 320s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/weighted_index.rs:80:12 320s | 320s 80 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 320s | ^^^^^^^ 320s | 320s = help: consider using a Cargo feature instead 320s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 320s [lints.rust] 320s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 320s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 320s = note: see for more information about checking conditional configuration 320s 320s warning: unexpected `cfg` condition name: `doc_cfg` 320s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/weighted_index.rs:429:12 320s | 320s 429 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 320s | ^^^^^^^ 320s | 320s = help: consider using a Cargo feature instead 320s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 320s [lints.rust] 320s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 320s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 320s = note: see for more information about checking conditional configuration 320s 320s warning: unexpected `cfg` condition value: `simd_support` 320s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/uniform.rs:121:7 320s | 320s 121 | #[cfg(feature = "simd_support")] use packed_simd::*; 320s | ^^^^^^^^^^^^^^^^^^^^^^^^ 320s | 320s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 320s = help: consider adding `simd_support` as a feature in `Cargo.toml` 320s = note: see for more information about checking conditional configuration 320s 320s warning: unexpected `cfg` condition value: `simd_support` 320s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/uniform.rs:572:7 320s | 320s 572 | #[cfg(feature = "simd_support")] 320s | ^^^^^^^^^^^^^^^^^^^^^^^^ 320s | 320s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 320s = help: consider adding `simd_support` as a feature in `Cargo.toml` 320s = note: see for more information about checking conditional configuration 320s 320s warning: unexpected `cfg` condition value: `simd_support` 320s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/uniform.rs:679:7 320s | 320s 679 | #[cfg(feature = "simd_support")] 320s | ^^^^^^^^^^^^^^^^^^^^^^^^ 320s | 320s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 320s = help: consider adding `simd_support` as a feature in `Cargo.toml` 320s = note: see for more information about checking conditional configuration 320s 320s warning: unexpected `cfg` condition value: `simd_support` 320s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/uniform.rs:687:7 320s | 320s 687 | #[cfg(feature = "simd_support")] 320s | ^^^^^^^^^^^^^^^^^^^^^^^^ 320s | 320s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 320s = help: consider adding `simd_support` as a feature in `Cargo.toml` 320s = note: see for more information about checking conditional configuration 320s 320s warning: unexpected `cfg` condition value: `simd_support` 320s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/uniform.rs:696:7 320s | 320s 696 | #[cfg(feature = "simd_support")] 320s | ^^^^^^^^^^^^^^^^^^^^^^^^ 320s | 320s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 320s = help: consider adding `simd_support` as a feature in `Cargo.toml` 320s = note: see for more information about checking conditional configuration 320s 320s warning: unexpected `cfg` condition value: `simd_support` 320s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/uniform.rs:706:7 320s | 320s 706 | #[cfg(feature = "simd_support")] 320s | ^^^^^^^^^^^^^^^^^^^^^^^^ 320s | 320s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 320s = help: consider adding `simd_support` as a feature in `Cargo.toml` 320s = note: see for more information about checking conditional configuration 320s 320s warning: unexpected `cfg` condition value: `simd_support` 320s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/uniform.rs:1001:7 320s | 320s 1001 | #[cfg(feature = "simd_support")] 320s | ^^^^^^^^^^^^^^^^^^^^^^^^ 320s | 320s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 320s = help: consider adding `simd_support` as a feature in `Cargo.toml` 320s = note: see for more information about checking conditional configuration 320s 320s warning: unexpected `cfg` condition value: `simd_support` 320s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/uniform.rs:1003:7 320s | 320s 1003 | #[cfg(feature = "simd_support")] 320s | ^^^^^^^^^^^^^^^^^^^^^^^^ 320s | 320s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 320s = help: consider adding `simd_support` as a feature in `Cargo.toml` 320s = note: see for more information about checking conditional configuration 320s 320s warning: unexpected `cfg` condition value: `simd_support` 320s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/uniform.rs:1005:7 320s | 320s 1005 | #[cfg(feature = "simd_support")] 320s | ^^^^^^^^^^^^^^^^^^^^^^^^ 320s | 320s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 320s = help: consider adding `simd_support` as a feature in `Cargo.toml` 320s = note: see for more information about checking conditional configuration 320s 320s warning: unexpected `cfg` condition value: `simd_support` 320s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/uniform.rs:1007:7 320s | 320s 1007 | #[cfg(feature = "simd_support")] 320s | ^^^^^^^^^^^^^^^^^^^^^^^^ 320s | 320s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 320s = help: consider adding `simd_support` as a feature in `Cargo.toml` 320s = note: see for more information about checking conditional configuration 320s 320s warning: unexpected `cfg` condition value: `simd_support` 320s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/uniform.rs:1010:7 320s | 320s 1010 | #[cfg(feature = "simd_support")] 320s | ^^^^^^^^^^^^^^^^^^^^^^^^ 320s | 320s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 320s = help: consider adding `simd_support` as a feature in `Cargo.toml` 320s = note: see for more information about checking conditional configuration 320s 320s warning: unexpected `cfg` condition value: `simd_support` 320s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/uniform.rs:1012:7 320s | 320s 1012 | #[cfg(feature = "simd_support")] 320s | ^^^^^^^^^^^^^^^^^^^^^^^^ 320s | 320s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 320s = help: consider adding `simd_support` as a feature in `Cargo.toml` 320s = note: see for more information about checking conditional configuration 320s 320s warning: unexpected `cfg` condition value: `simd_support` 320s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/uniform.rs:1014:7 320s | 320s 1014 | #[cfg(feature = "simd_support")] 320s | ^^^^^^^^^^^^^^^^^^^^^^^^ 320s | 320s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 320s = help: consider adding `simd_support` as a feature in `Cargo.toml` 320s = note: see for more information about checking conditional configuration 320s 320s warning: unexpected `cfg` condition name: `doc_cfg` 320s --> /usr/share/cargo/registry/rand-0.8.5/src/rng.rs:395:12 320s | 320s 395 | #[cfg_attr(doc_cfg, doc(cfg(feature = "min_const_gen")))] 320s | ^^^^^^^ 320s | 320s = help: consider using a Cargo feature instead 320s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 320s [lints.rust] 320s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 320s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 320s = note: see for more information about checking conditional configuration 320s 320s warning: unexpected `cfg` condition name: `doc_cfg` 320s --> /usr/share/cargo/registry/rand-0.8.5/src/rngs/mod.rs:99:12 320s | 320s 99 | #[cfg_attr(doc_cfg, doc(cfg(feature = "std")))] 320s | ^^^^^^^ 320s | 320s = help: consider using a Cargo feature instead 320s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 320s [lints.rust] 320s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 320s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 320s = note: see for more information about checking conditional configuration 320s 320s warning: unexpected `cfg` condition name: `doc_cfg` 320s --> /usr/share/cargo/registry/rand-0.8.5/src/rngs/mod.rs:118:12 320s | 320s 118 | #[cfg_attr(doc_cfg, doc(cfg(feature = "getrandom")))] 320s | ^^^^^^^ 320s | 320s = help: consider using a Cargo feature instead 320s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 320s [lints.rust] 320s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 320s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 320s = note: see for more information about checking conditional configuration 320s 320s warning: unexpected `cfg` condition name: `doc_cfg` 320s --> /usr/share/cargo/registry/rand-0.8.5/src/rngs/std.rs:32:12 320s | 320s 32 | #[cfg_attr(doc_cfg, doc(cfg(feature = "std_rng")))] 320s | ^^^^^^^ 320s | 320s = help: consider using a Cargo feature instead 320s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 320s [lints.rust] 320s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 320s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 320s = note: see for more information about checking conditional configuration 320s 320s warning: unexpected `cfg` condition name: `doc_cfg` 320s --> /usr/share/cargo/registry/rand-0.8.5/src/rngs/thread.rs:60:12 320s | 320s 60 | #[cfg_attr(doc_cfg, doc(cfg(all(feature = "std", feature = "std_rng"))))] 320s | ^^^^^^^ 320s | 320s = help: consider using a Cargo feature instead 320s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 320s [lints.rust] 320s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 320s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 320s = note: see for more information about checking conditional configuration 320s 320s warning: unexpected `cfg` condition name: `doc_cfg` 320s --> /usr/share/cargo/registry/rand-0.8.5/src/rngs/thread.rs:87:12 320s | 320s 87 | #[cfg_attr(doc_cfg, doc(cfg(all(feature = "std", feature = "std_rng"))))] 320s | ^^^^^^^ 320s | 320s = help: consider using a Cargo feature instead 320s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 320s [lints.rust] 320s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 320s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 320s = note: see for more information about checking conditional configuration 320s 320s warning: unexpected `cfg` condition name: `doc_cfg` 320s --> /usr/share/cargo/registry/rand-0.8.5/src/seq/mod.rs:29:12 320s | 320s 29 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 320s | ^^^^^^^ 320s | 320s = help: consider using a Cargo feature instead 320s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 320s [lints.rust] 320s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 320s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 320s = note: see for more information about checking conditional configuration 320s 320s warning: unexpected `cfg` condition name: `doc_cfg` 320s --> /usr/share/cargo/registry/rand-0.8.5/src/seq/mod.rs:623:12 320s | 320s 623 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 320s | ^^^^^^^ 320s | 320s = help: consider using a Cargo feature instead 320s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 320s [lints.rust] 320s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 320s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 320s = note: see for more information about checking conditional configuration 320s 320s warning: unexpected `cfg` condition name: `doc_cfg` 320s --> /usr/share/cargo/registry/rand-0.8.5/src/seq/index.rs:276:12 320s | 320s 276 | #[cfg_attr(doc_cfg, doc(cfg(feature = "std")))] 320s | ^^^^^^^ 320s | 320s = help: consider using a Cargo feature instead 320s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 320s [lints.rust] 320s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 320s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 320s = note: see for more information about checking conditional configuration 320s 320s warning: unexpected `cfg` condition name: `doc_cfg` 320s --> /usr/share/cargo/registry/rand-0.8.5/src/seq/mod.rs:114:16 320s | 320s 114 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 320s | ^^^^^^^ 320s | 320s = help: consider using a Cargo feature instead 320s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 320s [lints.rust] 320s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 320s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 320s = note: see for more information about checking conditional configuration 320s 320s warning: unexpected `cfg` condition name: `doc_cfg` 320s --> /usr/share/cargo/registry/rand-0.8.5/src/seq/mod.rs:142:16 320s | 320s 142 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 320s | ^^^^^^^ 320s | 320s = help: consider using a Cargo feature instead 320s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 320s [lints.rust] 320s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 320s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 320s = note: see for more information about checking conditional configuration 320s 320s warning: unexpected `cfg` condition name: `doc_cfg` 320s --> /usr/share/cargo/registry/rand-0.8.5/src/seq/mod.rs:170:16 320s | 320s 170 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 320s | ^^^^^^^ 320s | 320s = help: consider using a Cargo feature instead 320s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 320s [lints.rust] 320s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 320s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 320s = note: see for more information about checking conditional configuration 320s 320s warning: unexpected `cfg` condition name: `doc_cfg` 320s --> /usr/share/cargo/registry/rand-0.8.5/src/seq/mod.rs:219:16 320s | 320s 219 | #[cfg_attr(doc_cfg, doc(cfg(feature = "std")))] 320s | ^^^^^^^ 320s | 320s = help: consider using a Cargo feature instead 320s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 320s [lints.rust] 320s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 320s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 320s = note: see for more information about checking conditional configuration 320s 320s warning: unexpected `cfg` condition name: `doc_cfg` 320s --> /usr/share/cargo/registry/rand-0.8.5/src/seq/mod.rs:465:16 320s | 320s 465 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 320s | ^^^^^^^ 320s | 320s = help: consider using a Cargo feature instead 320s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 320s [lints.rust] 320s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 320s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 320s = note: see for more information about checking conditional configuration 320s 320s warning: trait `Float` is never used 320s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:238:18 320s | 320s 238 | pub(crate) trait Float: Sized { 320s | ^^^^^ 320s | 320s = note: `#[warn(dead_code)]` on by default 320s 320s warning: associated items `lanes`, `extract`, and `replace` are never used 320s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:247:8 320s | 320s 245 | pub(crate) trait FloatAsSIMD: Sized { 320s | ----------- associated items in this trait 320s 246 | #[inline(always)] 320s 247 | fn lanes() -> usize { 320s | ^^^^^ 320s ... 320s 255 | fn extract(self, index: usize) -> Self { 320s | ^^^^^^^ 320s ... 320s 260 | fn replace(self, index: usize, new_value: Self) -> Self { 320s | ^^^^^^^ 320s 320s warning: method `all` is never used 320s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:268:8 320s | 320s 266 | pub(crate) trait BoolAsSIMD: Sized { 320s | ---------- method in this trait 320s 267 | fn any(self) -> bool; 320s 268 | fn all(self) -> bool; 320s | ^^^ 320s 320s warning: `rand` (lib) generated 70 warnings (1 duplicate) 320s Compiling sha1 v0.10.6 320s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=sha1 CARGO_MANIFEST_DIR=/tmp/tmp.cy4zYrLhIY/registry/sha1-0.10.6 CARGO_MANIFEST_PATH=/tmp/tmp.cy4zYrLhIY/registry/sha1-0.10.6/Cargo.toml CARGO_PKG_AUTHORS='RustCrypto Developers' CARGO_PKG_DESCRIPTION='SHA-1 hash function' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=sha1 CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/RustCrypto/hashes' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.10.6 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=10 CARGO_PKG_VERSION_PATCH=6 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.cy4zYrLhIY/target/debug/deps rustc --crate-name sha1 --edition=2018 /tmp/tmp.cy4zYrLhIY/registry/sha1-0.10.6/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("asm", "compress", "default", "force-soft", "loongarch64_asm", "oid", "sha1-asm", "std"))' -C metadata=7a229c14a1ac9b31 -C extra-filename=-7a229c14a1ac9b31 --out-dir /tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.cy4zYrLhIY/target/debug/deps --extern cfg_if=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps/libcfg_if-ff3ff84a061de73f.rmeta --extern digest=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps/libdigest-027272cf65436a63.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.cy4zYrLhIY/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 321s warning: `sha1` (lib) generated 1 warning (1 duplicate) 321s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=gdk4_sys CARGO_MANIFEST_DIR=/tmp/tmp.cy4zYrLhIY/registry/gdk4-sys-0.9.5 CARGO_MANIFEST_PATH=/tmp/tmp.cy4zYrLhIY/registry/gdk4-sys-0.9.5/Cargo.toml CARGO_PKG_AUTHORS='The gtk-rs Project Developers' CARGO_PKG_DESCRIPTION='FFI bindings of GDK 4' CARGO_PKG_HOMEPAGE='https://gtk-rs.org/gtk4-rs' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=gdk4-sys CARGO_PKG_README='' CARGO_PKG_REPOSITORY='https://github.com/gtk-rs/gtk4-rs' CARGO_PKG_RUST_VERSION=1.70 CARGO_PKG_VERSION=0.9.5 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=9 CARGO_PKG_VERSION_PATCH=5 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.cy4zYrLhIY/target/debug/deps OUT_DIR=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/build/gdk4-sys-65ec9daac5947938/out rustc --crate-name gdk4_sys --edition=2021 /tmp/tmp.cy4zYrLhIY/registry/gdk4-sys-0.9.5/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="v4_10"' --cfg 'feature="v4_2"' --cfg 'feature="v4_4"' --cfg 'feature="v4_6"' --cfg 'feature="v4_8"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("v4_10", "v4_12", "v4_14", "v4_16", "v4_18", "v4_2", "v4_4", "v4_6", "v4_8"))' -C metadata=e0663cad72b17ddd -C extra-filename=-e0663cad72b17ddd --out-dir /tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.cy4zYrLhIY/target/debug/deps --extern cairo_sys=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps/libcairo_sys-4612600e92f34c6c.rmeta --extern gdk_pixbuf_sys=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps/libgdk_pixbuf_sys-2987b4ccc6a33d16.rmeta --extern gio_sys=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps/libgio_sys-09c58e200e125269.rmeta --extern glib_sys=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps/libglib_sys-8d7612a6c3ae820a.rmeta --extern gobject_sys=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps/libgobject_sys-c41d1b14aec65cc2.rmeta --extern libc=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps/liblibc-cf2521928ac070dc.rmeta --extern pango_sys=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps/libpango_sys-f907ef533c31ecd7.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.cy4zYrLhIY/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain -l gtk-4 -l pangocairo-1.0 -l pango-1.0 -l harfbuzz -l gdk_pixbuf-2.0 -l cairo-gobject -l cairo -l vulkan -l graphene-1.0 -l gio-2.0 -l gobject-2.0 -l glib-2.0 --cfg system_deps_have_gtk4 --cfg 'gdk_backend="broadway"' --cfg 'gdk_backend="wayland"' --cfg 'gdk_backend="x11"'` 321s warning: `gdk4-sys` (lib) generated 1 warning (1 duplicate) 321s Compiling zbus_names v3.0.0 321s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=zbus_names CARGO_MANIFEST_DIR=/tmp/tmp.cy4zYrLhIY/registry/zbus_names-3.0.0 CARGO_MANIFEST_PATH=/tmp/tmp.cy4zYrLhIY/registry/zbus_names-3.0.0/Cargo.toml CARGO_PKG_AUTHORS='Zeeshan Ali Khan ' CARGO_PKG_DESCRIPTION='A collection of D-Bus bus names types' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=zbus_names CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dbus2/zbus/' CARGO_PKG_RUST_VERSION=1.75 CARGO_PKG_VERSION=3.0.0 CARGO_PKG_VERSION_MAJOR=3 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.cy4zYrLhIY/target/debug/deps rustc --crate-name zbus_names --edition=2021 /tmp/tmp.cy4zYrLhIY/registry/zbus_names-3.0.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=e138813c02d4cbaa -C extra-filename=-e138813c02d4cbaa --out-dir /tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.cy4zYrLhIY/target/debug/deps --extern serde=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps/libserde-0e7dff716e38da0d.rmeta --extern static_assertions=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps/libstatic_assertions-18df01cc327facaa.rmeta --extern zvariant=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps/libzvariant-7b45eb8446d33c11.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.cy4zYrLhIY/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 321s warning: `zbus_names` (lib) generated 1 warning (1 duplicate) 321s Compiling cairo-rs v0.20.7 321s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=cairo CARGO_MANIFEST_DIR=/tmp/tmp.cy4zYrLhIY/registry/cairo-rs-0.20.7 CARGO_MANIFEST_PATH=/tmp/tmp.cy4zYrLhIY/registry/cairo-rs-0.20.7/Cargo.toml CARGO_PKG_AUTHORS='The gtk-rs Project Developers' CARGO_PKG_DESCRIPTION='Rust bindings for the Cairo library' CARGO_PKG_HOMEPAGE='https://gtk-rs.org/' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=cairo-rs CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/gtk-rs/gtk-rs-core' CARGO_PKG_RUST_VERSION=1.70 CARGO_PKG_VERSION=0.20.7 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=20 CARGO_PKG_VERSION_PATCH=7 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.cy4zYrLhIY/target/debug/deps rustc --crate-name cairo --edition=2021 /tmp/tmp.cy4zYrLhIY/registry/cairo-rs-0.20.7/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="glib"' --cfg 'feature="use_glib"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "freetype", "freetype-rs", "glib", "pdf", "png", "ps", "script", "svg", "use_glib", "v1_16", "v1_18", "xcb", "xlib"))' -C metadata=f792925cad2eec8c -C extra-filename=-f792925cad2eec8c --out-dir /tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.cy4zYrLhIY/target/debug/deps --extern bitflags=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps/libbitflags-4b295667124b9dc6.rmeta --extern cairo_sys=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps/libcairo_sys-4612600e92f34c6c.rmeta --extern glib=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps/libglib-86961142feeefe07.rmeta --extern libc=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps/liblibc-cf2521928ac070dc.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.cy4zYrLhIY/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 321s warning: `gio` (lib) generated 1 warning (1 duplicate) 321s Compiling zbus_macros v4.4.0 321s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=zbus_macros CARGO_MANIFEST_DIR=/tmp/tmp.cy4zYrLhIY/registry/zbus_macros-4.4.0 CARGO_MANIFEST_PATH=/tmp/tmp.cy4zYrLhIY/registry/zbus_macros-4.4.0/Cargo.toml CARGO_PKG_AUTHORS='Marc-André Lureau :Zeeshan Ali Khan ' CARGO_PKG_DESCRIPTION='proc-macros for zbus' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=zbus_macros CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dbus2/zbus/' CARGO_PKG_RUST_VERSION=1.75 CARGO_PKG_VERSION=4.4.0 CARGO_PKG_VERSION_MAJOR=4 CARGO_PKG_VERSION_MINOR=4 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.cy4zYrLhIY/target/debug/deps rustc --crate-name zbus_macros --edition=2021 /tmp/tmp.cy4zYrLhIY/registry/zbus_macros-4.4.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type proc-macro --emit=dep-info,link -C prefer-dynamic -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=858601daf3a85039 -C extra-filename=-858601daf3a85039 --out-dir /tmp/tmp.cy4zYrLhIY/target/debug/deps -L dependency=/tmp/tmp.cy4zYrLhIY/target/debug/deps --extern proc_macro_crate=/tmp/tmp.cy4zYrLhIY/target/debug/deps/libproc_macro_crate-76b8c9685ffc2762.rlib --extern proc_macro2=/tmp/tmp.cy4zYrLhIY/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rlib --extern quote=/tmp/tmp.cy4zYrLhIY/target/debug/deps/libquote-dc92c6f25ee0f0c6.rlib --extern syn=/tmp/tmp.cy4zYrLhIY/target/debug/deps/libsyn-0167beed9e699402.rlib --extern zvariant_utils=/tmp/tmp.cy4zYrLhIY/target/debug/deps/libzvariant_utils-555d90bad4acf190.rlib --extern proc_macro --cap-lints warn` 322s warning: unexpected `cfg` condition value: `win32-surface` 322s --> /usr/share/cargo/registry/cairo-rs-0.20.7/src/lib.rs:290:20 322s | 322s 290 | #[cfg(all(windows, feature = "win32-surface"))] 322s | ^^^^^^^^^^^^^^^^^^^^^^^^^ 322s | 322s = note: expected values for `feature` are: `default`, `freetype`, `freetype-rs`, `glib`, `pdf`, `png`, `ps`, `script`, `svg`, `use_glib`, `v1_16`, `v1_18`, `xcb`, and `xlib` 322s = help: consider adding `win32-surface` as a feature in `Cargo.toml` 322s = note: see for more information about checking conditional configuration 322s = note: `#[warn(unexpected_cfgs)]` on by default 322s 322s warning: unexpected `cfg` condition value: `win32-surface` 322s --> /usr/share/cargo/registry/cairo-rs-0.20.7/src/lib.rs:293:20 322s | 322s 293 | #[cfg(all(windows, feature = "win32-surface"))] 322s | ^^^^^^^^^^^^^^^^^^^^^^^^^ 322s | 322s = note: expected values for `feature` are: `default`, `freetype`, `freetype-rs`, `glib`, `pdf`, `png`, `ps`, `script`, `svg`, `use_glib`, `v1_16`, `v1_18`, `xcb`, and `xlib` 322s = help: consider adding `win32-surface` as a feature in `Cargo.toml` 322s = note: see for more information about checking conditional configuration 322s 322s warning: `cairo-rs` (lib) generated 3 warnings (1 duplicate) 322s Compiling ordered-stream v0.2.0 322s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=ordered_stream CARGO_MANIFEST_DIR=/tmp/tmp.cy4zYrLhIY/registry/ordered-stream-0.2.0 CARGO_MANIFEST_PATH=/tmp/tmp.cy4zYrLhIY/registry/ordered-stream-0.2.0/Cargo.toml CARGO_PKG_AUTHORS='Daniel De Graaf :Zeeshan Ali Khan ' CARGO_PKG_DESCRIPTION='Streams that are ordered relative to external events' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=ordered-stream CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/danieldg/ordered-stream' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.2.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.cy4zYrLhIY/target/debug/deps rustc --crate-name ordered_stream --edition=2018 /tmp/tmp.cy4zYrLhIY/registry/ordered-stream-0.2.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=5d03c0a21a4bd5e4 -C extra-filename=-5d03c0a21a4bd5e4 --out-dir /tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.cy4zYrLhIY/target/debug/deps --extern futures_core=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps/libfutures_core-8d305950da6bf5c8.rmeta --extern pin_project_lite=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps/libpin_project_lite-5dc815523e98d889.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.cy4zYrLhIY/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 323s warning: `ordered-stream` (lib) generated 1 warning (1 duplicate) 323s Compiling xdg-home v1.3.0 323s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=xdg_home CARGO_MANIFEST_DIR=/tmp/tmp.cy4zYrLhIY/registry/xdg-home-1.3.0 CARGO_MANIFEST_PATH=/tmp/tmp.cy4zYrLhIY/registry/xdg-home-1.3.0/Cargo.toml CARGO_PKG_AUTHORS='Zeeshan Ali Khan ' CARGO_PKG_DESCRIPTION='The user'\''s home directory as per XDG Specification' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=xdg-home CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/zeenix/xdg-home' CARGO_PKG_RUST_VERSION=1.60 CARGO_PKG_VERSION=1.3.0 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.cy4zYrLhIY/target/debug/deps rustc --crate-name xdg_home --edition=2021 /tmp/tmp.cy4zYrLhIY/registry/xdg-home-1.3.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=4230920bfa085c8c -C extra-filename=-4230920bfa085c8c --out-dir /tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.cy4zYrLhIY/target/debug/deps --extern libc=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps/liblibc-cf2521928ac070dc.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.cy4zYrLhIY/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 323s warning: `xdg-home` (lib) generated 1 warning (1 duplicate) 323s Compiling async-trait v0.1.83 323s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=async_trait CARGO_MANIFEST_DIR=/tmp/tmp.cy4zYrLhIY/registry/async-trait-0.1.83 CARGO_MANIFEST_PATH=/tmp/tmp.cy4zYrLhIY/registry/async-trait-0.1.83/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='Type erasure for async trait methods' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=async-trait CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/async-trait' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=0.1.83 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=83 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.cy4zYrLhIY/target/debug/deps rustc --crate-name async_trait --edition=2021 /tmp/tmp.cy4zYrLhIY/registry/async-trait-0.1.83/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=e4c90cfd514ad223 -C extra-filename=-e4c90cfd514ad223 --out-dir /tmp/tmp.cy4zYrLhIY/target/debug/deps -L dependency=/tmp/tmp.cy4zYrLhIY/target/debug/deps --extern proc_macro2=/tmp/tmp.cy4zYrLhIY/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rlib --extern quote=/tmp/tmp.cy4zYrLhIY/target/debug/deps/libquote-dc92c6f25ee0f0c6.rlib --extern syn=/tmp/tmp.cy4zYrLhIY/target/debug/deps/libsyn-0167beed9e699402.rlib --extern proc_macro --cap-lints warn` 324s Compiling serde_repr v0.1.12 324s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=serde_repr CARGO_MANIFEST_DIR=/tmp/tmp.cy4zYrLhIY/registry/serde_repr-0.1.12 CARGO_MANIFEST_PATH=/tmp/tmp.cy4zYrLhIY/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.cy4zYrLhIY/target/debug/deps rustc --crate-name serde_repr --edition=2018 /tmp/tmp.cy4zYrLhIY/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=79727398b79ecac5 -C extra-filename=-79727398b79ecac5 --out-dir /tmp/tmp.cy4zYrLhIY/target/debug/deps -L dependency=/tmp/tmp.cy4zYrLhIY/target/debug/deps --extern proc_macro2=/tmp/tmp.cy4zYrLhIY/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rlib --extern quote=/tmp/tmp.cy4zYrLhIY/target/debug/deps/libquote-dc92c6f25ee0f0c6.rlib --extern syn=/tmp/tmp.cy4zYrLhIY/target/debug/deps/libsyn-0167beed9e699402.rlib --extern proc_macro --cap-lints warn` 325s Compiling hex v0.4.3 325s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=hex CARGO_MANIFEST_DIR=/tmp/tmp.cy4zYrLhIY/registry/hex-0.4.3 CARGO_MANIFEST_PATH=/tmp/tmp.cy4zYrLhIY/registry/hex-0.4.3/Cargo.toml CARGO_PKG_AUTHORS='KokaKiwi ' CARGO_PKG_DESCRIPTION='Encoding and decoding data into/from hexadecimal representation.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=hex CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/KokaKiwi/rust-hex' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.4.3 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=4 CARGO_PKG_VERSION_PATCH=3 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.cy4zYrLhIY/target/debug/deps rustc --crate-name hex --edition=2018 /tmp/tmp.cy4zYrLhIY/registry/hex-0.4.3/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="alloc"' --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "default", "serde", "std"))' -C metadata=d04eec135ea2b5a3 -C extra-filename=-d04eec135ea2b5a3 --out-dir /tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.cy4zYrLhIY/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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.cy4zYrLhIY/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 325s warning: `hex` (lib) generated 1 warning (1 duplicate) 325s Compiling gdk4 v0.9.5 325s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=gdk4 CARGO_MANIFEST_DIR=/tmp/tmp.cy4zYrLhIY/registry/gdk4-0.9.5 CARGO_MANIFEST_PATH=/tmp/tmp.cy4zYrLhIY/registry/gdk4-0.9.5/Cargo.toml CARGO_PKG_AUTHORS='The gtk-rs Project Developers' CARGO_PKG_DESCRIPTION='Rust bindings of the GDK 4 library' CARGO_PKG_HOMEPAGE='https://gtk-rs.org/gtk4-rs' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=gdk4 CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/gtk-rs/gtk4-rs' CARGO_PKG_RUST_VERSION=1.70 CARGO_PKG_VERSION=0.9.5 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=9 CARGO_PKG_VERSION_PATCH=5 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.cy4zYrLhIY/target/debug/deps rustc --crate-name gdk4 --edition=2021 /tmp/tmp.cy4zYrLhIY/registry/gdk4-0.9.5/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="v4_10"' --cfg 'feature="v4_2"' --cfg 'feature="v4_4"' --cfg 'feature="v4_6"' --cfg 'feature="v4_8"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("gl", "v4_10", "v4_12", "v4_14", "v4_16", "v4_18", "v4_2", "v4_4", "v4_6", "v4_8"))' -C metadata=ece7ecba717e5b37 -C extra-filename=-ece7ecba717e5b37 --out-dir /tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.cy4zYrLhIY/target/debug/deps --extern cairo=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps/libcairo-f792925cad2eec8c.rmeta --extern gdk_pixbuf=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps/libgdk_pixbuf-49c4431c8d965d05.rmeta --extern gdk4_sys=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps/libgdk4_sys-e0663cad72b17ddd.rmeta --extern gio=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps/libgio-9c864d2fb50eb745.rmeta --extern glib=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps/libglib-86961142feeefe07.rmeta --extern libc=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps/liblibc-cf2521928ac070dc.rmeta --extern pango=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps/libpango-16cb4cd661e430dc.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.cy4zYrLhIY/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 325s Compiling zbus v4.4.0 325s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=zbus CARGO_MANIFEST_DIR=/tmp/tmp.cy4zYrLhIY/registry/zbus-4.4.0 CARGO_MANIFEST_PATH=/tmp/tmp.cy4zYrLhIY/registry/zbus-4.4.0/Cargo.toml CARGO_PKG_AUTHORS='Zeeshan Ali Khan ' CARGO_PKG_DESCRIPTION='API for D-Bus communication' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=zbus CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dbus2/zbus/' CARGO_PKG_RUST_VERSION=1.75 CARGO_PKG_VERSION=4.4.0 CARGO_PKG_VERSION_MAJOR=4 CARGO_PKG_VERSION_MINOR=4 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.cy4zYrLhIY/target/debug/deps rustc --crate-name zbus --edition=2021 /tmp/tmp.cy4zYrLhIY/registry/zbus-4.4.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("async-executor", "async-fs", "async-io", "async-lock", "async-task", "blocking", "bus-impl", "chrono", "default", "heapless", "option-as-array", "p2p", "time", "tokio", "tokio-vsock", "url", "uuid", "vsock"))' -C metadata=27d32f1eb779b401 -C extra-filename=-27d32f1eb779b401 --out-dir /tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.cy4zYrLhIY/target/debug/deps --extern async_broadcast=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps/libasync_broadcast-852b859fbdd9a4f4.rmeta --extern async_trait=/tmp/tmp.cy4zYrLhIY/target/debug/deps/libasync_trait-e4c90cfd514ad223.so --extern enumflags2=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps/libenumflags2-2867d32c4b4f39e8.rmeta --extern event_listener=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps/libevent_listener-93bdad7496d4853a.rmeta --extern futures_core=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps/libfutures_core-8d305950da6bf5c8.rmeta --extern futures_sink=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps/libfutures_sink-2335bc9d806f8753.rmeta --extern futures_util=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps/libfutures_util-23beed03671fe7d3.rmeta --extern hex=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps/libhex-d04eec135ea2b5a3.rmeta --extern nix=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps/libnix-1c06771599af3024.rmeta --extern ordered_stream=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps/libordered_stream-5d03c0a21a4bd5e4.rmeta --extern rand=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps/librand-da2a195293a4eb5f.rmeta --extern serde=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps/libserde-0e7dff716e38da0d.rmeta --extern serde_repr=/tmp/tmp.cy4zYrLhIY/target/debug/deps/libserde_repr-79727398b79ecac5.so --extern sha1=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps/libsha1-7a229c14a1ac9b31.rmeta --extern static_assertions=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps/libstatic_assertions-18df01cc327facaa.rmeta --extern tracing=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps/libtracing-5f8a2432d30b4ef1.rmeta --extern xdg_home=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps/libxdg_home-4230920bfa085c8c.rmeta --extern zbus_macros=/tmp/tmp.cy4zYrLhIY/target/debug/deps/libzbus_macros-858601daf3a85039.so --extern zbus_names=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps/libzbus_names-e138813c02d4cbaa.rmeta --extern zvariant=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps/libzvariant-7b45eb8446d33c11.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.cy4zYrLhIY/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 326s error: Either "async-io" (default) or "tokio" must be enabled. 326s --> /usr/share/cargo/registry/zbus-4.4.0/src/lib.rs:37:5 326s | 326s 37 | compile_error!("Either \"async-io\" (default) or \"tokio\" must be enabled."); 326s | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 326s 326s error[E0432]: unresolved import `async_lock` 326s --> /usr/share/cargo/registry/zbus-4.4.0/src/abstractions/async_lock.rs:2:16 326s | 326s 2 | pub(crate) use async_lock::{Mutex, RwLock, RwLockReadGuard, RwLockWriteGuard}; 326s | ^^^^^^^^^^ help: a similar path exists: `crate::async_lock` 326s | 326s = note: `use` statements changed in Rust 2018; read more at 326s 326s error[E0432]: unresolved import `async_io` 326s --> /usr/share/cargo/registry/zbus-4.4.0/src/address/transport/mod.rs:9:5 326s | 326s 9 | use async_io::Async; 326s | ^^^^^^^^ use of undeclared crate or module `async_io` 326s 326s error[E0432]: unresolved import `async_io` 326s --> /usr/share/cargo/registry/zbus-4.4.0/src/address/transport/tcp.rs:4:5 326s | 326s 4 | use async_io::Async; 326s | ^^^^^^^^ use of undeclared crate or module `async_io` 326s 326s error[E0432]: unresolved import `async_io` 326s --> /usr/share/cargo/registry/zbus-4.4.0/src/connection/builder.rs:2:5 326s | 326s 2 | use async_io::Async; 326s | ^^^^^^^^ use of undeclared crate or module `async_io` 326s 326s error[E0432]: unresolved import `async_io` 326s --> /usr/share/cargo/registry/zbus-4.4.0/src/connection/socket/tcp.rs:2:5 326s | 326s 2 | use async_io::Async; 326s | ^^^^^^^^ use of undeclared crate or module `async_io` 326s 326s error[E0432]: unresolved import `async_io` 326s --> /usr/share/cargo/registry/zbus-4.4.0/src/connection/socket/unix.rs:2:5 326s | 326s 2 | use async_io::Async; 326s | ^^^^^^^^ use of undeclared crate or module `async_io` 326s 326s error[E0432]: unresolved import `async_io` 326s --> /usr/share/cargo/registry/zbus-4.4.0/src/connection/socket/mod.rs:14:5 326s | 326s 14 | use async_io::Async; 326s | ^^^^^^^^ use of undeclared crate or module `async_io` 326s 326s error[E0432]: unresolved import `async_executor` 326s --> /usr/share/cargo/registry/zbus-4.4.0/src/abstractions/executor.rs:2:5 326s | 326s 2 | use async_executor::Executor as AsyncExecutor; 326s | ^^^^^^^^^^^^^^ use of undeclared crate or module `async_executor` 326s 326s error[E0432]: unresolved import `async_task` 326s --> /usr/share/cargo/registry/zbus-4.4.0/src/abstractions/executor.rs:4:5 326s | 326s 4 | use async_task::Task as AsyncTask; 326s | ^^^^^^^^^^ use of undeclared crate or module `async_task` 326s | 326s help: there is a crate or module with a similar name 326s | 326s 4 | use async_trait::Task as AsyncTask; 326s | ~~~~~~~~~~~ 326s 326s error[E0433]: failed to resolve: could not find `AsyncReadExt` in `futures_util` 326s --> /usr/share/cargo/registry/zbus-4.4.0/src/connection/socket/tcp.rs:17:29 326s | 326s 17 | match futures_util::AsyncReadExt::read(&mut self.as_ref(), buf).await { 326s | ^^^^^^^^^^^^ could not find `AsyncReadExt` in `futures_util` 326s | 326s note: found an item that was configured out 326s --> /usr/share/cargo/registry/futures-util-0.3.31/src/lib.rs:320:47 326s | 326s 320 | AsyncBufRead, AsyncBufReadExt, AsyncRead, AsyncReadExt, AsyncSeek, AsyncSeekExt, AsyncWrite, 326s | ^^^^^^^^^^^^ 326s note: the item is gated behind the `io` feature 326s --> /usr/share/cargo/registry/futures-util-0.3.31/src/lib.rs:316:7 326s | 326s 316 | #[cfg(feature = "io")] 326s | ^^^^^^^^^^^^^^ 326s 326s error[E0433]: failed to resolve: could not find `AsyncWriteExt` in `futures_util` 326s --> /usr/share/cargo/registry/zbus-4.4.0/src/connection/socket/tcp.rs:67:23 326s | 326s 67 | futures_util::AsyncWriteExt::write(&mut self.as_ref(), buf).await 326s | ^^^^^^^^^^^^^ could not find `AsyncWriteExt` in `futures_util` 326s | 326s note: found an item that was configured out 326s --> /usr/share/cargo/registry/futures-util-0.3.31/src/lib.rs:321:5 326s | 326s 321 | AsyncWriteExt, 326s | ^^^^^^^^^^^^^ 326s note: the item is gated behind the `io` feature 326s --> /usr/share/cargo/registry/futures-util-0.3.31/src/lib.rs:316:7 326s | 326s 316 | #[cfg(feature = "io")] 326s | ^^^^^^^^^^^^^^ 326s 326s error[E0433]: failed to resolve: use of undeclared crate or module `async_lock` 326s --> /usr/share/cargo/registry/zbus-4.4.0/src/abstractions/async_lock.rs:15:25 326s | 326s 15 | let semaphore = async_lock::Semaphore::new(permits); 326s | ^^^^^^^^^^ use of undeclared crate or module `async_lock` 326s 326s error[E0433]: failed to resolve: could not find `AsyncBufReadExt` in `futures_util` 326s --> /usr/share/cargo/registry/zbus-4.4.0/src/abstractions/file.rs:30:36 326s | 326s 30 | .map(futures_util::AsyncBufReadExt::lines) 326s | ^^^^^^^^^^^^^^^ could not find `AsyncBufReadExt` in `futures_util` 326s | 326s note: found an item that was configured out 326s --> /usr/share/cargo/registry/futures-util-0.3.31/src/lib.rs:320:19 326s | 326s 320 | AsyncBufRead, AsyncBufReadExt, AsyncRead, AsyncReadExt, AsyncSeek, AsyncSeekExt, AsyncWrite, 326s | ^^^^^^^^^^^^^^^ 326s note: the item is gated behind the `io` feature 326s --> /usr/share/cargo/registry/futures-util-0.3.31/src/lib.rs:316:7 326s | 326s 316 | #[cfg(feature = "io")] 326s | ^^^^^^^^^^^^^^ 326s 326s error[E0433]: failed to resolve: could not find `io` in `futures_util` 326s --> /usr/share/cargo/registry/zbus-4.4.0/src/abstractions/file.rs:18:36 326s | 326s 18 | pub struct FileLines(futures_util::io::Lines>); 326s | ^^ could not find `io` in `futures_util` 326s | 326s note: found an item that was configured out 326s --> /usr/share/cargo/registry/futures-util-0.3.31/src/lib.rs:315:9 326s | 326s 315 | pub mod io; 326s | ^^ 326s note: the item is gated behind the `io` feature 326s --> /usr/share/cargo/registry/futures-util-0.3.31/src/lib.rs:312:7 326s | 326s 312 | #[cfg(feature = "io")] 326s | ^^^^^^^^^^^^^^ 326s help: consider importing this module 326s | 326s 5 + use std::io; 326s | 326s help: if you import `io`, refer to it directly 326s | 326s 18 - pub struct FileLines(futures_util::io::Lines>); 326s 18 + pub struct FileLines(io::Lines>); 326s | 326s 326s error[E0433]: failed to resolve: could not find `io` in `futures_util` 326s --> /usr/share/cargo/registry/zbus-4.4.0/src/abstractions/file.rs:18:60 326s | 326s 18 | pub struct FileLines(futures_util::io::Lines>); 326s | ^^ could not find `io` in `futures_util` 326s | 326s note: found an item that was configured out 326s --> /usr/share/cargo/registry/futures-util-0.3.31/src/lib.rs:315:9 326s | 326s 315 | pub mod io; 326s | ^^ 326s note: the item is gated behind the `io` feature 326s --> /usr/share/cargo/registry/futures-util-0.3.31/src/lib.rs:312:7 326s | 326s 312 | #[cfg(feature = "io")] 326s | ^^^^^^^^^^^^^^ 326s help: consider importing this module 326s | 326s 5 + use std::io; 326s | 326s help: if you import `io`, refer to it directly 326s | 326s 18 - pub struct FileLines(futures_util::io::Lines>); 326s 18 + pub struct FileLines(futures_util::io::Lines>); 326s | 326s 326s error[E0433]: failed to resolve: use of undeclared crate or module `async_fs` 326s --> /usr/share/cargo/registry/zbus-4.4.0/src/abstractions/file.rs:27:13 326s | 326s 27 | async_fs::File::open(path) 326s | ^^^^^^^^ use of undeclared crate or module `async_fs` 326s | 326s help: consider importing this struct 326s | 326s 5 + use std::fs::File; 326s | 326s help: if you import `File`, refer to it directly 326s | 326s 27 - async_fs::File::open(path) 326s 27 + File::open(path) 326s | 326s 326s error[E0433]: failed to resolve: could not find `io` in `futures_util` 326s --> /usr/share/cargo/registry/zbus-4.4.0/src/abstractions/file.rs:29:36 326s | 326s 29 | .map(futures_util::io::BufReader::new) 326s | ^^ could not find `io` in `futures_util` 326s | 326s note: found an item that was configured out 326s --> /usr/share/cargo/registry/futures-util-0.3.31/src/lib.rs:315:9 326s | 326s 315 | pub mod io; 326s | ^^ 326s note: the item is gated behind the `io` feature 326s --> /usr/share/cargo/registry/futures-util-0.3.31/src/lib.rs:312:7 326s | 326s 312 | #[cfg(feature = "io")] 326s | ^^^^^^^^^^^^^^ 326s help: consider importing this struct 326s | 326s 5 + use std::io::BufReader; 326s | 326s help: if you import `BufReader`, refer to it directly 326s | 326s 29 - .map(futures_util::io::BufReader::new) 326s 29 + .map(BufReader::new) 326s | 326s 326s error[E0282]: type annotations needed 326s --> /usr/share/cargo/registry/zbus-4.4.0/src/connection/mod.rs:1047:49 326s | 326s 1047 | .add_match_rule(e.key().inner().clone()) 326s | ^^^^^ cannot infer type for type parameter `K` declared on the enum `Entry` 326s 326s error[E0282]: type annotations needed for `&mut (_, _)` 326s --> /usr/share/cargo/registry/zbus-4.4.0/src/connection/mod.rs:1060:21 326s | 326s 1060 | let (num_subscriptions, receiver) = e.get_mut(); 326s | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 326s ... 326s 1063 | if max_queued > receiver.capacity() { 326s | -------- type must be known at this point 326s | 326s help: consider giving this pattern a type, where the placeholders `_` are specified 326s | 326s 1060 | let (num_subscriptions, receiver): &mut (_, _) = e.get_mut(); 326s | +++++++++++++ 326s 326s error[E0282]: type annotations needed 326s --> /usr/share/cargo/registry/zbus-4.4.0/src/connection/mod.rs:1082:36 326s | 326s 1082 | let rule = e.key().inner().clone(); 326s | ^^^^^ cannot infer type for type parameter `K` declared on the enum `Entry` 326s 326s error[E0599]: the method `next` exists for struct `Enumerate`, but its trait bounds were not satisfied 326s --> /usr/share/cargo/registry/zbus-4.4.0/src/connection/handshake/cookies.rs:54:43 326s | 326s 54 | while let Some((n, line)) = lines.next().await { 326s | ^^^^ method cannot be called on `Enumerate` due to unsatisfied trait bounds 326s | 326s ::: /usr/share/cargo/registry/futures-util-0.3.31/src/stream/stream/enumerate.rs:9:1 326s | 326s 9 | / pin_project! { 326s 10 | | /// Stream for the [`enumerate`](super::StreamExt::enumerate) method. 326s 11 | | #[derive(Debug)] 326s 12 | | #[must_use = "streams do nothing unless polled"] 326s ... | 326s 17 | | } 326s 18 | | } 326s | |_- doesn't satisfy `_: StreamExt` or `_: Stream` 326s | 326s = note: the following trait bounds were not satisfied: 326s `futures_util::stream::Enumerate: futures_core::Stream` 326s which is required by `futures_util::stream::Enumerate: StreamExt` 326s 326s error[E0433]: failed to resolve: use of undeclared crate or module `async_fs` 326s --> /usr/share/cargo/registry/zbus-4.4.0/src/abstractions/file.rs:73:9 326s | 326s 73 | async_fs::metadata(path).await 326s | ^^^^^^^^ use of undeclared crate or module `async_fs` 326s 327s error[E0599]: the method `get_or_init` exists for struct `OnceLock`, but its trait bounds were not satisfied 327s --> /usr/share/cargo/registry/zbus-4.4.0/src/connection/mod.rs:917:14 327s | 327s 915 | / self.inner 327s 916 | | .object_server 327s 917 | | .get_or_init(move || self.setup_object_server(start, started_event)) 327s | | -^^^^^^^^^^^ method cannot be called on `OnceLock` due to unsatisfied trait bounds 327s | |_____________| 327s | 327s | 327s ::: /usr/share/cargo/registry/zbus-4.4.0/src/blocking/object_server.rs:126:1 327s | 327s 126 | pub struct ObjectServer { 327s | ----------------------- doesn't satisfy `blocking::object_server::ObjectServer: Sized` 327s | 327s = note: the following trait bounds were not satisfied: 327s `{type error}: Sized` 327s which is required by `blocking::object_server::ObjectServer: Sized` 327s 327s error[E0433]: failed to resolve: use of undeclared crate or module `blocking` 327s --> /usr/share/cargo/registry/zbus-4.4.0/src/abstractions/executor.rs:172:23 327s | 327s 172 | Self(Some(blocking::unblock(f))) 327s | ^^^^^^^^ use of undeclared crate or module `blocking` 327s 327s error[E0433]: failed to resolve: use of undeclared crate or module `async_io` 327s --> /usr/share/cargo/registry/zbus-4.4.0/src/utils.rs:34:5 327s | 327s 34 | async_io::block_on(future) 327s | ^^^^^^^^ use of undeclared crate or module `async_io` 327s 328s error[E0433]: failed to resolve: use of undeclared crate or module `async_fs` 328s --> /usr/share/cargo/registry/zbus-4.4.0/src/abstractions/file.rs:18:74 328s | 328s 18 | pub struct FileLines(futures_util::io::Lines>); 328s | ^^^^^^^^ use of undeclared crate or module `async_fs` 328s 328s error[E0433]: failed to resolve: use of undeclared crate or module `async_lock` 328s --> /usr/share/cargo/registry/zbus-4.4.0/src/abstractions/async_lock.rs:8:29 328s | 328s 8 | pub(crate) struct Semaphore(async_lock::Semaphore); 328s | ^^^^^^^^^^ use of undeclared crate or module `async_lock` 328s 328s error[E0433]: failed to resolve: use of undeclared crate or module `async_lock` 328s --> /usr/share/cargo/registry/zbus-4.4.0/src/abstractions/async_lock.rs:36:39 328s | 328s 36 | pub(crate) type SemaphorePermit<'a> = async_lock::SemaphoreGuard<'a>; 328s | ^^^^^^^^^^ use of undeclared crate or module `async_lock` 328s 328s Some errors have detailed explanations: E0282, E0432, E0433, E0599. 328s For more information about an error, try `rustc --explain E0282`. 328s error: could not compile `zbus` (lib) due to 29 previous errors 328s 328s Caused by: 328s process didn't exit successfully: `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=zbus CARGO_MANIFEST_DIR=/tmp/tmp.cy4zYrLhIY/registry/zbus-4.4.0 CARGO_MANIFEST_PATH=/tmp/tmp.cy4zYrLhIY/registry/zbus-4.4.0/Cargo.toml CARGO_PKG_AUTHORS='Zeeshan Ali Khan ' CARGO_PKG_DESCRIPTION='API for D-Bus communication' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=zbus CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dbus2/zbus/' CARGO_PKG_RUST_VERSION=1.75 CARGO_PKG_VERSION=4.4.0 CARGO_PKG_VERSION_MAJOR=4 CARGO_PKG_VERSION_MINOR=4 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.cy4zYrLhIY/target/debug/deps rustc --crate-name zbus --edition=2021 /tmp/tmp.cy4zYrLhIY/registry/zbus-4.4.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("async-executor", "async-fs", "async-io", "async-lock", "async-task", "blocking", "bus-impl", "chrono", "default", "heapless", "option-as-array", "p2p", "time", "tokio", "tokio-vsock", "url", "uuid", "vsock"))' -C metadata=27d32f1eb779b401 -C extra-filename=-27d32f1eb779b401 --out-dir /tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.cy4zYrLhIY/target/debug/deps --extern async_broadcast=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps/libasync_broadcast-852b859fbdd9a4f4.rmeta --extern async_trait=/tmp/tmp.cy4zYrLhIY/target/debug/deps/libasync_trait-e4c90cfd514ad223.so --extern enumflags2=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps/libenumflags2-2867d32c4b4f39e8.rmeta --extern event_listener=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps/libevent_listener-93bdad7496d4853a.rmeta --extern futures_core=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps/libfutures_core-8d305950da6bf5c8.rmeta --extern futures_sink=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps/libfutures_sink-2335bc9d806f8753.rmeta --extern futures_util=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps/libfutures_util-23beed03671fe7d3.rmeta --extern hex=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps/libhex-d04eec135ea2b5a3.rmeta --extern nix=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps/libnix-1c06771599af3024.rmeta --extern ordered_stream=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps/libordered_stream-5d03c0a21a4bd5e4.rmeta --extern rand=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps/librand-da2a195293a4eb5f.rmeta --extern serde=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps/libserde-0e7dff716e38da0d.rmeta --extern serde_repr=/tmp/tmp.cy4zYrLhIY/target/debug/deps/libserde_repr-79727398b79ecac5.so --extern sha1=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps/libsha1-7a229c14a1ac9b31.rmeta --extern static_assertions=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps/libstatic_assertions-18df01cc327facaa.rmeta --extern tracing=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps/libtracing-5f8a2432d30b4ef1.rmeta --extern xdg_home=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps/libxdg_home-4230920bfa085c8c.rmeta --extern zbus_macros=/tmp/tmp.cy4zYrLhIY/target/debug/deps/libzbus_macros-858601daf3a85039.so --extern zbus_names=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps/libzbus_names-e138813c02d4cbaa.rmeta --extern zvariant=/tmp/tmp.cy4zYrLhIY/target/s390x-unknown-linux-gnu/debug/deps/libzvariant-7b45eb8446d33c11.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.cy4zYrLhIY/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` (exit status: 1) 328s warning: build failed, waiting for other jobs to finish... 329s warning: `gdk4` (lib) generated 1 warning (1 duplicate) 329s /tmp/autopkgtest.9UAdYD/wrapper.sh: checking for leaked background processes... 329s /tmp/autopkgtest.9UAdYD/wrapper.sh: waiting for tee/cat subprocesses... 329s /tmp/autopkgtest.9UAdYD/wrapper.sh: cleaning up... 329s /tmp/autopkgtest.9UAdYD/wrapper.sh: Exit status: 101 329s autopkgtest: DBG: testbed command exited with code 101 330s autopkgtest [18:30:57]: test librust-search-provider-dev:gdk: -----------------------] 330s autopkgtest: DBG: testbed executing test finished with exit status 101 330s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.9UAdYD/librust-search-provider-dev%3Agdk-stdout /tmp/autopkgtest-work.fgzbr70j/out/librust-search-provider-dev%3Agdk-stdout 330s autopkgtest: DBG: got reply from testbed: ok 330s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.9UAdYD/librust-search-provider-dev%3Agdk-stderr /tmp/autopkgtest-work.fgzbr70j/out/librust-search-provider-dev%3Agdk-stderr 330s autopkgtest: DBG: got reply from testbed: ok 330s librust-search-provider-dev:gdk FLAKY non-zero exit status 101 330s autopkgtest [18:30:57]: test librust-search-provider-dev:gdk: - - - - - - - - - - results - - - - - - - - - - 330s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.9UAdYD/librust-search-provider-dev%3Agdk-artifacts/ /tmp/autopkgtest-work.fgzbr70j/out/artifacts/ 330s autopkgtest: DBG: got reply from testbed: ok 330s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.9UAdYD/librust-search-provider-dev:gdk-artifacts', '/tmp/autopkgtest.9UAdYD/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 331s autopkgtest: DBG: testbed command exited with code 0 331s autopkgtest [18:30:58]: test librust-search-provider-dev:gdk-pixbuf: preparing testbed 331s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['dh-cargo (>= 18)', 'librust-search-provider-dev'], deps_new=['dh-cargo (>= 18)', 'librust-search-provider-dev'] 331s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 331s autopkgtest: DBG: install_deps: deps_new=['dh-cargo (>= 18)', 'librust-search-provider-dev'] 331s autopkgtest: DBG: install-deps: satisfying dh-cargo (>= 18), librust-search-provider-dev 331s autopkgtest: DBG: can use apt-get on testbed: True 331s 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-search-provider-dev'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 331s Reading package lists... 331s Building dependency tree... 331s Reading state information... 331s Starting pkgProblemResolver with broken count: 0 331s Starting 2 pkgProblemResolver with broken count: 0 331s Done 331s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 331s autopkgtest: DBG: testbed command exited with code 0 331s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'librust-search-provider-dev'], kind short, sout pipe, serr pipe, env [] 331s autopkgtest: DBG: testbed command exited with code 0 331s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.9UAdYD/librust-search-provider-dev:gdk-pixbuf-packages.all"], kind short, sout raw, serr pipe, env [] 332s autopkgtest: DBG: testbed command exited with code 0 332s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.9UAdYD/librust-search-provider-dev%3Agdk-pixbuf-packages.all /tmp/autopkgtest-work.fgzbr70j/out/librust-search-provider-dev%3Agdk-pixbuf-packages.all 332s autopkgtest: DBG: got reply from testbed: ok 332s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.9UAdYD/build.JnS/src'], kind short, sout raw, serr raw, env [] 332s autopkgtest: DBG: testbed command exited with code 0 332s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.9UAdYD/build.JnS/src already exists 332s autopkgtest [18:30:59]: test librust-search-provider-dev:gdk-pixbuf: /usr/share/cargo/bin/cargo-auto-test search-provider 0.10.0 --all-targets --no-default-features --features gdk-pixbuf 332s autopkgtest [18:30:59]: test librust-search-provider-dev:gdk-pixbuf: [----------------------- 332s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.9UAdYD/wrapper.sh --debug --artifacts=/tmp/autopkgtest.9UAdYD/librust-search-provider-dev:gdk-pixbuf-artifacts --chdir=/tmp/autopkgtest.9UAdYD/build.JnS/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.9UAdYD/librust-search-provider-dev:gdk-pixbuf-stderr --stdout=/tmp/autopkgtest.9UAdYD/librust-search-provider-dev:gdk-pixbuf-stdout --tmp=/tmp/autopkgtest.9UAdYD/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 search-provider 0.10.0 --all-targets --no-default-features --features gdk-pixbuf'"], kind test, sout raw, serr raw, env [] 332s /tmp/autopkgtest.9UAdYD/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.9UAdYD/librust-search-provider-dev:gdk-pixbuf-artifacts 332s /tmp/autopkgtest.9UAdYD/wrapper.sh: changing to directory: /tmp/autopkgtest.9UAdYD/build.JnS/src 332s /tmp/autopkgtest.9UAdYD/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 332s /tmp/autopkgtest.9UAdYD/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 332s /tmp/autopkgtest.9UAdYD/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 332s /tmp/autopkgtest.9UAdYD/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 332s /tmp/autopkgtest.9UAdYD/wrapper.sh: setting environment: LANG=C.UTF-8 332s /tmp/autopkgtest.9UAdYD/wrapper.sh: unsetting environment: LANGUAGE 332s /tmp/autopkgtest.9UAdYD/wrapper.sh: unsetting environment: LC_ADDRESS 332s /tmp/autopkgtest.9UAdYD/wrapper.sh: unsetting environment: LC_ALL 332s /tmp/autopkgtest.9UAdYD/wrapper.sh: unsetting environment: LC_COLLATE 332s /tmp/autopkgtest.9UAdYD/wrapper.sh: unsetting environment: LC_CTYPE 332s /tmp/autopkgtest.9UAdYD/wrapper.sh: unsetting environment: LC_IDENTIFICATION 332s /tmp/autopkgtest.9UAdYD/wrapper.sh: unsetting environment: LC_MEASUREMENT 332s /tmp/autopkgtest.9UAdYD/wrapper.sh: unsetting environment: LC_MESSAGES 332s /tmp/autopkgtest.9UAdYD/wrapper.sh: unsetting environment: LC_MONETARY 332s /tmp/autopkgtest.9UAdYD/wrapper.sh: unsetting environment: LC_NAME 332s /tmp/autopkgtest.9UAdYD/wrapper.sh: unsetting environment: LC_NUMERIC 332s /tmp/autopkgtest.9UAdYD/wrapper.sh: unsetting environment: LC_PAPER 332s /tmp/autopkgtest.9UAdYD/wrapper.sh: unsetting environment: LC_TELEPHONE 332s /tmp/autopkgtest.9UAdYD/wrapper.sh: unsetting environment: LC_TIME 332s /tmp/autopkgtest.9UAdYD/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 332s /tmp/autopkgtest.9UAdYD/wrapper.sh: pretending to be a login shell 332s /tmp/autopkgtest.9UAdYD/wrapper.sh: will write standard error to /tmp/autopkgtest.9UAdYD/librust-search-provider-dev:gdk-pixbuf-stderr 332s /tmp/autopkgtest.9UAdYD/wrapper.sh: will write stdout to /tmp/autopkgtest.9UAdYD/librust-search-provider-dev:gdk-pixbuf-stdout 332s /tmp/autopkgtest.9UAdYD/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.9UAdYD/autopkgtest_tmp 332s /tmp/autopkgtest.9UAdYD/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 332s /tmp/autopkgtest.9UAdYD/wrapper.sh: command to run: bash -ec /usr/share/cargo/bin/cargo-auto-test search-provider 0.10.0 --all-targets --no-default-features --features gdk-pixbuf 332s /tmp/autopkgtest.9UAdYD/wrapper.sh: copying /tmp/tmp.c2czznipfJ/out to stdout and file: /tmp/autopkgtest.9UAdYD/librust-search-provider-dev:gdk-pixbuf-stdout 332s /tmp/autopkgtest.9UAdYD/wrapper.sh: copying /tmp/tmp.c2czznipfJ/err to standard error and file: /tmp/autopkgtest.9UAdYD/librust-search-provider-dev:gdk-pixbuf-stdout 332s /tmp/autopkgtest.9UAdYD/wrapper.sh: writing script pid 12126 to /tmp/autopkgtest_script_pid 332s debian cargo wrapper: options, profiles, parallel, lto: ['parallel=2'] [] ['-j2'] 0 332s debian cargo wrapper: rust_type, gnu_type: s390x-unknown-linux-gnu, s390x-linux-gnu 332s debian cargo wrapper: unsetting RUSTFLAGS and assuming it will be (or already was) added to $CARGO_HOME/config.toml 332s debian cargo wrapper: linking /usr/share/cargo/registry/* into /tmp/tmp.o8L9imxcb3/registry/ 332s debian cargo wrapper: options, profiles, parallel, lto: ['parallel=2'] [] ['-j2'] 0 332s debian cargo wrapper: rust_type, gnu_type: s390x-unknown-linux-gnu, s390x-linux-gnu 332s debian cargo wrapper: unsetting RUSTFLAGS and assuming it will be (or already was) added to $CARGO_HOME/config.toml 332s 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', '--features', 'gdk-pixbuf'],) {} 332s Compiling proc-macro2 v1.0.92 332s Compiling serde v1.0.217 332s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.o8L9imxcb3/registry/serde-1.0.217 CARGO_MANIFEST_PATH=/tmp/tmp.o8L9imxcb3/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.o8L9imxcb3/target/debug/deps rustc --crate-name build_script_build --edition=2018 /tmp/tmp.o8L9imxcb3/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="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "default", "derive", "rc", "serde_derive", "std", "unstable"))' -C metadata=2b32d4e029565da2 -C extra-filename=-2b32d4e029565da2 --out-dir /tmp/tmp.o8L9imxcb3/target/debug/build/serde-2b32d4e029565da2 -L dependency=/tmp/tmp.o8L9imxcb3/target/debug/deps --cap-lints warn` 332s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.o8L9imxcb3/registry/proc-macro2-1.0.92 CARGO_MANIFEST_PATH=/tmp/tmp.o8L9imxcb3/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.o8L9imxcb3/target/debug/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.o8L9imxcb3/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.o8L9imxcb3/target/debug/build/proc-macro2-3832f39696f3f5db -L dependency=/tmp/tmp.o8L9imxcb3/target/debug/deps --cap-lints warn` 333s Compiling unicode-ident v1.0.13 333s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=unicode_ident CARGO_MANIFEST_DIR=/tmp/tmp.o8L9imxcb3/registry/unicode-ident-1.0.13 CARGO_MANIFEST_PATH=/tmp/tmp.o8L9imxcb3/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.o8L9imxcb3/target/debug/deps rustc --crate-name unicode_ident --edition=2018 /tmp/tmp.o8L9imxcb3/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.o8L9imxcb3/target/debug/deps -L dependency=/tmp/tmp.o8L9imxcb3/target/debug/deps --cap-lints warn` 333s 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.o8L9imxcb3/registry/proc-macro2-1.0.92 CARGO_MANIFEST_PATH=/tmp/tmp.o8L9imxcb3/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.o8L9imxcb3/target/debug/deps:/tmp/tmp.o8L9imxcb3/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.o8L9imxcb3/target/debug/build/proc-macro2-b8c68c67c59c8657/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.o8L9imxcb3/target/debug/build/proc-macro2-3832f39696f3f5db/build-script-build` 333s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(fuzzing) 333s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(no_is_available) 333s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(no_literal_byte_character) 333s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(no_literal_c_string) 333s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(no_source_text) 333s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(proc_macro_span) 333s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(procmacro2_backtrace) 333s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(procmacro2_nightly_testing) 333s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(procmacro2_semver_exempt) 333s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(randomize_layout) 333s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(span_locations) 333s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(super_unstable) 333s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(wrap_proc_macro) 333s [proc-macro2 1.0.92] cargo:rerun-if-changed=build/probe.rs 333s [proc-macro2 1.0.92] cargo:rustc-cfg=wrap_proc_macro 333s [proc-macro2 1.0.92] cargo:rerun-if-env-changed=RUSTC_BOOTSTRAP 333s 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_STD=1 CARGO_MANIFEST_DIR=/tmp/tmp.o8L9imxcb3/registry/serde-1.0.217 CARGO_MANIFEST_PATH=/tmp/tmp.o8L9imxcb3/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.o8L9imxcb3/target/debug/deps:/tmp/tmp.o8L9imxcb3/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.o8L9imxcb3/target/debug/build/serde-c2bcebac22c6c694/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.o8L9imxcb3/target/debug/build/serde-2b32d4e029565da2/build-script-build` 333s [serde 1.0.217] cargo:rerun-if-changed=build.rs 333s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=proc_macro2 CARGO_MANIFEST_DIR=/tmp/tmp.o8L9imxcb3/registry/proc-macro2-1.0.92 CARGO_MANIFEST_PATH=/tmp/tmp.o8L9imxcb3/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.o8L9imxcb3/target/debug/deps OUT_DIR=/tmp/tmp.o8L9imxcb3/target/debug/build/proc-macro2-b8c68c67c59c8657/out rustc --crate-name proc_macro2 --edition=2021 /tmp/tmp.o8L9imxcb3/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.o8L9imxcb3/target/debug/deps -L dependency=/tmp/tmp.o8L9imxcb3/target/debug/deps --extern unicode_ident=/tmp/tmp.o8L9imxcb3/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)'` 333s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_core_cstr) 333s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_core_error) 333s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_core_net) 333s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_core_num_saturating) 333s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_core_try_from) 333s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_diagnostic_namespace) 333s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_float_copysign) 333s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_num_nonzero_signed) 333s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_relaxed_trait_bounds) 333s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_serde_derive) 333s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_std_atomic) 333s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_std_atomic64) 333s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_systemtime_checked_add) 333s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_target_has_atomic) 333s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=serde CARGO_MANIFEST_DIR=/tmp/tmp.o8L9imxcb3/registry/serde-1.0.217 CARGO_MANIFEST_PATH=/tmp/tmp.o8L9imxcb3/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.o8L9imxcb3/target/debug/deps OUT_DIR=/tmp/tmp.o8L9imxcb3/target/debug/build/serde-c2bcebac22c6c694/out rustc --crate-name serde --edition=2018 /tmp/tmp.o8L9imxcb3/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="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "default", "derive", "rc", "serde_derive", "std", "unstable"))' -C metadata=64c0851ac56a0ce1 -C extra-filename=-64c0851ac56a0ce1 --out-dir /tmp/tmp.o8L9imxcb3/target/debug/deps -L dependency=/tmp/tmp.o8L9imxcb3/target/debug/deps --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)'` 334s Compiling quote v1.0.37 334s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=quote CARGO_MANIFEST_DIR=/tmp/tmp.o8L9imxcb3/registry/quote-1.0.37 CARGO_MANIFEST_PATH=/tmp/tmp.o8L9imxcb3/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.o8L9imxcb3/target/debug/deps rustc --crate-name quote --edition=2018 /tmp/tmp.o8L9imxcb3/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.o8L9imxcb3/target/debug/deps -L dependency=/tmp/tmp.o8L9imxcb3/target/debug/deps --extern proc_macro2=/tmp/tmp.o8L9imxcb3/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rmeta --cap-lints warn` 334s Compiling syn v2.0.96 334s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=syn CARGO_MANIFEST_DIR=/tmp/tmp.o8L9imxcb3/registry/syn-2.0.96 CARGO_MANIFEST_PATH=/tmp/tmp.o8L9imxcb3/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.o8L9imxcb3/target/debug/deps rustc --crate-name syn --edition=2021 /tmp/tmp.o8L9imxcb3/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="fold"' --cfg 'feature="full"' --cfg 'feature="parsing"' --cfg 'feature="printing"' --cfg 'feature="proc-macro"' --cfg 'feature="visit-mut"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("clone-impls", "default", "derive", "extra-traits", "fold", "full", "parsing", "printing", "proc-macro", "visit", "visit-mut"))' -C metadata=0167beed9e699402 -C extra-filename=-0167beed9e699402 --out-dir /tmp/tmp.o8L9imxcb3/target/debug/deps -L dependency=/tmp/tmp.o8L9imxcb3/target/debug/deps --extern proc_macro2=/tmp/tmp.o8L9imxcb3/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rmeta --extern quote=/tmp/tmp.o8L9imxcb3/target/debug/deps/libquote-dc92c6f25ee0f0c6.rmeta --extern unicode_ident=/tmp/tmp.o8L9imxcb3/target/debug/deps/libunicode_ident-5d182fe9243248fe.rmeta --cap-lints warn` 335s Compiling equivalent v1.0.1 335s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=equivalent CARGO_MANIFEST_DIR=/tmp/tmp.o8L9imxcb3/registry/equivalent-1.0.1 CARGO_MANIFEST_PATH=/tmp/tmp.o8L9imxcb3/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.o8L9imxcb3/target/debug/deps rustc --crate-name equivalent --edition=2015 /tmp/tmp.o8L9imxcb3/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.o8L9imxcb3/target/debug/deps -L dependency=/tmp/tmp.o8L9imxcb3/target/debug/deps --cap-lints warn` 335s Compiling hashbrown v0.14.5 335s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=hashbrown CARGO_MANIFEST_DIR=/tmp/tmp.o8L9imxcb3/registry/hashbrown-0.14.5 CARGO_MANIFEST_PATH=/tmp/tmp.o8L9imxcb3/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.o8L9imxcb3/target/debug/deps rustc --crate-name hashbrown --edition=2021 /tmp/tmp.o8L9imxcb3/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.o8L9imxcb3/target/debug/deps -L dependency=/tmp/tmp.o8L9imxcb3/target/debug/deps --cap-lints warn` 335s warning: unexpected `cfg` condition value: `nightly` 335s --> /tmp/tmp.o8L9imxcb3/registry/hashbrown-0.14.5/src/lib.rs:14:5 335s | 335s 14 | feature = "nightly", 335s | ^^^^^^^^^^^^^^^^^^^ 335s | 335s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 335s = help: consider adding `nightly` as a feature in `Cargo.toml` 335s = note: see for more information about checking conditional configuration 335s = note: `#[warn(unexpected_cfgs)]` on by default 335s 335s warning: unexpected `cfg` condition value: `nightly` 335s --> /tmp/tmp.o8L9imxcb3/registry/hashbrown-0.14.5/src/lib.rs:39:13 335s | 335s 39 | #![cfg_attr(feature = "nightly", warn(fuzzy_provenance_casts))] 335s | ^^^^^^^^^^^^^^^^^^^ 335s | 335s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 335s = help: consider adding `nightly` as a feature in `Cargo.toml` 335s = note: see for more information about checking conditional configuration 335s 335s warning: unexpected `cfg` condition value: `nightly` 335s --> /tmp/tmp.o8L9imxcb3/registry/hashbrown-0.14.5/src/lib.rs:40:13 335s | 335s 40 | #![cfg_attr(feature = "nightly", allow(internal_features))] 335s | ^^^^^^^^^^^^^^^^^^^ 335s | 335s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 335s = help: consider adding `nightly` as a feature in `Cargo.toml` 335s = note: see for more information about checking conditional configuration 335s 335s warning: unexpected `cfg` condition value: `nightly` 335s --> /tmp/tmp.o8L9imxcb3/registry/hashbrown-0.14.5/src/lib.rs:49:7 335s | 335s 49 | #[cfg(feature = "nightly")] 335s | ^^^^^^^^^^^^^^^^^^^ 335s | 335s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 335s = help: consider adding `nightly` as a feature in `Cargo.toml` 335s = note: see for more information about checking conditional configuration 335s 335s warning: unexpected `cfg` condition value: `nightly` 335s --> /tmp/tmp.o8L9imxcb3/registry/hashbrown-0.14.5/src/macros.rs:59:7 335s | 335s 59 | #[cfg(feature = "nightly")] 335s | ^^^^^^^^^^^^^^^^^^^ 335s | 335s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 335s = help: consider adding `nightly` as a feature in `Cargo.toml` 335s = note: see for more information about checking conditional configuration 335s 335s warning: unexpected `cfg` condition value: `nightly` 335s --> /tmp/tmp.o8L9imxcb3/registry/hashbrown-0.14.5/src/macros.rs:65:11 335s | 335s 65 | #[cfg(not(feature = "nightly"))] 335s | ^^^^^^^^^^^^^^^^^^^ 335s | 335s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 335s = help: consider adding `nightly` as a feature in `Cargo.toml` 335s = note: see for more information about checking conditional configuration 335s 335s warning: unexpected `cfg` condition value: `nightly` 335s --> /tmp/tmp.o8L9imxcb3/registry/hashbrown-0.14.5/src/raw/mod.rs:53:11 335s | 335s 53 | #[cfg(not(feature = "nightly"))] 335s | ^^^^^^^^^^^^^^^^^^^ 335s | 335s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 335s = help: consider adding `nightly` as a feature in `Cargo.toml` 335s = note: see for more information about checking conditional configuration 335s 335s warning: unexpected `cfg` condition value: `nightly` 335s --> /tmp/tmp.o8L9imxcb3/registry/hashbrown-0.14.5/src/raw/mod.rs:55:11 335s | 335s 55 | #[cfg(not(feature = "nightly"))] 335s | ^^^^^^^^^^^^^^^^^^^ 335s | 335s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 335s = help: consider adding `nightly` as a feature in `Cargo.toml` 335s = note: see for more information about checking conditional configuration 335s 335s warning: unexpected `cfg` condition value: `nightly` 335s --> /tmp/tmp.o8L9imxcb3/registry/hashbrown-0.14.5/src/raw/mod.rs:57:7 335s | 335s 57 | #[cfg(feature = "nightly")] 335s | ^^^^^^^^^^^^^^^^^^^ 335s | 335s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 335s = help: consider adding `nightly` as a feature in `Cargo.toml` 335s = note: see for more information about checking conditional configuration 335s 335s warning: unexpected `cfg` condition value: `nightly` 335s --> /tmp/tmp.o8L9imxcb3/registry/hashbrown-0.14.5/src/raw/mod.rs:3549:7 335s | 335s 3549 | #[cfg(feature = "nightly")] 335s | ^^^^^^^^^^^^^^^^^^^ 335s | 335s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 335s = help: consider adding `nightly` as a feature in `Cargo.toml` 335s = note: see for more information about checking conditional configuration 335s 335s warning: unexpected `cfg` condition value: `nightly` 335s --> /tmp/tmp.o8L9imxcb3/registry/hashbrown-0.14.5/src/raw/mod.rs:3661:7 335s | 335s 3661 | #[cfg(feature = "nightly")] 335s | ^^^^^^^^^^^^^^^^^^^ 335s | 335s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 335s = help: consider adding `nightly` as a feature in `Cargo.toml` 335s = note: see for more information about checking conditional configuration 335s 335s warning: unexpected `cfg` condition value: `nightly` 335s --> /tmp/tmp.o8L9imxcb3/registry/hashbrown-0.14.5/src/raw/mod.rs:3678:11 335s | 335s 3678 | #[cfg(not(feature = "nightly"))] 335s | ^^^^^^^^^^^^^^^^^^^ 335s | 335s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 335s = help: consider adding `nightly` as a feature in `Cargo.toml` 335s = note: see for more information about checking conditional configuration 335s 335s warning: unexpected `cfg` condition value: `nightly` 335s --> /tmp/tmp.o8L9imxcb3/registry/hashbrown-0.14.5/src/raw/mod.rs:4304:7 335s | 335s 4304 | #[cfg(feature = "nightly")] 335s | ^^^^^^^^^^^^^^^^^^^ 335s | 335s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 335s = help: consider adding `nightly` as a feature in `Cargo.toml` 335s = note: see for more information about checking conditional configuration 335s 335s warning: unexpected `cfg` condition value: `nightly` 335s --> /tmp/tmp.o8L9imxcb3/registry/hashbrown-0.14.5/src/raw/mod.rs:4319:11 335s | 335s 4319 | #[cfg(not(feature = "nightly"))] 335s | ^^^^^^^^^^^^^^^^^^^ 335s | 335s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 335s = help: consider adding `nightly` as a feature in `Cargo.toml` 335s = note: see for more information about checking conditional configuration 335s 335s warning: unexpected `cfg` condition value: `nightly` 335s --> /tmp/tmp.o8L9imxcb3/registry/hashbrown-0.14.5/src/raw/alloc.rs:7:7 335s | 335s 7 | #[cfg(feature = "nightly")] 335s | ^^^^^^^^^^^^^^^^^^^ 335s | 335s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 335s = help: consider adding `nightly` as a feature in `Cargo.toml` 335s = note: see for more information about checking conditional configuration 335s 335s warning: unexpected `cfg` condition value: `nightly` 335s --> /tmp/tmp.o8L9imxcb3/registry/hashbrown-0.14.5/src/raw/alloc.rs:28:15 335s | 335s 28 | #[cfg(all(not(feature = "nightly"), feature = "allocator-api2"))] 335s | ^^^^^^^^^^^^^^^^^^^ 335s | 335s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 335s = help: consider adding `nightly` as a feature in `Cargo.toml` 335s = note: see for more information about checking conditional configuration 335s 335s warning: unexpected `cfg` condition value: `nightly` 335s --> /tmp/tmp.o8L9imxcb3/registry/hashbrown-0.14.5/src/raw/alloc.rs:51:15 335s | 335s 51 | #[cfg(not(any(feature = "nightly", feature = "allocator-api2")))] 335s | ^^^^^^^^^^^^^^^^^^^ 335s | 335s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 335s = help: consider adding `nightly` as a feature in `Cargo.toml` 335s = note: see for more information about checking conditional configuration 335s 335s warning: unexpected `cfg` condition value: `nightly` 335s --> /tmp/tmp.o8L9imxcb3/registry/hashbrown-0.14.5/src/raw/mod.rs:944:32 335s | 335s 944 | #[cfg(any(feature = "raw", feature = "nightly"))] 335s | ^^^^^^^^^^^^^^^^^^^ 335s | 335s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 335s = help: consider adding `nightly` as a feature in `Cargo.toml` 335s = note: see for more information about checking conditional configuration 335s 335s warning: unexpected `cfg` condition value: `rkyv` 335s --> /tmp/tmp.o8L9imxcb3/registry/hashbrown-0.14.5/src/external_trait_impls/mod.rs:3:7 335s | 335s 3 | #[cfg(feature = "rkyv")] 335s | ^^^^^^^^^^^^^^^^ 335s | 335s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 335s = help: consider adding `rkyv` as a feature in `Cargo.toml` 335s = note: see for more information about checking conditional configuration 335s 335s warning: unexpected `cfg` condition value: `nightly` 335s --> /tmp/tmp.o8L9imxcb3/registry/hashbrown-0.14.5/src/map.rs:242:11 335s | 335s 242 | #[cfg(not(feature = "nightly"))] 335s | ^^^^^^^^^^^^^^^^^^^ 335s | 335s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 335s = help: consider adding `nightly` as a feature in `Cargo.toml` 335s = note: see for more information about checking conditional configuration 335s 335s warning: unexpected `cfg` condition value: `nightly` 335s --> /tmp/tmp.o8L9imxcb3/registry/hashbrown-0.14.5/src/map.rs:255:7 335s | 335s 255 | #[cfg(feature = "nightly")] 335s | ^^^^^^^^^^^^^^^^^^^ 335s | 335s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 335s = help: consider adding `nightly` as a feature in `Cargo.toml` 335s = note: see for more information about checking conditional configuration 335s 335s warning: unexpected `cfg` condition value: `nightly` 335s --> /tmp/tmp.o8L9imxcb3/registry/hashbrown-0.14.5/src/map.rs:6517:11 335s | 335s 6517 | #[cfg(feature = "nightly")] 335s | ^^^^^^^^^^^^^^^^^^^ 335s | 335s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 335s = help: consider adding `nightly` as a feature in `Cargo.toml` 335s = note: see for more information about checking conditional configuration 335s 335s warning: unexpected `cfg` condition value: `nightly` 335s --> /tmp/tmp.o8L9imxcb3/registry/hashbrown-0.14.5/src/map.rs:6523:11 335s | 335s 6523 | #[cfg(feature = "nightly")] 335s | ^^^^^^^^^^^^^^^^^^^ 335s | 335s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 335s = help: consider adding `nightly` as a feature in `Cargo.toml` 335s = note: see for more information about checking conditional configuration 335s 335s warning: unexpected `cfg` condition value: `nightly` 335s --> /tmp/tmp.o8L9imxcb3/registry/hashbrown-0.14.5/src/map.rs:6591:11 335s | 335s 6591 | #[cfg(feature = "nightly")] 335s | ^^^^^^^^^^^^^^^^^^^ 335s | 335s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 335s = help: consider adding `nightly` as a feature in `Cargo.toml` 335s = note: see for more information about checking conditional configuration 335s 335s warning: unexpected `cfg` condition value: `nightly` 335s --> /tmp/tmp.o8L9imxcb3/registry/hashbrown-0.14.5/src/map.rs:6597:11 335s | 335s 6597 | #[cfg(feature = "nightly")] 335s | ^^^^^^^^^^^^^^^^^^^ 335s | 335s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 335s = help: consider adding `nightly` as a feature in `Cargo.toml` 335s = note: see for more information about checking conditional configuration 335s 335s warning: unexpected `cfg` condition value: `nightly` 335s --> /tmp/tmp.o8L9imxcb3/registry/hashbrown-0.14.5/src/map.rs:6651:11 335s | 335s 6651 | #[cfg(feature = "nightly")] 335s | ^^^^^^^^^^^^^^^^^^^ 335s | 335s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 335s = help: consider adding `nightly` as a feature in `Cargo.toml` 335s = note: see for more information about checking conditional configuration 335s 335s warning: unexpected `cfg` condition value: `nightly` 335s --> /tmp/tmp.o8L9imxcb3/registry/hashbrown-0.14.5/src/map.rs:6657:11 335s | 335s 6657 | #[cfg(feature = "nightly")] 335s | ^^^^^^^^^^^^^^^^^^^ 335s | 335s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 335s = help: consider adding `nightly` as a feature in `Cargo.toml` 335s = note: see for more information about checking conditional configuration 335s 335s warning: unexpected `cfg` condition value: `nightly` 335s --> /tmp/tmp.o8L9imxcb3/registry/hashbrown-0.14.5/src/set.rs:1359:11 335s | 335s 1359 | #[cfg(feature = "nightly")] 335s | ^^^^^^^^^^^^^^^^^^^ 335s | 335s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 335s = help: consider adding `nightly` as a feature in `Cargo.toml` 335s = note: see for more information about checking conditional configuration 335s 335s warning: unexpected `cfg` condition value: `nightly` 335s --> /tmp/tmp.o8L9imxcb3/registry/hashbrown-0.14.5/src/set.rs:1365:11 335s | 335s 1365 | #[cfg(feature = "nightly")] 335s | ^^^^^^^^^^^^^^^^^^^ 335s | 335s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 335s = help: consider adding `nightly` as a feature in `Cargo.toml` 335s = note: see for more information about checking conditional configuration 335s 335s warning: unexpected `cfg` condition value: `nightly` 335s --> /tmp/tmp.o8L9imxcb3/registry/hashbrown-0.14.5/src/set.rs:1383:11 335s | 335s 1383 | #[cfg(feature = "nightly")] 335s | ^^^^^^^^^^^^^^^^^^^ 335s | 335s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 335s = help: consider adding `nightly` as a feature in `Cargo.toml` 335s = note: see for more information about checking conditional configuration 335s 335s warning: unexpected `cfg` condition value: `nightly` 335s --> /tmp/tmp.o8L9imxcb3/registry/hashbrown-0.14.5/src/set.rs:1389:11 335s | 335s 1389 | #[cfg(feature = "nightly")] 335s | ^^^^^^^^^^^^^^^^^^^ 335s | 335s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 335s = help: consider adding `nightly` as a feature in `Cargo.toml` 335s = note: see for more information about checking conditional configuration 335s 336s warning: `hashbrown` (lib) generated 31 warnings 336s Compiling indexmap v2.7.0 336s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=indexmap CARGO_MANIFEST_DIR=/tmp/tmp.o8L9imxcb3/registry/indexmap-2.7.0 CARGO_MANIFEST_PATH=/tmp/tmp.o8L9imxcb3/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.o8L9imxcb3/target/debug/deps rustc --crate-name indexmap --edition=2021 /tmp/tmp.o8L9imxcb3/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.o8L9imxcb3/target/debug/deps -L dependency=/tmp/tmp.o8L9imxcb3/target/debug/deps --extern equivalent=/tmp/tmp.o8L9imxcb3/target/debug/deps/libequivalent-a11b0a19a3bf2c19.rmeta --extern hashbrown=/tmp/tmp.o8L9imxcb3/target/debug/deps/libhashbrown-e14e27c8ff208110.rmeta --cap-lints warn` 336s warning: unexpected `cfg` condition value: `borsh` 336s --> /tmp/tmp.o8L9imxcb3/registry/indexmap-2.7.0/src/lib.rs:117:7 336s | 336s 117 | #[cfg(feature = "borsh")] 336s | ^^^^^^^^^^^^^^^^^ 336s | 336s = note: expected values for `feature` are: `arbitrary`, `default`, `rayon`, `serde`, `std`, and `test_debug` 336s = help: consider adding `borsh` as a feature in `Cargo.toml` 336s = note: see for more information about checking conditional configuration 336s = note: `#[warn(unexpected_cfgs)]` on by default 336s 336s warning: unexpected `cfg` condition value: `rustc-rayon` 336s --> /tmp/tmp.o8L9imxcb3/registry/indexmap-2.7.0/src/lib.rs:131:7 336s | 336s 131 | #[cfg(feature = "rustc-rayon")] 336s | ^^^^^^^^^^^^^^^^^^^^^^^ 336s | 336s = note: expected values for `feature` are: `arbitrary`, `default`, `rayon`, `serde`, `std`, and `test_debug` 336s = help: consider adding `rustc-rayon` as a feature in `Cargo.toml` 336s = note: see for more information about checking conditional configuration 336s 336s warning: unexpected `cfg` condition value: `quickcheck` 336s --> /tmp/tmp.o8L9imxcb3/registry/indexmap-2.7.0/src/arbitrary.rs:38:7 336s | 336s 38 | #[cfg(feature = "quickcheck")] 336s | ^^^^^^^^^^^^^^^^^^^^^^ 336s | 336s = note: expected values for `feature` are: `arbitrary`, `default`, `rayon`, `serde`, `std`, and `test_debug` 336s = help: consider adding `quickcheck` as a feature in `Cargo.toml` 336s = note: see for more information about checking conditional configuration 336s 336s warning: unexpected `cfg` condition value: `rustc-rayon` 336s --> /tmp/tmp.o8L9imxcb3/registry/indexmap-2.7.0/src/macros.rs:128:30 336s | 336s 128 | #[cfg(any(feature = "rayon", feature = "rustc-rayon"))] 336s | ^^^^^^^^^^^^^^^^^^^^^^^ 336s | 336s = note: expected values for `feature` are: `arbitrary`, `default`, `rayon`, `serde`, `std`, and `test_debug` 336s = help: consider adding `rustc-rayon` as a feature in `Cargo.toml` 336s = note: see for more information about checking conditional configuration 336s 336s warning: unexpected `cfg` condition value: `rustc-rayon` 336s --> /tmp/tmp.o8L9imxcb3/registry/indexmap-2.7.0/src/macros.rs:153:30 336s | 336s 153 | #[cfg(any(feature = "rayon", feature = "rustc-rayon"))] 336s | ^^^^^^^^^^^^^^^^^^^^^^^ 336s | 336s = note: expected values for `feature` are: `arbitrary`, `default`, `rayon`, `serde`, `std`, and `test_debug` 336s = help: consider adding `rustc-rayon` as a feature in `Cargo.toml` 336s = note: see for more information about checking conditional configuration 336s 336s warning: `indexmap` (lib) generated 5 warnings 336s Compiling toml_datetime v0.6.8 336s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=toml_datetime CARGO_MANIFEST_DIR=/tmp/tmp.o8L9imxcb3/registry/toml_datetime-0.6.8 CARGO_MANIFEST_PATH=/tmp/tmp.o8L9imxcb3/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.o8L9imxcb3/target/debug/deps rustc --crate-name toml_datetime --edition=2021 /tmp/tmp.o8L9imxcb3/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' --cfg 'feature="serde"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("serde"))' -C metadata=f8a60bc8f4facc64 -C extra-filename=-f8a60bc8f4facc64 --out-dir /tmp/tmp.o8L9imxcb3/target/debug/deps -L dependency=/tmp/tmp.o8L9imxcb3/target/debug/deps --extern serde=/tmp/tmp.o8L9imxcb3/target/debug/deps/libserde-64c0851ac56a0ce1.rmeta --cap-lints warn` 336s Compiling serde_spanned v0.6.7 336s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=serde_spanned CARGO_MANIFEST_DIR=/tmp/tmp.o8L9imxcb3/registry/serde_spanned-0.6.7 CARGO_MANIFEST_PATH=/tmp/tmp.o8L9imxcb3/registry/serde_spanned-0.6.7/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='Serde-compatible spanned Value' CARGO_PKG_HOMEPAGE='https://github.com/toml-rs/toml' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=serde_spanned 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.7 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=6 CARGO_PKG_VERSION_PATCH=7 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.o8L9imxcb3/target/debug/deps rustc --crate-name serde_spanned --edition=2021 /tmp/tmp.o8L9imxcb3/registry/serde_spanned-0.6.7/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 '--warn=clippy::zero_sized_map_values' '--warn=clippy::wildcard_imports' '--warn=clippy::verbose_file_reads' --warn=unused_qualifications --warn=unused_macro_rules --warn=unused_lifetimes --warn=unsafe_op_in_unsafe_fn --warn=unreachable_pub '--warn=clippy::trait_duplication_in_bounds' '--warn=clippy::todo' '--warn=clippy::string_to_string' '--warn=clippy::string_lit_as_bytes' '--warn=clippy::string_add_assign' '--warn=clippy::string_add' '--warn=clippy::str_to_string' '--warn=clippy::single_match_else' '--warn=clippy::semicolon_if_nothing_returned' '--warn=clippy::self_named_module_files' '--warn=clippy::same_functions_in_if_condition' --warn=rust_2018_idioms '--warn=clippy::rest_pat_in_fully_bound_structs' '--warn=clippy::ref_option_ref' '--warn=clippy::redundant_feature_names' '--warn=clippy::rc_mutex' '--warn=clippy::ptr_as_ptr' '--warn=clippy::path_buf_push_overwrite' '--warn=clippy::negative_feature_names' '--warn=clippy::needless_for_each' '--warn=clippy::needless_continue' '--warn=clippy::mutex_integer' '--warn=clippy::mem_forget' '--warn=clippy::match_wildcard_for_single_variants' '--warn=clippy::macro_use_imports' '--warn=clippy::lossy_float_literal' '--warn=clippy::linkedlist' '--allow=clippy::let_and_return' '--warn=clippy::large_types_passed_by_value' '--warn=clippy::large_stack_arrays' '--warn=clippy::large_digit_groups' '--warn=clippy::items_after_statements' '--warn=clippy::invalid_upcast_comparisons' '--warn=clippy::infinite_loop' '--warn=clippy::inefficient_to_string' '--warn=clippy::inconsistent_struct_constructor' '--warn=clippy::imprecise_flops' '--warn=clippy::implicit_clone' '--allow=clippy::if_same_then_else' '--warn=clippy::from_iter_instead_of_collect' '--warn=clippy::fn_params_excessive_bools' '--warn=clippy::float_cmp_const' '--warn=clippy::flat_map_option' '--warn=clippy::filter_map_next' '--warn=clippy::fallible_impl_from' '--warn=clippy::explicit_into_iter_loop' '--warn=clippy::explicit_deref_methods' '--warn=clippy::expl_impl_clone_on_copy' '--warn=clippy::enum_glob_use' '--warn=clippy::empty_enum' '--warn=clippy::doc_markdown' '--warn=clippy::debug_assert_with_mut_call' '--warn=clippy::dbg_macro' '--warn=clippy::create_dir' '--allow=clippy::collapsible_else_if' '--warn=clippy::checked_conversions' '--allow=clippy::branches_sharing_code' '--allow=clippy::bool_assert_comparison' --cfg 'feature="serde"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("serde"))' -C metadata=bb6bf82fb8b7e3e2 -C extra-filename=-bb6bf82fb8b7e3e2 --out-dir /tmp/tmp.o8L9imxcb3/target/debug/deps -L dependency=/tmp/tmp.o8L9imxcb3/target/debug/deps --extern serde=/tmp/tmp.o8L9imxcb3/target/debug/deps/libserde-64c0851ac56a0ce1.rmeta --cap-lints warn` 337s Compiling winnow v0.6.18 337s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=winnow CARGO_MANIFEST_DIR=/tmp/tmp.o8L9imxcb3/registry/winnow-0.6.18 CARGO_MANIFEST_PATH=/tmp/tmp.o8L9imxcb3/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.o8L9imxcb3/target/debug/deps rustc --crate-name winnow --edition=2021 /tmp/tmp.o8L9imxcb3/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.o8L9imxcb3/target/debug/deps -L dependency=/tmp/tmp.o8L9imxcb3/target/debug/deps --cap-lints warn` 337s warning: unexpected `cfg` condition value: `debug` 337s --> /tmp/tmp.o8L9imxcb3/registry/winnow-0.6.18/src/combinator/debug/mod.rs:1:13 337s | 337s 1 | #![cfg_attr(feature = "debug", allow(clippy::std_instead_of_core))] 337s | ^^^^^^^^^^^^^^^^^ 337s | 337s = note: expected values for `feature` are: `alloc`, `default`, `simd`, `std`, `unstable-doc`, and `unstable-recover` 337s = help: consider adding `debug` as a feature in `Cargo.toml` 337s = note: see for more information about checking conditional configuration 337s = note: `#[warn(unexpected_cfgs)]` on by default 337s 337s warning: unexpected `cfg` condition value: `debug` 337s --> /tmp/tmp.o8L9imxcb3/registry/winnow-0.6.18/src/combinator/debug/mod.rs:3:7 337s | 337s 3 | #[cfg(feature = "debug")] 337s | ^^^^^^^^^^^^^^^^^ 337s | 337s = note: expected values for `feature` are: `alloc`, `default`, `simd`, `std`, `unstable-doc`, and `unstable-recover` 337s = help: consider adding `debug` as a feature in `Cargo.toml` 337s = note: see for more information about checking conditional configuration 337s 337s warning: unexpected `cfg` condition value: `debug` 337s --> /tmp/tmp.o8L9imxcb3/registry/winnow-0.6.18/src/combinator/debug/mod.rs:37:16 337s | 337s 37 | #[cfg_attr(not(feature = "debug"), allow(unused_variables))] 337s | ^^^^^^^^^^^^^^^^^ 337s | 337s = note: expected values for `feature` are: `alloc`, `default`, `simd`, `std`, `unstable-doc`, and `unstable-recover` 337s = help: consider adding `debug` as a feature in `Cargo.toml` 337s = note: see for more information about checking conditional configuration 337s 337s warning: unexpected `cfg` condition value: `debug` 337s --> /tmp/tmp.o8L9imxcb3/registry/winnow-0.6.18/src/combinator/debug/mod.rs:38:16 337s | 337s 38 | #[cfg_attr(not(feature = "debug"), allow(unused_mut))] 337s | ^^^^^^^^^^^^^^^^^ 337s | 337s = note: expected values for `feature` are: `alloc`, `default`, `simd`, `std`, `unstable-doc`, and `unstable-recover` 337s = help: consider adding `debug` as a feature in `Cargo.toml` 337s = note: see for more information about checking conditional configuration 337s 337s warning: unexpected `cfg` condition value: `debug` 337s --> /tmp/tmp.o8L9imxcb3/registry/winnow-0.6.18/src/combinator/debug/mod.rs:39:16 337s | 337s 39 | #[cfg_attr(not(feature = "debug"), inline(always))] 337s | ^^^^^^^^^^^^^^^^^ 337s | 337s = note: expected values for `feature` are: `alloc`, `default`, `simd`, `std`, `unstable-doc`, and `unstable-recover` 337s = help: consider adding `debug` as a feature in `Cargo.toml` 337s = note: see for more information about checking conditional configuration 337s 337s warning: unexpected `cfg` condition value: `debug` 337s --> /tmp/tmp.o8L9imxcb3/registry/winnow-0.6.18/src/combinator/debug/mod.rs:54:16 337s | 337s 54 | #[cfg_attr(not(feature = "debug"), allow(unused_variables))] 337s | ^^^^^^^^^^^^^^^^^ 337s | 337s = note: expected values for `feature` are: `alloc`, `default`, `simd`, `std`, `unstable-doc`, and `unstable-recover` 337s = help: consider adding `debug` as a feature in `Cargo.toml` 337s = note: see for more information about checking conditional configuration 337s 337s warning: unexpected `cfg` condition value: `debug` 337s --> /tmp/tmp.o8L9imxcb3/registry/winnow-0.6.18/src/combinator/debug/mod.rs:79:7 337s | 337s 79 | #[cfg(feature = "debug")] 337s | ^^^^^^^^^^^^^^^^^ 337s | 337s = note: expected values for `feature` are: `alloc`, `default`, `simd`, `std`, `unstable-doc`, and `unstable-recover` 337s = help: consider adding `debug` as a feature in `Cargo.toml` 337s = note: see for more information about checking conditional configuration 337s 337s warning: unexpected `cfg` condition value: `debug` 337s --> /tmp/tmp.o8L9imxcb3/registry/winnow-0.6.18/src/combinator/debug/mod.rs:44:11 337s | 337s 44 | #[cfg(feature = "debug")] 337s | ^^^^^^^^^^^^^^^^^ 337s | 337s = note: expected values for `feature` are: `alloc`, `default`, `simd`, `std`, `unstable-doc`, and `unstable-recover` 337s = help: consider adding `debug` as a feature in `Cargo.toml` 337s = note: see for more information about checking conditional configuration 337s 337s warning: unexpected `cfg` condition value: `debug` 337s --> /tmp/tmp.o8L9imxcb3/registry/winnow-0.6.18/src/combinator/debug/mod.rs:48:15 337s | 337s 48 | #[cfg(not(feature = "debug"))] 337s | ^^^^^^^^^^^^^^^^^ 337s | 337s = note: expected values for `feature` are: `alloc`, `default`, `simd`, `std`, `unstable-doc`, and `unstable-recover` 337s = help: consider adding `debug` as a feature in `Cargo.toml` 337s = note: see for more information about checking conditional configuration 337s 337s warning: unexpected `cfg` condition value: `debug` 337s --> /tmp/tmp.o8L9imxcb3/registry/winnow-0.6.18/src/combinator/debug/mod.rs:59:11 337s | 337s 59 | #[cfg(feature = "debug")] 337s | ^^^^^^^^^^^^^^^^^ 337s | 337s = note: expected values for `feature` are: `alloc`, `default`, `simd`, `std`, `unstable-doc`, and `unstable-recover` 337s = help: consider adding `debug` as a feature in `Cargo.toml` 337s = note: see for more information about checking conditional configuration 337s 338s warning: `winnow` (lib) generated 10 warnings 338s Compiling toml_edit v0.22.20 338s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=toml_edit CARGO_MANIFEST_DIR=/tmp/tmp.o8L9imxcb3/registry/toml_edit-0.22.20 CARGO_MANIFEST_PATH=/tmp/tmp.o8L9imxcb3/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.o8L9imxcb3/target/debug/deps rustc --crate-name toml_edit --edition=2021 /tmp/tmp.o8L9imxcb3/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"' --cfg 'feature="serde"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "display", "parse", "perf", "serde", "unbounded"))' -C metadata=16e4204886ae364a -C extra-filename=-16e4204886ae364a --out-dir /tmp/tmp.o8L9imxcb3/target/debug/deps -L dependency=/tmp/tmp.o8L9imxcb3/target/debug/deps --extern indexmap=/tmp/tmp.o8L9imxcb3/target/debug/deps/libindexmap-1e18ac9265fbd6ac.rmeta --extern serde=/tmp/tmp.o8L9imxcb3/target/debug/deps/libserde-64c0851ac56a0ce1.rmeta --extern serde_spanned=/tmp/tmp.o8L9imxcb3/target/debug/deps/libserde_spanned-bb6bf82fb8b7e3e2.rmeta --extern toml_datetime=/tmp/tmp.o8L9imxcb3/target/debug/deps/libtoml_datetime-f8a60bc8f4facc64.rmeta --extern winnow=/tmp/tmp.o8L9imxcb3/target/debug/deps/libwinnow-0f17435733cfc3dc.rmeta --cap-lints warn` 340s Compiling target-lexicon v0.12.14 340s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.o8L9imxcb3/registry/target-lexicon-0.12.14 CARGO_MANIFEST_PATH=/tmp/tmp.o8L9imxcb3/registry/target-lexicon-0.12.14/Cargo.toml CARGO_PKG_AUTHORS='Dan Gohman ' CARGO_PKG_DESCRIPTION='Targeting utilities for compilers and related tools' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 WITH LLVM-exception' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=target-lexicon CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/bytecodealliance/target-lexicon' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.12.14 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=12 CARGO_PKG_VERSION_PATCH=14 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.o8L9imxcb3/target/debug/deps rustc --crate-name build_script_build --edition=2018 /tmp/tmp.o8L9imxcb3/registry/target-lexicon-0.12.14/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"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("arch_zkasm", "default", "serde", "serde_support", "std"))' -C metadata=25364d17e185c4be -C extra-filename=-25364d17e185c4be --out-dir /tmp/tmp.o8L9imxcb3/target/debug/build/target-lexicon-25364d17e185c4be -L dependency=/tmp/tmp.o8L9imxcb3/target/debug/deps --cap-lints warn` 340s warning: unexpected `cfg` condition value: `rust_1_40` 340s --> /tmp/tmp.o8L9imxcb3/registry/target-lexicon-0.12.14/src/data_model.rs:43:12 340s | 340s 43 | #[cfg_attr(feature = "rust_1_40", non_exhaustive)] 340s | ^^^^^^^^^^^^^^^^^^^^^ 340s | 340s = note: expected values for `feature` are: `arch_zkasm`, `default`, `serde`, `serde_support`, and `std` 340s = help: consider adding `rust_1_40` as a feature in `Cargo.toml` 340s = note: see for more information about checking conditional configuration 340s = note: `#[warn(unexpected_cfgs)]` on by default 340s 340s warning: unexpected `cfg` condition value: `rust_1_40` 340s --> /tmp/tmp.o8L9imxcb3/registry/target-lexicon-0.12.14/src/triple.rs:55:12 340s | 340s 55 | #[cfg_attr(feature = "rust_1_40", non_exhaustive)] 340s | ^^^^^^^^^^^^^^^^^^^^^ 340s | 340s = note: expected values for `feature` are: `arch_zkasm`, `default`, `serde`, `serde_support`, and `std` 340s = help: consider adding `rust_1_40` as a feature in `Cargo.toml` 340s = note: see for more information about checking conditional configuration 340s 340s warning: unexpected `cfg` condition value: `rust_1_40` 340s --> /tmp/tmp.o8L9imxcb3/registry/target-lexicon-0.12.14/src/targets.rs:14:12 340s | 340s 14 | #[cfg_attr(feature = "rust_1_40", non_exhaustive)] 340s | ^^^^^^^^^^^^^^^^^^^^^ 340s | 340s = note: expected values for `feature` are: `arch_zkasm`, `default`, `serde`, `serde_support`, and `std` 340s = help: consider adding `rust_1_40` as a feature in `Cargo.toml` 340s = note: see for more information about checking conditional configuration 340s 340s warning: unexpected `cfg` condition value: `rust_1_40` 340s --> /tmp/tmp.o8L9imxcb3/registry/target-lexicon-0.12.14/src/targets.rs:57:12 340s | 340s 57 | #[cfg_attr(feature = "rust_1_40", non_exhaustive)] 340s | ^^^^^^^^^^^^^^^^^^^^^ 340s | 340s = note: expected values for `feature` are: `arch_zkasm`, `default`, `serde`, `serde_support`, and `std` 340s = help: consider adding `rust_1_40` as a feature in `Cargo.toml` 340s = note: see for more information about checking conditional configuration 340s 340s warning: unexpected `cfg` condition value: `rust_1_40` 340s --> /tmp/tmp.o8L9imxcb3/registry/target-lexicon-0.12.14/src/targets.rs:107:12 340s | 340s 107 | #[cfg_attr(feature = "rust_1_40", non_exhaustive)] 340s | ^^^^^^^^^^^^^^^^^^^^^ 340s | 340s = note: expected values for `feature` are: `arch_zkasm`, `default`, `serde`, `serde_support`, and `std` 340s = help: consider adding `rust_1_40` as a feature in `Cargo.toml` 340s = note: see for more information about checking conditional configuration 340s 340s warning: unexpected `cfg` condition value: `rust_1_40` 340s --> /tmp/tmp.o8L9imxcb3/registry/target-lexicon-0.12.14/src/targets.rs:386:12 340s | 340s 386 | #[cfg_attr(feature = "rust_1_40", non_exhaustive)] 340s | ^^^^^^^^^^^^^^^^^^^^^ 340s | 340s = note: expected values for `feature` are: `arch_zkasm`, `default`, `serde`, `serde_support`, and `std` 340s = help: consider adding `rust_1_40` as a feature in `Cargo.toml` 340s = note: see for more information about checking conditional configuration 340s 340s warning: unexpected `cfg` condition value: `rust_1_40` 340s --> /tmp/tmp.o8L9imxcb3/registry/target-lexicon-0.12.14/src/targets.rs:407:12 340s | 340s 407 | #[cfg_attr(feature = "rust_1_40", non_exhaustive)] 340s | ^^^^^^^^^^^^^^^^^^^^^ 340s | 340s = note: expected values for `feature` are: `arch_zkasm`, `default`, `serde`, `serde_support`, and `std` 340s = help: consider adding `rust_1_40` as a feature in `Cargo.toml` 340s = note: see for more information about checking conditional configuration 340s 340s warning: unexpected `cfg` condition value: `rust_1_40` 340s --> /tmp/tmp.o8L9imxcb3/registry/target-lexicon-0.12.14/src/targets.rs:436:12 340s | 340s 436 | #[cfg_attr(feature = "rust_1_40", non_exhaustive)] 340s | ^^^^^^^^^^^^^^^^^^^^^ 340s | 340s = note: expected values for `feature` are: `arch_zkasm`, `default`, `serde`, `serde_support`, and `std` 340s = help: consider adding `rust_1_40` as a feature in `Cargo.toml` 340s = note: see for more information about checking conditional configuration 340s 340s warning: unexpected `cfg` condition value: `rust_1_40` 340s --> /tmp/tmp.o8L9imxcb3/registry/target-lexicon-0.12.14/src/targets.rs:459:12 340s | 340s 459 | #[cfg_attr(feature = "rust_1_40", non_exhaustive)] 340s | ^^^^^^^^^^^^^^^^^^^^^ 340s | 340s = note: expected values for `feature` are: `arch_zkasm`, `default`, `serde`, `serde_support`, and `std` 340s = help: consider adding `rust_1_40` as a feature in `Cargo.toml` 340s = note: see for more information about checking conditional configuration 340s 340s warning: unexpected `cfg` condition value: `rust_1_40` 340s --> /tmp/tmp.o8L9imxcb3/registry/target-lexicon-0.12.14/src/targets.rs:482:12 340s | 340s 482 | #[cfg_attr(feature = "rust_1_40", non_exhaustive)] 340s | ^^^^^^^^^^^^^^^^^^^^^ 340s | 340s = note: expected values for `feature` are: `arch_zkasm`, `default`, `serde`, `serde_support`, and `std` 340s = help: consider adding `rust_1_40` as a feature in `Cargo.toml` 340s = note: see for more information about checking conditional configuration 340s 340s warning: unexpected `cfg` condition value: `rust_1_40` 340s --> /tmp/tmp.o8L9imxcb3/registry/target-lexicon-0.12.14/src/targets.rs:507:12 340s | 340s 507 | #[cfg_attr(feature = "rust_1_40", non_exhaustive)] 340s | ^^^^^^^^^^^^^^^^^^^^^ 340s | 340s = note: expected values for `feature` are: `arch_zkasm`, `default`, `serde`, `serde_support`, and `std` 340s = help: consider adding `rust_1_40` as a feature in `Cargo.toml` 340s = note: see for more information about checking conditional configuration 340s 340s warning: unexpected `cfg` condition value: `rust_1_40` 340s --> /tmp/tmp.o8L9imxcb3/registry/target-lexicon-0.12.14/src/targets.rs:566:12 340s | 340s 566 | #[cfg_attr(feature = "rust_1_40", non_exhaustive)] 340s | ^^^^^^^^^^^^^^^^^^^^^ 340s | 340s = note: expected values for `feature` are: `arch_zkasm`, `default`, `serde`, `serde_support`, and `std` 340s = help: consider adding `rust_1_40` as a feature in `Cargo.toml` 340s = note: see for more information about checking conditional configuration 340s 340s warning: unexpected `cfg` condition value: `rust_1_40` 340s --> /tmp/tmp.o8L9imxcb3/registry/target-lexicon-0.12.14/src/targets.rs:624:12 340s | 340s 624 | #[cfg_attr(feature = "rust_1_40", non_exhaustive)] 340s | ^^^^^^^^^^^^^^^^^^^^^ 340s | 340s = note: expected values for `feature` are: `arch_zkasm`, `default`, `serde`, `serde_support`, and `std` 340s = help: consider adding `rust_1_40` as a feature in `Cargo.toml` 340s = note: see for more information about checking conditional configuration 340s 340s warning: unexpected `cfg` condition value: `rust_1_40` 340s --> /tmp/tmp.o8L9imxcb3/registry/target-lexicon-0.12.14/src/targets.rs:719:12 340s | 340s 719 | #[cfg_attr(feature = "rust_1_40", non_exhaustive)] 340s | ^^^^^^^^^^^^^^^^^^^^^ 340s | 340s = note: expected values for `feature` are: `arch_zkasm`, `default`, `serde`, `serde_support`, and `std` 340s = help: consider adding `rust_1_40` as a feature in `Cargo.toml` 340s = note: see for more information about checking conditional configuration 340s 340s warning: unexpected `cfg` condition value: `rust_1_40` 340s --> /tmp/tmp.o8L9imxcb3/registry/target-lexicon-0.12.14/src/targets.rs:801:12 340s | 340s 801 | #[cfg_attr(feature = "rust_1_40", non_exhaustive)] 340s | ^^^^^^^^^^^^^^^^^^^^^ 340s | 340s = note: expected values for `feature` are: `arch_zkasm`, `default`, `serde`, `serde_support`, and `std` 340s = help: consider adding `rust_1_40` as a feature in `Cargo.toml` 340s = note: see for more information about checking conditional configuration 340s 340s warning: `target-lexicon` (build script) generated 15 warnings 340s 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_MANIFEST_DIR=/tmp/tmp.o8L9imxcb3/registry/target-lexicon-0.12.14 CARGO_MANIFEST_PATH=/tmp/tmp.o8L9imxcb3/registry/target-lexicon-0.12.14/Cargo.toml CARGO_PKG_AUTHORS='Dan Gohman ' CARGO_PKG_DESCRIPTION='Targeting utilities for compilers and related tools' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 WITH LLVM-exception' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=target-lexicon CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/bytecodealliance/target-lexicon' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.12.14 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=12 CARGO_PKG_VERSION_PATCH=14 CARGO_PKG_VERSION_PRE='' DEBUG=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.o8L9imxcb3/target/debug/deps:/tmp/tmp.o8L9imxcb3/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.o8L9imxcb3/target/debug/build/target-lexicon-bcd17a2af3ef410c/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.o8L9imxcb3/target/debug/build/target-lexicon-25364d17e185c4be/build-script-build` 340s [target-lexicon 0.12.14] cargo:rustc-cfg=feature="rust_1_40" 340s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=target_lexicon CARGO_MANIFEST_DIR=/tmp/tmp.o8L9imxcb3/registry/target-lexicon-0.12.14 CARGO_MANIFEST_PATH=/tmp/tmp.o8L9imxcb3/registry/target-lexicon-0.12.14/Cargo.toml CARGO_PKG_AUTHORS='Dan Gohman ' CARGO_PKG_DESCRIPTION='Targeting utilities for compilers and related tools' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 WITH LLVM-exception' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=target-lexicon CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/bytecodealliance/target-lexicon' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.12.14 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=12 CARGO_PKG_VERSION_PATCH=14 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.o8L9imxcb3/target/debug/deps OUT_DIR=/tmp/tmp.o8L9imxcb3/target/debug/build/target-lexicon-bcd17a2af3ef410c/out rustc --crate-name target_lexicon --edition=2018 /tmp/tmp.o8L9imxcb3/registry/target-lexicon-0.12.14/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("arch_zkasm", "default", "serde", "serde_support", "std"))' -C metadata=3e1fae5fd9acfad5 -C extra-filename=-3e1fae5fd9acfad5 --out-dir /tmp/tmp.o8L9imxcb3/target/debug/deps -L dependency=/tmp/tmp.o8L9imxcb3/target/debug/deps --cap-lints warn --cfg 'feature="rust_1_40"'` 341s warning: unexpected `cfg` condition value: `cargo-clippy` 341s --> /tmp/tmp.o8L9imxcb3/registry/target-lexicon-0.12.14/src/lib.rs:6:5 341s | 341s 6 | feature = "cargo-clippy", 341s | ^^^^^^^^^^^^^^^^^^^^^^^^ 341s | 341s = note: expected values for `feature` are: `arch_zkasm`, `default`, `serde`, `serde_support`, and `std` 341s = help: consider adding `cargo-clippy` as a feature in `Cargo.toml` 341s = note: see for more information about checking conditional configuration 341s = note: `#[warn(unexpected_cfgs)]` on by default 341s 341s warning: unexpected `cfg` condition value: `rust_1_40` 341s --> /tmp/tmp.o8L9imxcb3/registry/target-lexicon-0.12.14/src/data_model.rs:43:12 341s | 341s 43 | #[cfg_attr(feature = "rust_1_40", non_exhaustive)] 341s | ^^^^^^^^^^^^^^^^^^^^^ 341s | 341s = note: expected values for `feature` are: `arch_zkasm`, `default`, `serde`, `serde_support`, and `std` 341s = help: consider adding `rust_1_40` as a feature in `Cargo.toml` 341s = note: see for more information about checking conditional configuration 341s 341s warning: `target-lexicon` (lib) generated 16 warnings (14 duplicates) 341s Compiling heck v0.4.1 341s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=heck CARGO_MANIFEST_DIR=/tmp/tmp.o8L9imxcb3/registry/heck-0.4.1 CARGO_MANIFEST_PATH=/tmp/tmp.o8L9imxcb3/registry/heck-0.4.1/Cargo.toml CARGO_PKG_AUTHORS='Without Boats ' CARGO_PKG_DESCRIPTION='heck is a case conversion library.' CARGO_PKG_HOMEPAGE='https://github.com/withoutboats/heck' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=heck CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/withoutboats/heck' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.4.1 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=4 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.o8L9imxcb3/target/debug/deps rustc --crate-name heck --edition=2018 /tmp/tmp.o8L9imxcb3/registry/heck-0.4.1/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "unicode", "unicode-segmentation"))' -C metadata=780ed41701172964 -C extra-filename=-780ed41701172964 --out-dir /tmp/tmp.o8L9imxcb3/target/debug/deps -L dependency=/tmp/tmp.o8L9imxcb3/target/debug/deps --cap-lints warn` 341s Compiling smallvec v1.13.2 341s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=smallvec CARGO_MANIFEST_DIR=/tmp/tmp.o8L9imxcb3/registry/smallvec-1.13.2 CARGO_MANIFEST_PATH=/tmp/tmp.o8L9imxcb3/registry/smallvec-1.13.2/Cargo.toml CARGO_PKG_AUTHORS='The Servo Project Developers' CARGO_PKG_DESCRIPTION=''\''Small vector'\'' optimization: store up to a small number of items on the stack' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=smallvec CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/servo/rust-smallvec' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=1.13.2 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=13 CARGO_PKG_VERSION_PATCH=2 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.o8L9imxcb3/target/debug/deps rustc --crate-name smallvec --edition=2018 /tmp/tmp.o8L9imxcb3/registry/smallvec-1.13.2/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("arbitrary", "const_generics", "const_new", "debugger_visualizer", "drain_filter", "drain_keep_rest", "may_dangle", "serde", "specialization", "union", "write"))' -C metadata=f7f5371280a70ca7 -C extra-filename=-f7f5371280a70ca7 --out-dir /tmp/tmp.o8L9imxcb3/target/debug/deps -L dependency=/tmp/tmp.o8L9imxcb3/target/debug/deps --cap-lints warn` 341s Compiling cfg-expr v0.15.8 341s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=cfg_expr CARGO_MANIFEST_DIR=/tmp/tmp.o8L9imxcb3/registry/cfg-expr-0.15.8 CARGO_MANIFEST_PATH=/tmp/tmp.o8L9imxcb3/registry/cfg-expr-0.15.8/Cargo.toml CARGO_PKG_AUTHORS='Embark :Jake Shadle ' CARGO_PKG_DESCRIPTION='A parser and evaluator for Rust `cfg()` expressions.' CARGO_PKG_HOMEPAGE='https://github.com/EmbarkStudios/cfg-expr' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=cfg-expr CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/EmbarkStudios/cfg-expr' CARGO_PKG_RUST_VERSION=1.70.0 CARGO_PKG_VERSION=0.15.8 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=15 CARGO_PKG_VERSION_PATCH=8 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.o8L9imxcb3/target/debug/deps rustc --crate-name cfg_expr --edition=2021 /tmp/tmp.o8L9imxcb3/registry/cfg-expr-0.15.8/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="target-lexicon"' --cfg 'feature="targets"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "target-lexicon", "targets"))' -C metadata=4c9dfc41aae878a8 -C extra-filename=-4c9dfc41aae878a8 --out-dir /tmp/tmp.o8L9imxcb3/target/debug/deps -L dependency=/tmp/tmp.o8L9imxcb3/target/debug/deps --extern smallvec=/tmp/tmp.o8L9imxcb3/target/debug/deps/libsmallvec-f7f5371280a70ca7.rmeta --extern target_lexicon=/tmp/tmp.o8L9imxcb3/target/debug/deps/libtarget_lexicon-3e1fae5fd9acfad5.rmeta --cap-lints warn` 342s Compiling toml v0.8.19 342s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=toml CARGO_MANIFEST_DIR=/tmp/tmp.o8L9imxcb3/registry/toml-0.8.19 CARGO_MANIFEST_PATH=/tmp/tmp.o8L9imxcb3/registry/toml-0.8.19/Cargo.toml CARGO_PKG_AUTHORS='Alex Crichton ' CARGO_PKG_DESCRIPTION='A native Rust encoder and decoder of TOML-formatted files and streams. Provides 342s implementations of the standard Serialize/Deserialize traits for TOML data to 342s facilitate deserializing and serializing Rust structures. 342s ' 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 CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/toml-rs/toml' CARGO_PKG_RUST_VERSION=1.65 CARGO_PKG_VERSION=0.8.19 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=8 CARGO_PKG_VERSION_PATCH=19 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.o8L9imxcb3/target/debug/deps rustc --crate-name toml --edition=2021 /tmp/tmp.o8L9imxcb3/registry/toml-0.8.19/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --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="parse"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "display", "indexmap", "parse", "preserve_order"))' -C metadata=3dcb236086e4a66e -C extra-filename=-3dcb236086e4a66e --out-dir /tmp/tmp.o8L9imxcb3/target/debug/deps -L dependency=/tmp/tmp.o8L9imxcb3/target/debug/deps --extern serde=/tmp/tmp.o8L9imxcb3/target/debug/deps/libserde-64c0851ac56a0ce1.rmeta --extern serde_spanned=/tmp/tmp.o8L9imxcb3/target/debug/deps/libserde_spanned-bb6bf82fb8b7e3e2.rmeta --extern toml_datetime=/tmp/tmp.o8L9imxcb3/target/debug/deps/libtoml_datetime-f8a60bc8f4facc64.rmeta --extern toml_edit=/tmp/tmp.o8L9imxcb3/target/debug/deps/libtoml_edit-16e4204886ae364a.rmeta --cap-lints warn` 342s warning: unused import: `std::fmt` 342s --> /tmp/tmp.o8L9imxcb3/registry/toml-0.8.19/src/table.rs:1:5 342s | 342s 1 | use std::fmt; 342s | ^^^^^^^^ 342s | 342s = note: `#[warn(unused_imports)]` on by default 342s 342s Compiling pkg-config v0.3.31 342s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=pkg_config CARGO_MANIFEST_DIR=/tmp/tmp.o8L9imxcb3/registry/pkg-config-0.3.31 CARGO_MANIFEST_PATH=/tmp/tmp.o8L9imxcb3/registry/pkg-config-0.3.31/Cargo.toml CARGO_PKG_AUTHORS='Alex Crichton ' CARGO_PKG_DESCRIPTION='A library to run the pkg-config system tool at build time in order to be used in 342s Cargo build scripts. 342s ' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=pkg-config CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/pkg-config-rs' CARGO_PKG_RUST_VERSION=1.31 CARGO_PKG_VERSION=0.3.31 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=31 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.o8L9imxcb3/target/debug/deps rustc --crate-name pkg_config --edition=2018 /tmp/tmp.o8L9imxcb3/registry/pkg-config-0.3.31/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=f20a1c89e2145860 -C extra-filename=-f20a1c89e2145860 --out-dir /tmp/tmp.o8L9imxcb3/target/debug/deps -L dependency=/tmp/tmp.o8L9imxcb3/target/debug/deps --cap-lints warn` 342s warning: unreachable expression 342s --> /tmp/tmp.o8L9imxcb3/registry/pkg-config-0.3.31/src/lib.rs:596:9 342s | 342s 592 | return true; 342s | ----------- any code following this expression is unreachable 342s ... 342s 596 | / match self.targeted_env_var("PKG_CONFIG_ALLOW_CROSS") { 342s 597 | | // don't use pkg-config if explicitly disabled 342s 598 | | Some(ref val) if val == "0" => false, 342s 599 | | Some(_) => true, 342s ... | 342s 605 | | } 342s 606 | | } 342s | |_________^ unreachable expression 342s | 342s = note: `#[warn(unreachable_code)]` on by default 342s 342s warning: `toml` (lib) generated 1 warning 342s Compiling version-compare v0.1.1 342s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=version_compare CARGO_MANIFEST_DIR=/tmp/tmp.o8L9imxcb3/registry/version-compare-0.1.1 CARGO_MANIFEST_PATH=/tmp/tmp.o8L9imxcb3/registry/version-compare-0.1.1/Cargo.toml CARGO_PKG_AUTHORS='Tim Visee <3a4fb3964f@sinenomine.email>' CARGO_PKG_DESCRIPTION='Rust library to easily compare version numbers with no specific format, and test against various comparison operators.' CARGO_PKG_HOMEPAGE='https://timvisee.com/projects/version-compare/' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=version-compare CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://gitlab.com/timvisee/version-compare' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.1.1 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.o8L9imxcb3/target/debug/deps rustc --crate-name version_compare --edition=2018 /tmp/tmp.o8L9imxcb3/registry/version-compare-0.1.1/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=ede63bb61298945c -C extra-filename=-ede63bb61298945c --out-dir /tmp/tmp.o8L9imxcb3/target/debug/deps -L dependency=/tmp/tmp.o8L9imxcb3/target/debug/deps --cap-lints warn` 342s warning: unexpected `cfg` condition name: `tarpaulin` 342s --> /tmp/tmp.o8L9imxcb3/registry/version-compare-0.1.1/src/cmp.rs:320:12 342s | 342s 320 | #[cfg_attr(tarpaulin, skip)] 342s | ^^^^^^^^^ 342s | 342s = help: expected names are: `clippy`, `debug_assertions`, `doc`, `docsrs`, `doctest`, `feature`, `fmt_debug`, `miri`, `overflow_checks`, `panic`, `proc_macro`, `relocation_model`, `rustfmt`, `sanitize`, `sanitizer_cfi_generalize_pointers`, `sanitizer_cfi_normalize_integers`, `target_abi`, `target_arch`, `target_endian`, `target_env`, `target_family`, `target_feature`, `target_has_atomic`, `target_has_atomic_equal_alignment`, `target_has_atomic_load_store`, `target_os`, `target_pointer_width`, `target_thread_local`, `target_vendor`, `test`, `ub_checks`, `unix`, and `windows` 342s = help: consider using a Cargo feature instead 342s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 342s [lints.rust] 342s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin)'] } 342s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin)");` to the top of the `build.rs` 342s = note: see for more information about checking conditional configuration 342s = note: `#[warn(unexpected_cfgs)]` on by default 342s 342s warning: unexpected `cfg` condition name: `tarpaulin` 342s --> /tmp/tmp.o8L9imxcb3/registry/version-compare-0.1.1/src/compare.rs:66:12 342s | 342s 66 | #[cfg_attr(tarpaulin, skip)] 342s | ^^^^^^^^^ 342s | 342s = help: consider using a Cargo feature instead 342s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 342s [lints.rust] 342s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin)'] } 342s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin)");` to the top of the `build.rs` 342s = note: see for more information about checking conditional configuration 342s 342s warning: unexpected `cfg` condition name: `tarpaulin` 342s --> /tmp/tmp.o8L9imxcb3/registry/version-compare-0.1.1/src/manifest.rs:58:12 342s | 342s 58 | #[cfg_attr(tarpaulin, skip)] 342s | ^^^^^^^^^ 342s | 342s = help: consider using a Cargo feature instead 342s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 342s [lints.rust] 342s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin)'] } 342s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin)");` to the top of the `build.rs` 342s = note: see for more information about checking conditional configuration 342s 342s warning: unexpected `cfg` condition name: `tarpaulin` 342s --> /tmp/tmp.o8L9imxcb3/registry/version-compare-0.1.1/src/part.rs:34:12 342s | 342s 34 | #[cfg_attr(tarpaulin, skip)] 342s | ^^^^^^^^^ 342s | 342s = help: consider using a Cargo feature instead 342s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 342s [lints.rust] 342s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin)'] } 342s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin)");` to the top of the `build.rs` 342s = note: see for more information about checking conditional configuration 342s 342s warning: unexpected `cfg` condition name: `tarpaulin` 342s --> /tmp/tmp.o8L9imxcb3/registry/version-compare-0.1.1/src/version.rs:462:12 342s | 342s 462 | #[cfg_attr(tarpaulin, skip)] 342s | ^^^^^^^^^ 342s | 342s = help: consider using a Cargo feature instead 342s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 342s [lints.rust] 342s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin)'] } 342s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin)");` to the top of the `build.rs` 342s = note: see for more information about checking conditional configuration 342s 342s warning: `version-compare` (lib) generated 5 warnings 342s Compiling libc v0.2.169 342s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.o8L9imxcb3/registry/libc-0.2.169 CARGO_MANIFEST_PATH=/tmp/tmp.o8L9imxcb3/registry/libc-0.2.169/Cargo.toml CARGO_PKG_AUTHORS='The Rust Project Developers' CARGO_PKG_DESCRIPTION='Raw FFI bindings to platform libraries like libc. 342s ' CARGO_PKG_HOMEPAGE='https://github.com/rust-lang/libc' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=libc CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/libc' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=0.2.169 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=169 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.o8L9imxcb3/target/debug/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.o8L9imxcb3/registry/libc-0.2.169/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="extra_traits"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("align", "const-extern-fn", "default", "extra_traits", "rustc-dep-of-std", "rustc-std-workspace-core", "std", "use_std"))' -C metadata=dc781cb7c1ee5a21 -C extra-filename=-dc781cb7c1ee5a21 --out-dir /tmp/tmp.o8L9imxcb3/target/debug/build/libc-dc781cb7c1ee5a21 -L dependency=/tmp/tmp.o8L9imxcb3/target/debug/deps --cap-lints warn` 342s warning: `pkg-config` (lib) generated 1 warning 342s Compiling system-deps v7.0.2 342s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=system_deps CARGO_MANIFEST_DIR=/tmp/tmp.o8L9imxcb3/registry/system-deps-7.0.2 CARGO_MANIFEST_PATH=/tmp/tmp.o8L9imxcb3/registry/system-deps-7.0.2/Cargo.toml CARGO_PKG_AUTHORS='Guillaume Desmottes :Josh Triplett ' CARGO_PKG_DESCRIPTION='Discover and configure system dependencies from declarative dependencies in Cargo.toml' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=system-deps CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/gdesmott/system-deps' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=7.0.2 CARGO_PKG_VERSION_MAJOR=7 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=2 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.o8L9imxcb3/target/debug/deps rustc --crate-name system_deps --edition=2018 /tmp/tmp.o8L9imxcb3/registry/system-deps-7.0.2/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=df5512f70260f2a1 -C extra-filename=-df5512f70260f2a1 --out-dir /tmp/tmp.o8L9imxcb3/target/debug/deps -L dependency=/tmp/tmp.o8L9imxcb3/target/debug/deps --extern cfg_expr=/tmp/tmp.o8L9imxcb3/target/debug/deps/libcfg_expr-4c9dfc41aae878a8.rmeta --extern heck=/tmp/tmp.o8L9imxcb3/target/debug/deps/libheck-780ed41701172964.rmeta --extern pkg_config=/tmp/tmp.o8L9imxcb3/target/debug/deps/libpkg_config-f20a1c89e2145860.rmeta --extern toml=/tmp/tmp.o8L9imxcb3/target/debug/deps/libtoml-3dcb236086e4a66e.rmeta --extern version_compare=/tmp/tmp.o8L9imxcb3/target/debug/deps/libversion_compare-ede63bb61298945c.rmeta --cap-lints warn` 343s 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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0--remap-path-prefix/tmp/tmp.o8L9imxcb3/registry=/usr/share/cargo/registry-Ctarget-feature=+backchain' CARGO_FEATURE_DEFAULT=1 CARGO_FEATURE_EXTRA_TRAITS=1 CARGO_FEATURE_STD=1 CARGO_MANIFEST_DIR=/tmp/tmp.o8L9imxcb3/registry/libc-0.2.169 CARGO_MANIFEST_PATH=/tmp/tmp.o8L9imxcb3/registry/libc-0.2.169/Cargo.toml CARGO_PKG_AUTHORS='The Rust Project Developers' CARGO_PKG_DESCRIPTION='Raw FFI bindings to platform libraries like libc. 343s ' CARGO_PKG_HOMEPAGE='https://github.com/rust-lang/libc' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=libc CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/libc' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=0.2.169 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=169 CARGO_PKG_VERSION_PRE='' DEBUG=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.o8L9imxcb3/target/debug/deps:/tmp/tmp.o8L9imxcb3/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/build/libc-bd02b9c7a9cce7ac/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.o8L9imxcb3/target/debug/build/libc-dc781cb7c1ee5a21/build-script-build` 343s [libc 0.2.169] cargo:rerun-if-changed=build.rs 343s [libc 0.2.169] cargo:rerun-if-env-changed=RUST_LIBC_UNSTABLE_FREEBSD_VERSION 343s [libc 0.2.169] cargo:rustc-cfg=freebsd11 343s [libc 0.2.169] cargo:rustc-cfg=libc_const_extern_fn 343s [libc 0.2.169] cargo:rustc-check-cfg=cfg(emscripten_new_stat_abi) 343s [libc 0.2.169] cargo:rustc-check-cfg=cfg(espidf_time32) 343s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd10) 343s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd11) 343s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd12) 343s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd13) 343s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd14) 343s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd15) 343s [libc 0.2.169] cargo:rustc-check-cfg=cfg(gnu_time64_abi) 343s [libc 0.2.169] cargo:rustc-check-cfg=cfg(libc_const_extern_fn) 343s [libc 0.2.169] cargo:rustc-check-cfg=cfg(libc_deny_warnings) 343s [libc 0.2.169] cargo:rustc-check-cfg=cfg(libc_thread_local) 343s [libc 0.2.169] cargo:rustc-check-cfg=cfg(libc_ctest) 343s [libc 0.2.169] cargo:rustc-check-cfg=cfg(target_os,values("switch","aix","ohos","hurd","rtems","visionos","nuttx")) 343s [libc 0.2.169] cargo:rustc-check-cfg=cfg(target_env,values("illumos","wasi","aix","ohos")) 343s [libc 0.2.169] cargo:rustc-check-cfg=cfg(target_arch,values("loongarch64","mips32r6","mips64r6","csky")) 343s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=libc CARGO_MANIFEST_DIR=/tmp/tmp.o8L9imxcb3/registry/libc-0.2.169 CARGO_MANIFEST_PATH=/tmp/tmp.o8L9imxcb3/registry/libc-0.2.169/Cargo.toml CARGO_PKG_AUTHORS='The Rust Project Developers' CARGO_PKG_DESCRIPTION='Raw FFI bindings to platform libraries like libc. 343s ' CARGO_PKG_HOMEPAGE='https://github.com/rust-lang/libc' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=libc CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/libc' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=0.2.169 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=169 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.o8L9imxcb3/target/debug/deps OUT_DIR=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/build/libc-bd02b9c7a9cce7ac/out rustc --crate-name libc --edition=2021 /tmp/tmp.o8L9imxcb3/registry/libc-0.2.169/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="extra_traits"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("align", "const-extern-fn", "default", "extra_traits", "rustc-dep-of-std", "rustc-std-workspace-core", "std", "use_std"))' -C metadata=cf2521928ac070dc -C extra-filename=-cf2521928ac070dc --out-dir /tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.o8L9imxcb3/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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.o8L9imxcb3/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain --cfg freebsd11 --cfg libc_const_extern_fn --check-cfg 'cfg(emscripten_new_stat_abi)' --check-cfg 'cfg(espidf_time32)' --check-cfg 'cfg(freebsd10)' --check-cfg 'cfg(freebsd11)' --check-cfg 'cfg(freebsd12)' --check-cfg 'cfg(freebsd13)' --check-cfg 'cfg(freebsd14)' --check-cfg 'cfg(freebsd15)' --check-cfg 'cfg(gnu_time64_abi)' --check-cfg 'cfg(libc_const_extern_fn)' --check-cfg 'cfg(libc_deny_warnings)' --check-cfg 'cfg(libc_thread_local)' --check-cfg 'cfg(libc_ctest)' --check-cfg 'cfg(target_os,values("switch","aix","ohos","hurd","rtems","visionos","nuttx"))' --check-cfg 'cfg(target_env,values("illumos","wasi","aix","ohos"))' --check-cfg 'cfg(target_arch,values("loongarch64","mips32r6","mips64r6","csky"))'` 343s warning: unused import: `crate::ntptimeval` 343s --> /usr/share/cargo/registry/libc-0.2.169/src/unix/linux_like/linux/gnu/b64/mod.rs:5:5 343s | 343s 5 | use crate::ntptimeval; 343s | ^^^^^^^^^^^^^^^^^ 343s | 343s = note: `#[warn(unused_imports)]` on by default 343s 344s Compiling autocfg v1.1.0 344s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=autocfg CARGO_MANIFEST_DIR=/tmp/tmp.o8L9imxcb3/registry/autocfg-1.1.0 CARGO_MANIFEST_PATH=/tmp/tmp.o8L9imxcb3/registry/autocfg-1.1.0/Cargo.toml CARGO_PKG_AUTHORS='Josh Stone ' CARGO_PKG_DESCRIPTION='Automatic cfg for Rust compiler features' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=autocfg CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/cuviper/autocfg' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=1.1.0 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.o8L9imxcb3/target/debug/deps rustc --crate-name autocfg --edition=2015 /tmp/tmp.o8L9imxcb3/registry/autocfg-1.1.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=9ebcd9511383083c -C extra-filename=-9ebcd9511383083c --out-dir /tmp/tmp.o8L9imxcb3/target/debug/deps -L dependency=/tmp/tmp.o8L9imxcb3/target/debug/deps --cap-lints warn` 344s Compiling pin-project-lite v0.2.13 344s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=pin_project_lite CARGO_MANIFEST_DIR=/tmp/tmp.o8L9imxcb3/registry/pin-project-lite-0.2.13 CARGO_MANIFEST_PATH=/tmp/tmp.o8L9imxcb3/registry/pin-project-lite-0.2.13/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='A lightweight version of pin-project written with declarative macros. 344s ' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=pin-project-lite CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/taiki-e/pin-project-lite' CARGO_PKG_RUST_VERSION=1.37 CARGO_PKG_VERSION=0.2.13 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=13 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.o8L9imxcb3/target/debug/deps rustc --crate-name pin_project_lite --edition=2018 /tmp/tmp.o8L9imxcb3/registry/pin-project-lite-0.2.13/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=5dc815523e98d889 -C extra-filename=-5dc815523e98d889 --out-dir /tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.o8L9imxcb3/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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.o8L9imxcb3/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 344s warning: unstable feature specified for `-Ctarget-feature`: `backchain` 344s | 344s = note: this feature is not stably supported; its behavior can change in the future 344s 344s warning: `pin-project-lite` (lib) generated 1 warning 344s Compiling proc-macro-crate v3.2.0 344s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=proc_macro_crate CARGO_MANIFEST_DIR=/tmp/tmp.o8L9imxcb3/registry/proc-macro-crate-3.2.0 CARGO_MANIFEST_PATH=/tmp/tmp.o8L9imxcb3/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 344s ' 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.o8L9imxcb3/target/debug/deps rustc --crate-name proc_macro_crate --edition=2021 /tmp/tmp.o8L9imxcb3/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=76b8c9685ffc2762 -C extra-filename=-76b8c9685ffc2762 --out-dir /tmp/tmp.o8L9imxcb3/target/debug/deps -L dependency=/tmp/tmp.o8L9imxcb3/target/debug/deps --extern toml_edit=/tmp/tmp.o8L9imxcb3/target/debug/deps/libtoml_edit-16e4204886ae364a.rmeta --cap-lints warn` 344s warning: `libc` (lib) generated 2 warnings (1 duplicate) 344s Compiling futures-core v0.3.31 344s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=futures_core CARGO_MANIFEST_DIR=/tmp/tmp.o8L9imxcb3/registry/futures-core-0.3.31 CARGO_MANIFEST_PATH=/tmp/tmp.o8L9imxcb3/registry/futures-core-0.3.31/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='The core traits and types in for the `futures` library. 344s ' CARGO_PKG_HOMEPAGE='https://rust-lang.github.io/futures-rs' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=futures-core CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/futures-rs' CARGO_PKG_RUST_VERSION=1.36 CARGO_PKG_VERSION=0.3.31 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=31 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.o8L9imxcb3/target/debug/deps rustc --crate-name futures_core --edition=2018 /tmp/tmp.o8L9imxcb3/registry/futures-core-0.3.31/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --warn=unreachable_pub --warn=unexpected_cfgs --warn=single_use_lifetimes --warn=rust_2018_idioms --warn=missing_debug_implementations --check-cfg 'cfg(futures_sanitizer)' --cfg 'feature="alloc"' --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "cfg-target-has-atomic", "default", "portable-atomic", "std", "unstable"))' -C metadata=8d305950da6bf5c8 -C extra-filename=-8d305950da6bf5c8 --out-dir /tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.o8L9imxcb3/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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.o8L9imxcb3/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 344s warning: `futures-core` (lib) generated 1 warning (1 duplicate) 344s Compiling slab v0.4.9 344s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.o8L9imxcb3/registry/slab-0.4.9 CARGO_MANIFEST_PATH=/tmp/tmp.o8L9imxcb3/registry/slab-0.4.9/Cargo.toml CARGO_PKG_AUTHORS='Carl Lerche ' CARGO_PKG_DESCRIPTION='Pre-allocated storage for a uniform data type' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=slab CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/tokio-rs/slab' CARGO_PKG_RUST_VERSION=1.31 CARGO_PKG_VERSION=0.4.9 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=4 CARGO_PKG_VERSION_PATCH=9 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.o8L9imxcb3/target/debug/deps rustc --crate-name build_script_build --edition=2018 /tmp/tmp.o8L9imxcb3/registry/slab-0.4.9/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "serde", "std"))' -C metadata=95cba3e02497b263 -C extra-filename=-95cba3e02497b263 --out-dir /tmp/tmp.o8L9imxcb3/target/debug/build/slab-95cba3e02497b263 -L dependency=/tmp/tmp.o8L9imxcb3/target/debug/deps --extern autocfg=/tmp/tmp.o8L9imxcb3/target/debug/deps/libautocfg-9ebcd9511383083c.rlib --cap-lints warn` 345s Compiling glib-sys v0.20.7 345s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.o8L9imxcb3/registry/glib-sys-0.20.7 CARGO_MANIFEST_PATH=/tmp/tmp.o8L9imxcb3/registry/glib-sys-0.20.7/Cargo.toml CARGO_PKG_AUTHORS='The gtk-rs Project Developers' CARGO_PKG_DESCRIPTION='FFI bindings to libglib-2.0' CARGO_PKG_HOMEPAGE='https://gtk-rs.org/' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=glib-sys CARGO_PKG_README='' CARGO_PKG_REPOSITORY='https://github.com/gtk-rs/gtk-rs-core' CARGO_PKG_RUST_VERSION=1.70 CARGO_PKG_VERSION=0.20.7 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=20 CARGO_PKG_VERSION_PATCH=7 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.o8L9imxcb3/target/debug/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.o8L9imxcb3/registry/glib-sys-0.20.7/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("v2_58", "v2_60", "v2_62", "v2_64", "v2_66", "v2_68", "v2_70", "v2_72", "v2_74", "v2_76", "v2_78", "v2_80", "v2_82", "v2_84"))' -C metadata=e76b494fc2db9ea9 -C extra-filename=-e76b494fc2db9ea9 --out-dir /tmp/tmp.o8L9imxcb3/target/debug/build/glib-sys-e76b494fc2db9ea9 -L dependency=/tmp/tmp.o8L9imxcb3/target/debug/deps --extern system_deps=/tmp/tmp.o8L9imxcb3/target/debug/deps/libsystem_deps-df5512f70260f2a1.rlib --cap-lints warn` 345s Compiling typenum v1.17.0 345s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_main CARGO_MANIFEST_DIR=/tmp/tmp.o8L9imxcb3/registry/typenum-1.17.0 CARGO_MANIFEST_PATH=/tmp/tmp.o8L9imxcb3/registry/typenum-1.17.0/Cargo.toml CARGO_PKG_AUTHORS='Paho Lurie-Gregg :Andre Bogus ' CARGO_PKG_DESCRIPTION='Typenum is a Rust library for type-level numbers evaluated at 345s compile time. It currently supports bits, unsigned integers, and signed 345s integers. It also provides a type-level array of type-level numbers, but its 345s implementation is incomplete.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=typenum CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/paholg/typenum' CARGO_PKG_RUST_VERSION=1.37.0 CARGO_PKG_VERSION=1.17.0 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=17 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.o8L9imxcb3/target/debug/deps rustc --crate-name build_script_main --edition=2018 /tmp/tmp.o8L9imxcb3/registry/typenum-1.17.0/build/main.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("const-generics", "force_unix_path_separator", "i128", "no_std", "strict"))' -C metadata=ef2812a6bded5202 -C extra-filename=-ef2812a6bded5202 --out-dir /tmp/tmp.o8L9imxcb3/target/debug/build/typenum-ef2812a6bded5202 -L dependency=/tmp/tmp.o8L9imxcb3/target/debug/deps --cap-lints warn` 345s Compiling version_check v0.9.5 345s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=version_check CARGO_MANIFEST_DIR=/tmp/tmp.o8L9imxcb3/registry/version_check-0.9.5 CARGO_MANIFEST_PATH=/tmp/tmp.o8L9imxcb3/registry/version_check-0.9.5/Cargo.toml CARGO_PKG_AUTHORS='Sergio Benitez ' CARGO_PKG_DESCRIPTION='Tiny crate to check the version of the installed/running rustc.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=version_check CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/SergioBenitez/version_check' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.9.5 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=9 CARGO_PKG_VERSION_PATCH=5 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.o8L9imxcb3/target/debug/deps rustc --crate-name version_check --edition=2015 /tmp/tmp.o8L9imxcb3/registry/version_check-0.9.5/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=20e83cdf64ec3211 -C extra-filename=-20e83cdf64ec3211 --out-dir /tmp/tmp.o8L9imxcb3/target/debug/deps -L dependency=/tmp/tmp.o8L9imxcb3/target/debug/deps --cap-lints warn` 345s Compiling generic-array v0.14.7 345s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.o8L9imxcb3/registry/generic-array-0.14.7 CARGO_MANIFEST_PATH=/tmp/tmp.o8L9imxcb3/registry/generic-array-0.14.7/Cargo.toml CARGO_PKG_AUTHORS='Bartłomiej Kamiński :Aaron Trent ' CARGO_PKG_DESCRIPTION='Generic types implementing functionality of arrays' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=generic-array CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/fizyk20/generic-array.git' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.14.7 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=14 CARGO_PKG_VERSION_PATCH=7 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.o8L9imxcb3/target/debug/deps rustc --crate-name build_script_build --edition=2015 /tmp/tmp.o8L9imxcb3/registry/generic-array-0.14.7/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="more_lengths"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("more_lengths", "serde", "zeroize"))' -C metadata=160edb9b35222b14 -C extra-filename=-160edb9b35222b14 --out-dir /tmp/tmp.o8L9imxcb3/target/debug/build/generic-array-160edb9b35222b14 -L dependency=/tmp/tmp.o8L9imxcb3/target/debug/deps --extern version_check=/tmp/tmp.o8L9imxcb3/target/debug/deps/libversion_check-20e83cdf64ec3211.rlib --cap-lints warn` 345s 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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0--remap-path-prefix/tmp/tmp.o8L9imxcb3/registry=/usr/share/cargo/registry-Ctarget-feature=+backchain' CARGO_MANIFEST_DIR=/tmp/tmp.o8L9imxcb3/registry/typenum-1.17.0 CARGO_MANIFEST_PATH=/tmp/tmp.o8L9imxcb3/registry/typenum-1.17.0/Cargo.toml CARGO_PKG_AUTHORS='Paho Lurie-Gregg :Andre Bogus ' CARGO_PKG_DESCRIPTION='Typenum is a Rust library for type-level numbers evaluated at 345s compile time. It currently supports bits, unsigned integers, and signed 345s integers. It also provides a type-level array of type-level numbers, but its 345s implementation is incomplete.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=typenum CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/paholg/typenum' CARGO_PKG_RUST_VERSION=1.37.0 CARGO_PKG_VERSION=1.17.0 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=17 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' DEBUG=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.o8L9imxcb3/target/debug/deps:/tmp/tmp.o8L9imxcb3/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/build/typenum-b1daa52c37018028/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.o8L9imxcb3/target/debug/build/typenum-ef2812a6bded5202/build-script-main` 345s [typenum 1.17.0] cargo:rerun-if-changed=build/main.rs 346s 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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0--remap-path-prefix/tmp/tmp.o8L9imxcb3/registry=/usr/share/cargo/registry-Ctarget-feature=+backchain' CARGO_MANIFEST_DIR=/tmp/tmp.o8L9imxcb3/registry/glib-sys-0.20.7 CARGO_MANIFEST_PATH=/tmp/tmp.o8L9imxcb3/registry/glib-sys-0.20.7/Cargo.toml CARGO_PKG_AUTHORS='The gtk-rs Project Developers' CARGO_PKG_DESCRIPTION='FFI bindings to libglib-2.0' CARGO_PKG_HOMEPAGE='https://gtk-rs.org/' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=glib-sys CARGO_PKG_README='' CARGO_PKG_REPOSITORY='https://github.com/gtk-rs/gtk-rs-core' CARGO_PKG_RUST_VERSION=1.70 CARGO_PKG_VERSION=0.20.7 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=20 CARGO_PKG_VERSION_PATCH=7 CARGO_PKG_VERSION_PRE='' DEBUG=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.o8L9imxcb3/target/debug/deps:/tmp/tmp.o8L9imxcb3/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/build/glib-sys-352789a9aca33e1d/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.o8L9imxcb3/target/debug/build/glib-sys-e76b494fc2db9ea9/build-script-build` 346s [glib-sys 0.20.7] cargo:rerun-if-changed=/tmp/tmp.o8L9imxcb3/registry/glib-sys-0.20.7/Cargo.toml 346s [glib-sys 0.20.7] cargo:rerun-if-env-changed=GLIB_2.0_NO_PKG_CONFIG 346s [glib-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_s390x-unknown-linux-gnu 346s [glib-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_s390x_unknown_linux_gnu 346s [glib-sys 0.20.7] cargo:rerun-if-env-changed=HOST_PKG_CONFIG 346s [glib-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG 346s [glib-sys 0.20.7] cargo:rerun-if-env-changed=DEB_HOST_GNU_TYPE 346s [glib-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_PATH_s390x-unknown-linux-gnu 346s [glib-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_PATH_s390x_unknown_linux_gnu 346s [glib-sys 0.20.7] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_PATH 346s [glib-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_PATH 346s [glib-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR_s390x-unknown-linux-gnu 346s [glib-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR_s390x_unknown_linux_gnu 346s [glib-sys 0.20.7] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_LIBDIR 346s [glib-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR 346s [glib-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR_s390x-unknown-linux-gnu 346s [glib-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR_s390x_unknown_linux_gnu 346s [glib-sys 0.20.7] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_SYSROOT_DIR 346s [glib-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR 346s [glib-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR 346s [glib-sys 0.20.7] cargo:rerun-if-env-changed=SYSROOT 346s [glib-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_s390x-unknown-linux-gnu 346s [glib-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_s390x_unknown_linux_gnu 346s [glib-sys 0.20.7] cargo:rerun-if-env-changed=HOST_PKG_CONFIG 346s [glib-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG 346s [glib-sys 0.20.7] cargo:rerun-if-env-changed=DEB_HOST_GNU_TYPE 346s [glib-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_PATH_s390x-unknown-linux-gnu 346s [glib-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_PATH_s390x_unknown_linux_gnu 346s [glib-sys 0.20.7] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_PATH 346s [glib-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_PATH 346s [glib-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR_s390x-unknown-linux-gnu 346s [glib-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR_s390x_unknown_linux_gnu 346s [glib-sys 0.20.7] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_LIBDIR 346s [glib-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR 346s [glib-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR_s390x-unknown-linux-gnu 346s [glib-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR_s390x_unknown_linux_gnu 346s [glib-sys 0.20.7] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_SYSROOT_DIR 346s [glib-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR 346s [glib-sys 0.20.7] cargo:rerun-if-env-changed=GOBJECT_2.0_NO_PKG_CONFIG 346s [glib-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_s390x-unknown-linux-gnu 346s [glib-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_s390x_unknown_linux_gnu 346s [glib-sys 0.20.7] cargo:rerun-if-env-changed=HOST_PKG_CONFIG 346s [glib-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG 346s [glib-sys 0.20.7] cargo:rerun-if-env-changed=DEB_HOST_GNU_TYPE 346s [glib-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_PATH_s390x-unknown-linux-gnu 346s [glib-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_PATH_s390x_unknown_linux_gnu 346s [glib-sys 0.20.7] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_PATH 346s [glib-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_PATH 346s [glib-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR_s390x-unknown-linux-gnu 346s [glib-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR_s390x_unknown_linux_gnu 346s [glib-sys 0.20.7] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_LIBDIR 346s [glib-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR 346s [glib-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR_s390x-unknown-linux-gnu 346s [glib-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR_s390x_unknown_linux_gnu 346s [glib-sys 0.20.7] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_SYSROOT_DIR 346s [glib-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR 346s [glib-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR 346s [glib-sys 0.20.7] cargo:rerun-if-env-changed=SYSROOT 346s [glib-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_s390x-unknown-linux-gnu 346s [glib-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_s390x_unknown_linux_gnu 346s [glib-sys 0.20.7] cargo:rerun-if-env-changed=HOST_PKG_CONFIG 346s [glib-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG 346s [glib-sys 0.20.7] cargo:rerun-if-env-changed=DEB_HOST_GNU_TYPE 346s [glib-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_PATH_s390x-unknown-linux-gnu 346s [glib-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_PATH_s390x_unknown_linux_gnu 346s [glib-sys 0.20.7] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_PATH 346s [glib-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_PATH 346s [glib-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR_s390x-unknown-linux-gnu 346s [glib-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR_s390x_unknown_linux_gnu 346s [glib-sys 0.20.7] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_LIBDIR 346s [glib-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR 346s [glib-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR_s390x-unknown-linux-gnu 346s [glib-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR_s390x_unknown_linux_gnu 346s [glib-sys 0.20.7] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_SYSROOT_DIR 346s [glib-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR 346s [glib-sys 0.20.7] cargo:rustc-link-lib=glib-2.0 346s [glib-sys 0.20.7] cargo:rustc-link-lib=gobject-2.0 346s [glib-sys 0.20.7] cargo:rustc-link-lib=glib-2.0 346s [glib-sys 0.20.7] cargo:include=/usr/include/glib-2.0:/usr/lib/s390x-linux-gnu/glib-2.0/include:/usr/include/sysprof-6:/usr/include:/usr/include:/usr/include/glib-2.0:/usr/lib/s390x-linux-gnu/glib-2.0/include:/usr/include/sysprof-6 346s [glib-sys 0.20.7] cargo:rerun-if-env-changed=SYSTEM_DEPS_BUILD_INTERNAL 346s [glib-sys 0.20.7] cargo:rerun-if-env-changed=SYSTEM_DEPS_LINK 346s [glib-sys 0.20.7] cargo:rerun-if-env-changed=SYSTEM_DEPS_GLIB_2_0_LIB 346s [glib-sys 0.20.7] cargo:rerun-if-env-changed=SYSTEM_DEPS_GLIB_2_0_LIB_FRAMEWORK 346s [glib-sys 0.20.7] cargo:rerun-if-env-changed=SYSTEM_DEPS_GLIB_2_0_SEARCH_NATIVE 346s [glib-sys 0.20.7] cargo:rerun-if-env-changed=SYSTEM_DEPS_GLIB_2_0_SEARCH_FRAMEWORK 346s [glib-sys 0.20.7] cargo:rerun-if-env-changed=SYSTEM_DEPS_GLIB_2_0_INCLUDE 346s [glib-sys 0.20.7] cargo:rerun-if-env-changed=SYSTEM_DEPS_GLIB_2_0_LDFLAGS 346s [glib-sys 0.20.7] cargo:rerun-if-env-changed=SYSTEM_DEPS_GLIB_2_0_NO_PKG_CONFIG 346s [glib-sys 0.20.7] cargo:rerun-if-env-changed=SYSTEM_DEPS_GLIB_2_0_BUILD_INTERNAL 346s [glib-sys 0.20.7] cargo:rerun-if-env-changed=SYSTEM_DEPS_GLIB_2_0_LINK 346s [glib-sys 0.20.7] cargo:rerun-if-env-changed=SYSTEM_DEPS_GOBJECT_2_0_LIB 346s [glib-sys 0.20.7] cargo:rerun-if-env-changed=SYSTEM_DEPS_GOBJECT_2_0_LIB_FRAMEWORK 346s [glib-sys 0.20.7] cargo:rerun-if-env-changed=SYSTEM_DEPS_GOBJECT_2_0_SEARCH_NATIVE 346s [glib-sys 0.20.7] cargo:rerun-if-env-changed=SYSTEM_DEPS_GOBJECT_2_0_SEARCH_FRAMEWORK 346s [glib-sys 0.20.7] cargo:rerun-if-env-changed=SYSTEM_DEPS_GOBJECT_2_0_INCLUDE 346s [glib-sys 0.20.7] cargo:rerun-if-env-changed=SYSTEM_DEPS_GOBJECT_2_0_LDFLAGS 346s [glib-sys 0.20.7] cargo:rerun-if-env-changed=SYSTEM_DEPS_GOBJECT_2_0_NO_PKG_CONFIG 346s [glib-sys 0.20.7] cargo:rerun-if-env-changed=SYSTEM_DEPS_GOBJECT_2_0_BUILD_INTERNAL 346s [glib-sys 0.20.7] cargo:rerun-if-env-changed=SYSTEM_DEPS_GOBJECT_2_0_LINK 346s [glib-sys 0.20.7] 346s [glib-sys 0.20.7] cargo:rustc-cfg=system_deps_have_glib_2_0 346s [glib-sys 0.20.7] cargo:rustc-cfg=system_deps_have_gobject_2_0 346s 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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0--remap-path-prefix/tmp/tmp.o8L9imxcb3/registry=/usr/share/cargo/registry-Ctarget-feature=+backchain' CARGO_FEATURE_DEFAULT=1 CARGO_FEATURE_STD=1 CARGO_MANIFEST_DIR=/tmp/tmp.o8L9imxcb3/registry/slab-0.4.9 CARGO_MANIFEST_PATH=/tmp/tmp.o8L9imxcb3/registry/slab-0.4.9/Cargo.toml CARGO_PKG_AUTHORS='Carl Lerche ' CARGO_PKG_DESCRIPTION='Pre-allocated storage for a uniform data type' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=slab CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/tokio-rs/slab' CARGO_PKG_RUST_VERSION=1.31 CARGO_PKG_VERSION=0.4.9 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=4 CARGO_PKG_VERSION_PATCH=9 CARGO_PKG_VERSION_PRE='' DEBUG=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.o8L9imxcb3/target/debug/deps:/tmp/tmp.o8L9imxcb3/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/build/slab-2c89ee66d35953a1/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.o8L9imxcb3/target/debug/build/slab-95cba3e02497b263/build-script-build` 346s [slab 0.4.9] warning: unstable feature specified for `-Ctarget-feature`: `backchain` 346s [slab 0.4.9] | 346s [slab 0.4.9] = note: this feature is not stably supported; its behavior can change in the future 346s [slab 0.4.9] 346s [slab 0.4.9] warning: 1 warning emitted 346s [slab 0.4.9] 346s Compiling gobject-sys v0.20.7 346s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.o8L9imxcb3/registry/gobject-sys-0.20.7 CARGO_MANIFEST_PATH=/tmp/tmp.o8L9imxcb3/registry/gobject-sys-0.20.7/Cargo.toml CARGO_PKG_AUTHORS='The gtk-rs Project Developers' CARGO_PKG_DESCRIPTION='FFI bindings to libgobject-2.0' CARGO_PKG_HOMEPAGE='https://gtk-rs.org/' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=gobject-sys CARGO_PKG_README='' CARGO_PKG_REPOSITORY='https://github.com/gtk-rs/gtk-rs-core' CARGO_PKG_RUST_VERSION=1.70 CARGO_PKG_VERSION=0.20.7 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=20 CARGO_PKG_VERSION_PATCH=7 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.o8L9imxcb3/target/debug/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.o8L9imxcb3/registry/gobject-sys-0.20.7/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("v2_58", "v2_62", "v2_66", "v2_68", "v2_70", "v2_72", "v2_74", "v2_76", "v2_78", "v2_80", "v2_82"))' -C metadata=badf85930359f815 -C extra-filename=-badf85930359f815 --out-dir /tmp/tmp.o8L9imxcb3/target/debug/build/gobject-sys-badf85930359f815 -L dependency=/tmp/tmp.o8L9imxcb3/target/debug/deps --extern system_deps=/tmp/tmp.o8L9imxcb3/target/debug/deps/libsystem_deps-df5512f70260f2a1.rlib --cap-lints warn` 346s Compiling cfg-if v1.0.0 346s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=cfg_if CARGO_MANIFEST_DIR=/tmp/tmp.o8L9imxcb3/registry/cfg-if-1.0.0 CARGO_MANIFEST_PATH=/tmp/tmp.o8L9imxcb3/registry/cfg-if-1.0.0/Cargo.toml CARGO_PKG_AUTHORS='Alex Crichton ' CARGO_PKG_DESCRIPTION='A macro to ergonomically define an item depending on a large number of #[cfg] 346s parameters. Structured like an if-else chain, the first matching branch is the 346s item that gets emitted. 346s ' CARGO_PKG_HOMEPAGE='https://github.com/alexcrichton/cfg-if' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=cfg-if CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/alexcrichton/cfg-if' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=1.0.0 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.o8L9imxcb3/target/debug/deps rustc --crate-name cfg_if --edition=2018 /tmp/tmp.o8L9imxcb3/registry/cfg-if-1.0.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("core"))' -C metadata=ff3ff84a061de73f -C extra-filename=-ff3ff84a061de73f --out-dir /tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.o8L9imxcb3/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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.o8L9imxcb3/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 346s warning: `cfg-if` (lib) generated 1 warning (1 duplicate) 346s Compiling crossbeam-utils v0.8.19 346s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.o8L9imxcb3/registry/crossbeam-utils-0.8.19 CARGO_MANIFEST_PATH=/tmp/tmp.o8L9imxcb3/registry/crossbeam-utils-0.8.19/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='Utilities for concurrent programming' CARGO_PKG_HOMEPAGE='https://github.com/crossbeam-rs/crossbeam/tree/master/crossbeam-utils' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=crossbeam-utils CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/crossbeam-rs/crossbeam' CARGO_PKG_RUST_VERSION=1.60 CARGO_PKG_VERSION=0.8.19 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=8 CARGO_PKG_VERSION_PATCH=19 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.o8L9imxcb3/target/debug/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.o8L9imxcb3/registry/crossbeam-utils-0.8.19/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "nightly", "std"))' -C metadata=481d5baddd087d3b -C extra-filename=-481d5baddd087d3b --out-dir /tmp/tmp.o8L9imxcb3/target/debug/build/crossbeam-utils-481d5baddd087d3b -L dependency=/tmp/tmp.o8L9imxcb3/target/debug/deps --cap-lints warn` 346s 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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0--remap-path-prefix/tmp/tmp.o8L9imxcb3/registry=/usr/share/cargo/registry-Ctarget-feature=+backchain' CARGO_MANIFEST_DIR=/tmp/tmp.o8L9imxcb3/registry/crossbeam-utils-0.8.19 CARGO_MANIFEST_PATH=/tmp/tmp.o8L9imxcb3/registry/crossbeam-utils-0.8.19/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='Utilities for concurrent programming' CARGO_PKG_HOMEPAGE='https://github.com/crossbeam-rs/crossbeam/tree/master/crossbeam-utils' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=crossbeam-utils CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/crossbeam-rs/crossbeam' CARGO_PKG_RUST_VERSION=1.60 CARGO_PKG_VERSION=0.8.19 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=8 CARGO_PKG_VERSION_PATCH=19 CARGO_PKG_VERSION_PRE='' DEBUG=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.o8L9imxcb3/target/debug/deps:/tmp/tmp.o8L9imxcb3/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/build/crossbeam-utils-41ced09745ce2d1e/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.o8L9imxcb3/target/debug/build/crossbeam-utils-481d5baddd087d3b/build-script-build` 346s [crossbeam-utils 0.8.19] cargo:rerun-if-changed=no_atomic.rs 346s 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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0--remap-path-prefix/tmp/tmp.o8L9imxcb3/registry=/usr/share/cargo/registry-Ctarget-feature=+backchain' CARGO_FEATURE_MORE_LENGTHS=1 CARGO_MANIFEST_DIR=/tmp/tmp.o8L9imxcb3/registry/generic-array-0.14.7 CARGO_MANIFEST_PATH=/tmp/tmp.o8L9imxcb3/registry/generic-array-0.14.7/Cargo.toml CARGO_PKG_AUTHORS='Bartłomiej Kamiński :Aaron Trent ' CARGO_PKG_DESCRIPTION='Generic types implementing functionality of arrays' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=generic-array CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/fizyk20/generic-array.git' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.14.7 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=14 CARGO_PKG_VERSION_PATCH=7 CARGO_PKG_VERSION_PRE='' DEBUG=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.o8L9imxcb3/target/debug/deps:/tmp/tmp.o8L9imxcb3/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/build/generic-array-da8fba9a25807be8/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.o8L9imxcb3/target/debug/build/generic-array-160edb9b35222b14/build-script-build` 346s [generic-array 0.14.7] cargo:rustc-cfg=relaxed_coherence 346s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=slab CARGO_MANIFEST_DIR=/tmp/tmp.o8L9imxcb3/registry/slab-0.4.9 CARGO_MANIFEST_PATH=/tmp/tmp.o8L9imxcb3/registry/slab-0.4.9/Cargo.toml CARGO_PKG_AUTHORS='Carl Lerche ' CARGO_PKG_DESCRIPTION='Pre-allocated storage for a uniform data type' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=slab CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/tokio-rs/slab' CARGO_PKG_RUST_VERSION=1.31 CARGO_PKG_VERSION=0.4.9 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=4 CARGO_PKG_VERSION_PATCH=9 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.o8L9imxcb3/target/debug/deps OUT_DIR=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/build/slab-2c89ee66d35953a1/out rustc --crate-name slab --edition=2018 /tmp/tmp.o8L9imxcb3/registry/slab-0.4.9/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "serde", "std"))' -C metadata=36320af34be0827b -C extra-filename=-36320af34be0827b --out-dir /tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.o8L9imxcb3/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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.o8L9imxcb3/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 346s warning: unexpected `cfg` condition name: `slab_no_const_vec_new` 346s --> /usr/share/cargo/registry/slab-0.4.9/src/lib.rs:250:15 346s | 346s 250 | #[cfg(not(slab_no_const_vec_new))] 346s | ^^^^^^^^^^^^^^^^^^^^^ 346s | 346s = help: expected names are: `clippy`, `debug_assertions`, `doc`, `docsrs`, `doctest`, `feature`, `fmt_debug`, `miri`, `overflow_checks`, `panic`, `proc_macro`, `relocation_model`, `rustfmt`, `sanitize`, `sanitizer_cfi_generalize_pointers`, `sanitizer_cfi_normalize_integers`, `target_abi`, `target_arch`, `target_endian`, `target_env`, `target_family`, `target_feature`, `target_has_atomic`, `target_has_atomic_equal_alignment`, `target_has_atomic_load_store`, `target_os`, `target_pointer_width`, `target_thread_local`, `target_vendor`, `test`, `ub_checks`, `unix`, and `windows` 346s = help: consider using a Cargo feature instead 346s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 346s [lints.rust] 346s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(slab_no_const_vec_new)'] } 346s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(slab_no_const_vec_new)");` to the top of the `build.rs` 346s = note: see for more information about checking conditional configuration 346s = note: `#[warn(unexpected_cfgs)]` on by default 346s 346s warning: unexpected `cfg` condition name: `slab_no_const_vec_new` 346s --> /usr/share/cargo/registry/slab-0.4.9/src/lib.rs:264:11 346s | 346s 264 | #[cfg(slab_no_const_vec_new)] 346s | ^^^^^^^^^^^^^^^^^^^^^ 346s | 346s = help: consider using a Cargo feature instead 346s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 346s [lints.rust] 346s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(slab_no_const_vec_new)'] } 346s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(slab_no_const_vec_new)");` to the top of the `build.rs` 346s = note: see for more information about checking conditional configuration 346s 346s warning: unexpected `cfg` condition name: `slab_no_track_caller` 346s --> /usr/share/cargo/registry/slab-0.4.9/src/lib.rs:929:20 346s | 346s 929 | #[cfg_attr(not(slab_no_track_caller), track_caller)] 346s | ^^^^^^^^^^^^^^^^^^^^ 346s | 346s = help: consider using a Cargo feature instead 346s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 346s [lints.rust] 346s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(slab_no_track_caller)'] } 346s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(slab_no_track_caller)");` to the top of the `build.rs` 346s = note: see for more information about checking conditional configuration 346s 346s warning: unexpected `cfg` condition name: `slab_no_track_caller` 346s --> /usr/share/cargo/registry/slab-0.4.9/src/lib.rs:1098:20 346s | 346s 1098 | #[cfg_attr(not(slab_no_track_caller), track_caller)] 346s | ^^^^^^^^^^^^^^^^^^^^ 346s | 346s = help: consider using a Cargo feature instead 346s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 346s [lints.rust] 346s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(slab_no_track_caller)'] } 346s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(slab_no_track_caller)");` to the top of the `build.rs` 346s = note: see for more information about checking conditional configuration 346s 346s warning: unexpected `cfg` condition name: `slab_no_track_caller` 346s --> /usr/share/cargo/registry/slab-0.4.9/src/lib.rs:1206:20 346s | 346s 1206 | #[cfg_attr(not(slab_no_track_caller), track_caller)] 346s | ^^^^^^^^^^^^^^^^^^^^ 346s | 346s = help: consider using a Cargo feature instead 346s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 346s [lints.rust] 346s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(slab_no_track_caller)'] } 346s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(slab_no_track_caller)");` to the top of the `build.rs` 346s = note: see for more information about checking conditional configuration 346s 346s warning: unexpected `cfg` condition name: `slab_no_track_caller` 346s --> /usr/share/cargo/registry/slab-0.4.9/src/lib.rs:1216:20 346s | 346s 1216 | #[cfg_attr(not(slab_no_track_caller), track_caller)] 346s | ^^^^^^^^^^^^^^^^^^^^ 346s | 346s = help: consider using a Cargo feature instead 346s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 346s [lints.rust] 346s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(slab_no_track_caller)'] } 346s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(slab_no_track_caller)");` to the top of the `build.rs` 346s = note: see for more information about checking conditional configuration 346s 346s 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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0--remap-path-prefix/tmp/tmp.o8L9imxcb3/registry=/usr/share/cargo/registry-Ctarget-feature=+backchain' CARGO_MANIFEST_DIR=/tmp/tmp.o8L9imxcb3/registry/gobject-sys-0.20.7 CARGO_MANIFEST_PATH=/tmp/tmp.o8L9imxcb3/registry/gobject-sys-0.20.7/Cargo.toml CARGO_PKG_AUTHORS='The gtk-rs Project Developers' CARGO_PKG_DESCRIPTION='FFI bindings to libgobject-2.0' CARGO_PKG_HOMEPAGE='https://gtk-rs.org/' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=gobject-sys CARGO_PKG_README='' CARGO_PKG_REPOSITORY='https://github.com/gtk-rs/gtk-rs-core' CARGO_PKG_RUST_VERSION=1.70 CARGO_PKG_VERSION=0.20.7 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=20 CARGO_PKG_VERSION_PATCH=7 CARGO_PKG_VERSION_PRE='' DEBUG=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.o8L9imxcb3/target/debug/deps:/tmp/tmp.o8L9imxcb3/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/build/gobject-sys-28e6444424201f24/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.o8L9imxcb3/target/debug/build/gobject-sys-badf85930359f815/build-script-build` 346s [gobject-sys 0.20.7] cargo:rerun-if-changed=/tmp/tmp.o8L9imxcb3/registry/gobject-sys-0.20.7/Cargo.toml 346s [gobject-sys 0.20.7] cargo:rerun-if-env-changed=GOBJECT_2.0_NO_PKG_CONFIG 346s [gobject-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_s390x-unknown-linux-gnu 346s [gobject-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_s390x_unknown_linux_gnu 346s [gobject-sys 0.20.7] cargo:rerun-if-env-changed=HOST_PKG_CONFIG 346s [gobject-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG 346s [gobject-sys 0.20.7] cargo:rerun-if-env-changed=DEB_HOST_GNU_TYPE 346s [gobject-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_PATH_s390x-unknown-linux-gnu 346s [gobject-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_PATH_s390x_unknown_linux_gnu 346s [gobject-sys 0.20.7] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_PATH 346s [gobject-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_PATH 346s [gobject-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR_s390x-unknown-linux-gnu 346s [gobject-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR_s390x_unknown_linux_gnu 346s [gobject-sys 0.20.7] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_LIBDIR 346s [gobject-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR 346s [gobject-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR_s390x-unknown-linux-gnu 346s [gobject-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR_s390x_unknown_linux_gnu 346s [gobject-sys 0.20.7] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_SYSROOT_DIR 346s [gobject-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR 346s [gobject-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR 346s [gobject-sys 0.20.7] cargo:rerun-if-env-changed=SYSROOT 346s [gobject-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_s390x-unknown-linux-gnu 346s [gobject-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_s390x_unknown_linux_gnu 346s [gobject-sys 0.20.7] cargo:rerun-if-env-changed=HOST_PKG_CONFIG 346s [gobject-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG 346s [gobject-sys 0.20.7] cargo:rerun-if-env-changed=DEB_HOST_GNU_TYPE 346s [gobject-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_PATH_s390x-unknown-linux-gnu 346s [gobject-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_PATH_s390x_unknown_linux_gnu 346s [gobject-sys 0.20.7] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_PATH 346s [gobject-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_PATH 346s [gobject-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR_s390x-unknown-linux-gnu 346s [gobject-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR_s390x_unknown_linux_gnu 346s [gobject-sys 0.20.7] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_LIBDIR 346s [gobject-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR 346s [gobject-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR_s390x-unknown-linux-gnu 346s [gobject-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR_s390x_unknown_linux_gnu 346s [gobject-sys 0.20.7] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_SYSROOT_DIR 346s [gobject-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR 346s [gobject-sys 0.20.7] cargo:rustc-link-lib=gobject-2.0 346s [gobject-sys 0.20.7] cargo:rustc-link-lib=glib-2.0 346s [gobject-sys 0.20.7] cargo:include=/usr/include:/usr/include/glib-2.0:/usr/lib/s390x-linux-gnu/glib-2.0/include:/usr/include/sysprof-6 346s [gobject-sys 0.20.7] cargo:rerun-if-env-changed=SYSTEM_DEPS_BUILD_INTERNAL 346s [gobject-sys 0.20.7] cargo:rerun-if-env-changed=SYSTEM_DEPS_LINK 346s [gobject-sys 0.20.7] cargo:rerun-if-env-changed=SYSTEM_DEPS_GOBJECT_2_0_LIB 346s [gobject-sys 0.20.7] cargo:rerun-if-env-changed=SYSTEM_DEPS_GOBJECT_2_0_LIB_FRAMEWORK 346s [gobject-sys 0.20.7] cargo:rerun-if-env-changed=SYSTEM_DEPS_GOBJECT_2_0_SEARCH_NATIVE 346s [gobject-sys 0.20.7] cargo:rerun-if-env-changed=SYSTEM_DEPS_GOBJECT_2_0_SEARCH_FRAMEWORK 346s [gobject-sys 0.20.7] cargo:rerun-if-env-changed=SYSTEM_DEPS_GOBJECT_2_0_INCLUDE 346s [gobject-sys 0.20.7] cargo:rerun-if-env-changed=SYSTEM_DEPS_GOBJECT_2_0_LDFLAGS 346s [gobject-sys 0.20.7] cargo:rerun-if-env-changed=SYSTEM_DEPS_GOBJECT_2_0_NO_PKG_CONFIG 346s [gobject-sys 0.20.7] cargo:rerun-if-env-changed=SYSTEM_DEPS_GOBJECT_2_0_BUILD_INTERNAL 346s [gobject-sys 0.20.7] cargo:rerun-if-env-changed=SYSTEM_DEPS_GOBJECT_2_0_LINK 346s [gobject-sys 0.20.7] 346s [gobject-sys 0.20.7] cargo:rustc-cfg=system_deps_have_gobject_2_0 346s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=glib_sys CARGO_MANIFEST_DIR=/tmp/tmp.o8L9imxcb3/registry/glib-sys-0.20.7 CARGO_MANIFEST_PATH=/tmp/tmp.o8L9imxcb3/registry/glib-sys-0.20.7/Cargo.toml CARGO_PKG_AUTHORS='The gtk-rs Project Developers' CARGO_PKG_DESCRIPTION='FFI bindings to libglib-2.0' CARGO_PKG_HOMEPAGE='https://gtk-rs.org/' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=glib-sys CARGO_PKG_README='' CARGO_PKG_REPOSITORY='https://github.com/gtk-rs/gtk-rs-core' CARGO_PKG_RUST_VERSION=1.70 CARGO_PKG_VERSION=0.20.7 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=20 CARGO_PKG_VERSION_PATCH=7 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.o8L9imxcb3/target/debug/deps OUT_DIR=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/build/glib-sys-352789a9aca33e1d/out rustc --crate-name glib_sys --edition=2021 /tmp/tmp.o8L9imxcb3/registry/glib-sys-0.20.7/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("v2_58", "v2_60", "v2_62", "v2_64", "v2_66", "v2_68", "v2_70", "v2_72", "v2_74", "v2_76", "v2_78", "v2_80", "v2_82", "v2_84"))' -C metadata=53b910227b38db1a -C extra-filename=-53b910227b38db1a --out-dir /tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.o8L9imxcb3/target/debug/deps --extern libc=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps/liblibc-cf2521928ac070dc.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.o8L9imxcb3/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain -l glib-2.0 -l gobject-2.0 -l glib-2.0 --cfg system_deps_have_glib_2_0 --cfg system_deps_have_gobject_2_0` 346s warning: `slab` (lib) generated 7 warnings (1 duplicate) 346s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=typenum CARGO_MANIFEST_DIR=/tmp/tmp.o8L9imxcb3/registry/typenum-1.17.0 CARGO_MANIFEST_PATH=/tmp/tmp.o8L9imxcb3/registry/typenum-1.17.0/Cargo.toml CARGO_PKG_AUTHORS='Paho Lurie-Gregg :Andre Bogus ' CARGO_PKG_DESCRIPTION='Typenum is a Rust library for type-level numbers evaluated at 346s compile time. It currently supports bits, unsigned integers, and signed 346s integers. It also provides a type-level array of type-level numbers, but its 346s implementation is incomplete.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=typenum CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/paholg/typenum' CARGO_PKG_RUST_VERSION=1.37.0 CARGO_PKG_VERSION=1.17.0 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=17 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.o8L9imxcb3/target/debug/deps OUT_DIR=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/build/typenum-b1daa52c37018028/out rustc --crate-name typenum --edition=2018 /tmp/tmp.o8L9imxcb3/registry/typenum-1.17.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("const-generics", "force_unix_path_separator", "i128", "no_std", "strict"))' -C metadata=c66037e8139405ff -C extra-filename=-c66037e8139405ff --out-dir /tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.o8L9imxcb3/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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.o8L9imxcb3/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 346s warning: unexpected `cfg` condition value: `cargo-clippy` 346s --> /usr/share/cargo/registry/typenum-1.17.0/src/lib.rs:50:5 346s | 346s 50 | feature = "cargo-clippy", 346s | ^^^^^^^^^^^^^^^^^^^^^^^^ 346s | 346s = note: expected values for `feature` are: `const-generics`, `force_unix_path_separator`, `i128`, `no_std`, and `strict` 346s = help: consider adding `cargo-clippy` as a feature in `Cargo.toml` 346s = note: see for more information about checking conditional configuration 346s = note: `#[warn(unexpected_cfgs)]` on by default 346s 346s warning: unexpected `cfg` condition value: `cargo-clippy` 346s --> /usr/share/cargo/registry/typenum-1.17.0/src/lib.rs:60:13 346s | 346s 60 | #![cfg_attr(feature = "cargo-clippy", deny(clippy::missing_inline_in_public_items))] 346s | ^^^^^^^^^^^^^^^^^^^^^^^^ 346s | 346s = note: expected values for `feature` are: `const-generics`, `force_unix_path_separator`, `i128`, `no_std`, and `strict` 346s = help: consider adding `cargo-clippy` as a feature in `Cargo.toml` 346s = note: see for more information about checking conditional configuration 346s 346s warning: unexpected `cfg` condition value: `scale_info` 346s --> /usr/share/cargo/registry/typenum-1.17.0/src/lib.rs:119:12 346s | 346s 119 | #[cfg_attr(feature = "scale_info", derive(scale_info::TypeInfo))] 346s | ^^^^^^^^^^^^^^^^^^^^^^ 346s | 346s = note: expected values for `feature` are: `const-generics`, `force_unix_path_separator`, `i128`, `no_std`, and `strict` 346s = help: consider adding `scale_info` as a feature in `Cargo.toml` 346s = note: see for more information about checking conditional configuration 346s 346s warning: unexpected `cfg` condition value: `scale_info` 346s --> /usr/share/cargo/registry/typenum-1.17.0/src/lib.rs:125:12 346s | 346s 125 | #[cfg_attr(feature = "scale_info", derive(scale_info::TypeInfo))] 346s | ^^^^^^^^^^^^^^^^^^^^^^ 346s | 346s = note: expected values for `feature` are: `const-generics`, `force_unix_path_separator`, `i128`, `no_std`, and `strict` 346s = help: consider adding `scale_info` as a feature in `Cargo.toml` 346s = note: see for more information about checking conditional configuration 346s 346s warning: unexpected `cfg` condition value: `scale_info` 346s --> /usr/share/cargo/registry/typenum-1.17.0/src/lib.rs:131:12 346s | 346s 131 | #[cfg_attr(feature = "scale_info", derive(scale_info::TypeInfo))] 346s | ^^^^^^^^^^^^^^^^^^^^^^ 346s | 346s = note: expected values for `feature` are: `const-generics`, `force_unix_path_separator`, `i128`, `no_std`, and `strict` 346s = help: consider adding `scale_info` as a feature in `Cargo.toml` 346s = note: see for more information about checking conditional configuration 346s 346s warning: unexpected `cfg` condition value: `scale_info` 346s --> /usr/share/cargo/registry/typenum-1.17.0/src/bit.rs:19:12 346s | 346s 19 | #[cfg_attr(feature = "scale_info", derive(scale_info::TypeInfo))] 346s | ^^^^^^^^^^^^^^^^^^^^^^ 346s | 346s = note: expected values for `feature` are: `const-generics`, `force_unix_path_separator`, `i128`, `no_std`, and `strict` 346s = help: consider adding `scale_info` as a feature in `Cargo.toml` 346s = note: see for more information about checking conditional configuration 346s 346s warning: unexpected `cfg` condition value: `scale_info` 346s --> /usr/share/cargo/registry/typenum-1.17.0/src/bit.rs:32:12 346s | 346s 32 | #[cfg_attr(feature = "scale_info", derive(scale_info::TypeInfo))] 346s | ^^^^^^^^^^^^^^^^^^^^^^ 346s | 346s = note: expected values for `feature` are: `const-generics`, `force_unix_path_separator`, `i128`, `no_std`, and `strict` 346s = help: consider adding `scale_info` as a feature in `Cargo.toml` 346s = note: see for more information about checking conditional configuration 346s 346s warning: unexpected `cfg` condition name: `tests` 346s --> /usr/share/cargo/registry/typenum-1.17.0/src/bit.rs:187:7 346s | 346s 187 | #[cfg(tests)] 346s | ^^^^^ help: there is a config with a similar name: `test` 346s | 346s = help: consider using a Cargo feature instead 346s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 346s [lints.rust] 346s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tests)'] } 346s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tests)");` to the top of the `build.rs` 346s = note: see for more information about checking conditional configuration 346s 346s warning: unexpected `cfg` condition value: `scale_info` 346s --> /usr/share/cargo/registry/typenum-1.17.0/src/int.rs:41:12 346s | 346s 41 | #[cfg_attr(feature = "scale_info", derive(scale_info::TypeInfo))] 346s | ^^^^^^^^^^^^^^^^^^^^^^ 346s | 346s = note: expected values for `feature` are: `const-generics`, `force_unix_path_separator`, `i128`, `no_std`, and `strict` 346s = help: consider adding `scale_info` as a feature in `Cargo.toml` 346s = note: see for more information about checking conditional configuration 346s 346s warning: unexpected `cfg` condition value: `scale_info` 346s --> /usr/share/cargo/registry/typenum-1.17.0/src/int.rs:48:12 346s | 346s 48 | #[cfg_attr(feature = "scale_info", derive(scale_info::TypeInfo))] 346s | ^^^^^^^^^^^^^^^^^^^^^^ 346s | 346s = note: expected values for `feature` are: `const-generics`, `force_unix_path_separator`, `i128`, `no_std`, and `strict` 346s = help: consider adding `scale_info` as a feature in `Cargo.toml` 346s = note: see for more information about checking conditional configuration 346s 346s warning: unexpected `cfg` condition value: `scale_info` 346s --> /usr/share/cargo/registry/typenum-1.17.0/src/int.rs:71:12 346s | 346s 71 | #[cfg_attr(feature = "scale_info", derive(scale_info::TypeInfo))] 346s | ^^^^^^^^^^^^^^^^^^^^^^ 346s | 346s = note: expected values for `feature` are: `const-generics`, `force_unix_path_separator`, `i128`, `no_std`, and `strict` 346s = help: consider adding `scale_info` as a feature in `Cargo.toml` 346s = note: see for more information about checking conditional configuration 346s 346s warning: unexpected `cfg` condition value: `scale_info` 346s --> /usr/share/cargo/registry/typenum-1.17.0/src/uint.rs:49:12 346s | 346s 49 | #[cfg_attr(feature = "scale_info", derive(scale_info::TypeInfo))] 346s | ^^^^^^^^^^^^^^^^^^^^^^ 346s | 346s = note: expected values for `feature` are: `const-generics`, `force_unix_path_separator`, `i128`, `no_std`, and `strict` 346s = help: consider adding `scale_info` as a feature in `Cargo.toml` 346s = note: see for more information about checking conditional configuration 346s 346s warning: unexpected `cfg` condition value: `scale_info` 346s --> /usr/share/cargo/registry/typenum-1.17.0/src/uint.rs:147:12 346s | 346s 147 | #[cfg_attr(feature = "scale_info", derive(scale_info::TypeInfo))] 346s | ^^^^^^^^^^^^^^^^^^^^^^ 346s | 346s = note: expected values for `feature` are: `const-generics`, `force_unix_path_separator`, `i128`, `no_std`, and `strict` 346s = help: consider adding `scale_info` as a feature in `Cargo.toml` 346s = note: see for more information about checking conditional configuration 346s 346s warning: unexpected `cfg` condition name: `tests` 346s --> /usr/share/cargo/registry/typenum-1.17.0/src/uint.rs:1656:7 346s | 346s 1656 | #[cfg(tests)] 346s | ^^^^^ help: there is a config with a similar name: `test` 346s | 346s = help: consider using a Cargo feature instead 346s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 346s [lints.rust] 346s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tests)'] } 346s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tests)");` to the top of the `build.rs` 346s = note: see for more information about checking conditional configuration 346s 346s warning: unexpected `cfg` condition value: `cargo-clippy` 346s --> /usr/share/cargo/registry/typenum-1.17.0/src/uint.rs:1709:16 346s | 346s 1709 | #[cfg_attr(feature = "cargo-clippy", allow(clippy::suspicious_arithmetic_impl))] 346s | ^^^^^^^^^^^^^^^^^^^^^^^^ 346s | 346s = note: expected values for `feature` are: `const-generics`, `force_unix_path_separator`, `i128`, `no_std`, and `strict` 346s = help: consider adding `cargo-clippy` as a feature in `Cargo.toml` 346s = note: see for more information about checking conditional configuration 346s 346s warning: unexpected `cfg` condition value: `scale_info` 346s --> /usr/share/cargo/registry/typenum-1.17.0/src/array.rs:11:12 346s | 346s 11 | #[cfg_attr(feature = "scale_info", derive(scale_info::TypeInfo))] 346s | ^^^^^^^^^^^^^^^^^^^^^^ 346s | 346s = note: expected values for `feature` are: `const-generics`, `force_unix_path_separator`, `i128`, `no_std`, and `strict` 346s = help: consider adding `scale_info` as a feature in `Cargo.toml` 346s = note: see for more information about checking conditional configuration 346s 346s warning: unexpected `cfg` condition value: `scale_info` 346s --> /usr/share/cargo/registry/typenum-1.17.0/src/array.rs:23:12 346s | 346s 23 | #[cfg_attr(feature = "scale_info", derive(scale_info::TypeInfo))] 346s | ^^^^^^^^^^^^^^^^^^^^^^ 346s | 346s = note: expected values for `feature` are: `const-generics`, `force_unix_path_separator`, `i128`, `no_std`, and `strict` 346s = help: consider adding `scale_info` as a feature in `Cargo.toml` 346s = note: see for more information about checking conditional configuration 346s 346s warning: unused import: `*` 346s --> /usr/share/cargo/registry/typenum-1.17.0/src/lib.rs:106:25 346s | 346s 106 | N1, N2, Z0, P1, P2, *, 346s | ^ 346s | 346s = note: `#[warn(unused_imports)]` on by default 346s 346s warning: `glib-sys` (lib) generated 1 warning (1 duplicate) 346s Compiling gio-sys v0.20.8 346s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.o8L9imxcb3/registry/gio-sys-0.20.8 CARGO_MANIFEST_PATH=/tmp/tmp.o8L9imxcb3/registry/gio-sys-0.20.8/Cargo.toml CARGO_PKG_AUTHORS='The gtk-rs Project Developers' CARGO_PKG_DESCRIPTION='FFI bindings to libgio-2.0' CARGO_PKG_HOMEPAGE='https://gtk-rs.org/' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=gio-sys CARGO_PKG_README='' CARGO_PKG_REPOSITORY='https://github.com/gtk-rs/gtk-rs-core' CARGO_PKG_RUST_VERSION=1.70 CARGO_PKG_VERSION=0.20.8 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=20 CARGO_PKG_VERSION_PATCH=8 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.o8L9imxcb3/target/debug/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.o8L9imxcb3/registry/gio-sys-0.20.8/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("v2_58", "v2_60", "v2_62", "v2_64", "v2_66", "v2_68", "v2_70", "v2_72", "v2_74", "v2_76", "v2_78", "v2_80", "v2_82", "v2_84"))' -C metadata=fa8bb799a92b9aec -C extra-filename=-fa8bb799a92b9aec --out-dir /tmp/tmp.o8L9imxcb3/target/debug/build/gio-sys-fa8bb799a92b9aec -L dependency=/tmp/tmp.o8L9imxcb3/target/debug/deps --extern system_deps=/tmp/tmp.o8L9imxcb3/target/debug/deps/libsystem_deps-df5512f70260f2a1.rlib --cap-lints warn` 346s warning: `typenum` (lib) generated 19 warnings (1 duplicate) 346s Compiling futures-macro v0.3.31 346s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=futures_macro CARGO_MANIFEST_DIR=/tmp/tmp.o8L9imxcb3/registry/futures-macro-0.3.31 CARGO_MANIFEST_PATH=/tmp/tmp.o8L9imxcb3/registry/futures-macro-0.3.31/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='The futures-rs procedural macro implementations. 346s ' CARGO_PKG_HOMEPAGE='https://rust-lang.github.io/futures-rs' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=futures-macro CARGO_PKG_README='' CARGO_PKG_REPOSITORY='https://github.com/rust-lang/futures-rs' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=0.3.31 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=31 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.o8L9imxcb3/target/debug/deps rustc --crate-name futures_macro --edition=2018 /tmp/tmp.o8L9imxcb3/registry/futures-macro-0.3.31/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type proc-macro --emit=dep-info,link -C prefer-dynamic -C embed-bitcode=no -C debuginfo=2 --warn=unreachable_pub --warn=unexpected_cfgs --warn=single_use_lifetimes --warn=rust_2018_idioms --warn=missing_debug_implementations --check-cfg 'cfg(futures_sanitizer)' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=4cace2739cb7abd5 -C extra-filename=-4cace2739cb7abd5 --out-dir /tmp/tmp.o8L9imxcb3/target/debug/deps -L dependency=/tmp/tmp.o8L9imxcb3/target/debug/deps --extern proc_macro2=/tmp/tmp.o8L9imxcb3/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rlib --extern quote=/tmp/tmp.o8L9imxcb3/target/debug/deps/libquote-dc92c6f25ee0f0c6.rlib --extern syn=/tmp/tmp.o8L9imxcb3/target/debug/deps/libsyn-0167beed9e699402.rlib --extern proc_macro --cap-lints warn` 347s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.o8L9imxcb3/registry/serde-1.0.217 CARGO_MANIFEST_PATH=/tmp/tmp.o8L9imxcb3/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.o8L9imxcb3/target/debug/deps rustc --crate-name build_script_build --edition=2018 /tmp/tmp.o8L9imxcb3/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.o8L9imxcb3/target/debug/build/serde-c22c8603f1f999ec -L dependency=/tmp/tmp.o8L9imxcb3/target/debug/deps --cap-lints warn` 347s Compiling pin-utils v0.1.0 347s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=pin_utils CARGO_MANIFEST_DIR=/tmp/tmp.o8L9imxcb3/registry/pin-utils-0.1.0 CARGO_MANIFEST_PATH=/tmp/tmp.o8L9imxcb3/registry/pin-utils-0.1.0/Cargo.toml CARGO_PKG_AUTHORS='Josef Brandl ' CARGO_PKG_DESCRIPTION='Utilities for pinning 347s ' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=pin-utils CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang-nursery/pin-utils' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.1.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.o8L9imxcb3/target/debug/deps rustc --crate-name pin_utils --edition=2018 /tmp/tmp.o8L9imxcb3/registry/pin-utils-0.1.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=9646380a39f6bb39 -C extra-filename=-9646380a39f6bb39 --out-dir /tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.o8L9imxcb3/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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.o8L9imxcb3/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 347s warning: `pin-utils` (lib) generated 1 warning (1 duplicate) 347s Compiling futures-sink v0.3.31 347s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=futures_sink CARGO_MANIFEST_DIR=/tmp/tmp.o8L9imxcb3/registry/futures-sink-0.3.31 CARGO_MANIFEST_PATH=/tmp/tmp.o8L9imxcb3/registry/futures-sink-0.3.31/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='The asynchronous `Sink` trait for the futures-rs library. 347s ' CARGO_PKG_HOMEPAGE='https://rust-lang.github.io/futures-rs' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=futures-sink CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/futures-rs' CARGO_PKG_RUST_VERSION=1.36 CARGO_PKG_VERSION=0.3.31 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=31 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.o8L9imxcb3/target/debug/deps rustc --crate-name futures_sink --edition=2018 /tmp/tmp.o8L9imxcb3/registry/futures-sink-0.3.31/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --warn=unreachable_pub --warn=unexpected_cfgs --warn=single_use_lifetimes --warn=rust_2018_idioms --warn=missing_debug_implementations --check-cfg 'cfg(futures_sanitizer)' --cfg 'feature="alloc"' --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "default", "std"))' -C metadata=2335bc9d806f8753 -C extra-filename=-2335bc9d806f8753 --out-dir /tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.o8L9imxcb3/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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.o8L9imxcb3/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 347s warning: `futures-sink` (lib) generated 1 warning (1 duplicate) 347s Compiling futures-task v0.3.31 347s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=futures_task CARGO_MANIFEST_DIR=/tmp/tmp.o8L9imxcb3/registry/futures-task-0.3.31 CARGO_MANIFEST_PATH=/tmp/tmp.o8L9imxcb3/registry/futures-task-0.3.31/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='Tools for working with tasks. 347s ' CARGO_PKG_HOMEPAGE='https://rust-lang.github.io/futures-rs' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=futures-task CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/futures-rs' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=0.3.31 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=31 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.o8L9imxcb3/target/debug/deps rustc --crate-name futures_task --edition=2018 /tmp/tmp.o8L9imxcb3/registry/futures-task-0.3.31/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --warn=unreachable_pub --warn=unexpected_cfgs --warn=single_use_lifetimes --warn=rust_2018_idioms --warn=missing_debug_implementations --check-cfg 'cfg(futures_sanitizer)' --cfg 'feature="alloc"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "cfg-target-has-atomic", "default", "std", "unstable"))' -C metadata=47c3a7d17767e18f -C extra-filename=-47c3a7d17767e18f --out-dir /tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.o8L9imxcb3/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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.o8L9imxcb3/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 347s warning: `futures-task` (lib) generated 1 warning (1 duplicate) 347s 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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0--remap-path-prefix/tmp/tmp.o8L9imxcb3/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.o8L9imxcb3/registry/serde-1.0.217 CARGO_MANIFEST_PATH=/tmp/tmp.o8L9imxcb3/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.o8L9imxcb3/target/debug/deps:/tmp/tmp.o8L9imxcb3/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/build/serde-c08ea6899e623ec6/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.o8L9imxcb3/target/debug/build/serde-c22c8603f1f999ec/build-script-build` 347s [serde 1.0.217] cargo:rerun-if-changed=build.rs 347s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_core_cstr) 347s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_core_error) 347s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_core_net) 347s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_core_num_saturating) 347s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_core_try_from) 347s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_diagnostic_namespace) 347s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_float_copysign) 347s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_num_nonzero_signed) 347s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_relaxed_trait_bounds) 347s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_serde_derive) 347s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_std_atomic) 347s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_std_atomic64) 347s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_systemtime_checked_add) 347s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_target_has_atomic) 347s 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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0--remap-path-prefix/tmp/tmp.o8L9imxcb3/registry=/usr/share/cargo/registry-Ctarget-feature=+backchain' CARGO_MANIFEST_DIR=/tmp/tmp.o8L9imxcb3/registry/gio-sys-0.20.8 CARGO_MANIFEST_PATH=/tmp/tmp.o8L9imxcb3/registry/gio-sys-0.20.8/Cargo.toml CARGO_PKG_AUTHORS='The gtk-rs Project Developers' CARGO_PKG_DESCRIPTION='FFI bindings to libgio-2.0' CARGO_PKG_HOMEPAGE='https://gtk-rs.org/' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=gio-sys CARGO_PKG_README='' CARGO_PKG_REPOSITORY='https://github.com/gtk-rs/gtk-rs-core' CARGO_PKG_RUST_VERSION=1.70 CARGO_PKG_VERSION=0.20.8 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=20 CARGO_PKG_VERSION_PATCH=8 CARGO_PKG_VERSION_PRE='' DEBUG=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.o8L9imxcb3/target/debug/deps:/tmp/tmp.o8L9imxcb3/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/build/gio-sys-0011c5829155f9ef/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.o8L9imxcb3/target/debug/build/gio-sys-fa8bb799a92b9aec/build-script-build` 347s [gio-sys 0.20.8] cargo:rerun-if-changed=/tmp/tmp.o8L9imxcb3/registry/gio-sys-0.20.8/Cargo.toml 347s [gio-sys 0.20.8] cargo:rerun-if-env-changed=GIO_2.0_NO_PKG_CONFIG 347s [gio-sys 0.20.8] cargo:rerun-if-env-changed=PKG_CONFIG_s390x-unknown-linux-gnu 347s [gio-sys 0.20.8] cargo:rerun-if-env-changed=PKG_CONFIG_s390x_unknown_linux_gnu 347s [gio-sys 0.20.8] cargo:rerun-if-env-changed=HOST_PKG_CONFIG 347s [gio-sys 0.20.8] cargo:rerun-if-env-changed=PKG_CONFIG 347s [gio-sys 0.20.8] cargo:rerun-if-env-changed=DEB_HOST_GNU_TYPE 347s [gio-sys 0.20.8] cargo:rerun-if-env-changed=PKG_CONFIG_PATH_s390x-unknown-linux-gnu 347s [gio-sys 0.20.8] cargo:rerun-if-env-changed=PKG_CONFIG_PATH_s390x_unknown_linux_gnu 347s [gio-sys 0.20.8] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_PATH 347s [gio-sys 0.20.8] cargo:rerun-if-env-changed=PKG_CONFIG_PATH 347s [gio-sys 0.20.8] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR_s390x-unknown-linux-gnu 347s [gio-sys 0.20.8] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR_s390x_unknown_linux_gnu 347s [gio-sys 0.20.8] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_LIBDIR 347s [gio-sys 0.20.8] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR 347s [gio-sys 0.20.8] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR_s390x-unknown-linux-gnu 347s [gio-sys 0.20.8] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR_s390x_unknown_linux_gnu 347s [gio-sys 0.20.8] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_SYSROOT_DIR 347s [gio-sys 0.20.8] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR 347s [gio-sys 0.20.8] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR 347s [gio-sys 0.20.8] cargo:rerun-if-env-changed=SYSROOT 347s [gio-sys 0.20.8] cargo:rerun-if-env-changed=PKG_CONFIG_s390x-unknown-linux-gnu 347s [gio-sys 0.20.8] cargo:rerun-if-env-changed=PKG_CONFIG_s390x_unknown_linux_gnu 347s [gio-sys 0.20.8] cargo:rerun-if-env-changed=HOST_PKG_CONFIG 347s [gio-sys 0.20.8] cargo:rerun-if-env-changed=PKG_CONFIG 347s [gio-sys 0.20.8] cargo:rerun-if-env-changed=DEB_HOST_GNU_TYPE 347s [gio-sys 0.20.8] cargo:rerun-if-env-changed=PKG_CONFIG_PATH_s390x-unknown-linux-gnu 347s [gio-sys 0.20.8] cargo:rerun-if-env-changed=PKG_CONFIG_PATH_s390x_unknown_linux_gnu 347s [gio-sys 0.20.8] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_PATH 347s [gio-sys 0.20.8] cargo:rerun-if-env-changed=PKG_CONFIG_PATH 347s [gio-sys 0.20.8] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR_s390x-unknown-linux-gnu 347s [gio-sys 0.20.8] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR_s390x_unknown_linux_gnu 347s [gio-sys 0.20.8] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_LIBDIR 347s [gio-sys 0.20.8] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR 347s [gio-sys 0.20.8] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR_s390x-unknown-linux-gnu 347s [gio-sys 0.20.8] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR_s390x_unknown_linux_gnu 347s [gio-sys 0.20.8] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_SYSROOT_DIR 347s [gio-sys 0.20.8] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR 347s [gio-sys 0.20.8] cargo:rustc-link-lib=gio-2.0 347s [gio-sys 0.20.8] cargo:rustc-link-lib=gobject-2.0 347s [gio-sys 0.20.8] cargo:rustc-link-lib=glib-2.0 347s [gio-sys 0.20.8] cargo:include=/usr/include:/usr/include/glib-2.0:/usr/lib/s390x-linux-gnu/glib-2.0/include:/usr/include/sysprof-6:/usr/include/libmount:/usr/include/blkid 347s [gio-sys 0.20.8] cargo:rerun-if-env-changed=SYSTEM_DEPS_BUILD_INTERNAL 347s [gio-sys 0.20.8] cargo:rerun-if-env-changed=SYSTEM_DEPS_LINK 347s [gio-sys 0.20.8] cargo:rerun-if-env-changed=SYSTEM_DEPS_GIO_2_0_LIB 347s [gio-sys 0.20.8] cargo:rerun-if-env-changed=SYSTEM_DEPS_GIO_2_0_LIB_FRAMEWORK 347s [gio-sys 0.20.8] cargo:rerun-if-env-changed=SYSTEM_DEPS_GIO_2_0_SEARCH_NATIVE 347s [gio-sys 0.20.8] cargo:rerun-if-env-changed=SYSTEM_DEPS_GIO_2_0_SEARCH_FRAMEWORK 347s [gio-sys 0.20.8] cargo:rerun-if-env-changed=SYSTEM_DEPS_GIO_2_0_INCLUDE 347s [gio-sys 0.20.8] cargo:rerun-if-env-changed=SYSTEM_DEPS_GIO_2_0_LDFLAGS 347s [gio-sys 0.20.8] cargo:rerun-if-env-changed=SYSTEM_DEPS_GIO_2_0_NO_PKG_CONFIG 347s [gio-sys 0.20.8] cargo:rerun-if-env-changed=SYSTEM_DEPS_GIO_2_0_BUILD_INTERNAL 347s [gio-sys 0.20.8] cargo:rerun-if-env-changed=SYSTEM_DEPS_GIO_2_0_LINK 347s [gio-sys 0.20.8] 347s [gio-sys 0.20.8] cargo:rustc-cfg=system_deps_have_gio_2_0 347s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=generic_array CARGO_MANIFEST_DIR=/tmp/tmp.o8L9imxcb3/registry/generic-array-0.14.7 CARGO_MANIFEST_PATH=/tmp/tmp.o8L9imxcb3/registry/generic-array-0.14.7/Cargo.toml CARGO_PKG_AUTHORS='Bartłomiej Kamiński :Aaron Trent ' CARGO_PKG_DESCRIPTION='Generic types implementing functionality of arrays' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=generic-array CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/fizyk20/generic-array.git' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.14.7 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=14 CARGO_PKG_VERSION_PATCH=7 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.o8L9imxcb3/target/debug/deps OUT_DIR=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/build/generic-array-da8fba9a25807be8/out rustc --crate-name generic_array --edition=2015 /tmp/tmp.o8L9imxcb3/registry/generic-array-0.14.7/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="more_lengths"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("more_lengths", "serde", "zeroize"))' -C metadata=d02d059964c7aee0 -C extra-filename=-d02d059964c7aee0 --out-dir /tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.o8L9imxcb3/target/debug/deps --extern typenum=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps/libtypenum-c66037e8139405ff.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.o8L9imxcb3/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain --cfg relaxed_coherence` 347s warning: unexpected `cfg` condition name: `relaxed_coherence` 347s --> /usr/share/cargo/registry/generic-array-0.14.7/src/impls.rs:136:19 347s | 347s 136 | #[cfg(relaxed_coherence)] 347s | ^^^^^^^^^^^^^^^^^ 347s ... 347s 183 | / impl_from! { 347s 184 | | 1 => ::typenum::U1, 347s 185 | | 2 => ::typenum::U2, 347s 186 | | 3 => ::typenum::U3, 347s ... | 347s 215 | | 32 => ::typenum::U32 347s 216 | | } 347s | |_- in this macro invocation 347s | 347s = help: expected names are: `clippy`, `debug_assertions`, `doc`, `docsrs`, `doctest`, `feature`, `fmt_debug`, `miri`, `overflow_checks`, `panic`, `proc_macro`, `relocation_model`, `rustfmt`, `sanitize`, `sanitizer_cfi_generalize_pointers`, `sanitizer_cfi_normalize_integers`, `target_abi`, `target_arch`, `target_endian`, `target_env`, `target_family`, `target_feature`, `target_has_atomic`, `target_has_atomic_equal_alignment`, `target_has_atomic_load_store`, `target_os`, `target_pointer_width`, `target_thread_local`, `target_vendor`, `test`, `ub_checks`, `unix`, and `windows` 347s = help: consider using a Cargo feature instead 347s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 347s [lints.rust] 347s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(relaxed_coherence)'] } 347s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(relaxed_coherence)");` to the top of the `build.rs` 347s = note: see for more information about checking conditional configuration 347s = note: `#[warn(unexpected_cfgs)]` on by default 347s = note: this warning originates in the macro `impl_from` (in Nightly builds, run with -Z macro-backtrace for more info) 347s 347s warning: unexpected `cfg` condition name: `relaxed_coherence` 347s --> /usr/share/cargo/registry/generic-array-0.14.7/src/impls.rs:158:23 347s | 347s 158 | #[cfg(not(relaxed_coherence))] 347s | ^^^^^^^^^^^^^^^^^ 347s ... 347s 183 | / impl_from! { 347s 184 | | 1 => ::typenum::U1, 347s 185 | | 2 => ::typenum::U2, 347s 186 | | 3 => ::typenum::U3, 347s ... | 347s 215 | | 32 => ::typenum::U32 347s 216 | | } 347s | |_- in this macro invocation 347s | 347s = help: consider using a Cargo feature instead 347s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 347s [lints.rust] 347s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(relaxed_coherence)'] } 347s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(relaxed_coherence)");` to the top of the `build.rs` 347s = note: see for more information about checking conditional configuration 347s = note: this warning originates in the macro `impl_from` (in Nightly builds, run with -Z macro-backtrace for more info) 347s 347s warning: unexpected `cfg` condition name: `relaxed_coherence` 347s --> /usr/share/cargo/registry/generic-array-0.14.7/src/impls.rs:136:19 347s | 347s 136 | #[cfg(relaxed_coherence)] 347s | ^^^^^^^^^^^^^^^^^ 347s ... 347s 219 | / impl_from! { 347s 220 | | 33 => ::typenum::U33, 347s 221 | | 34 => ::typenum::U34, 347s 222 | | 35 => ::typenum::U35, 347s ... | 347s 268 | | 1024 => ::typenum::U1024 347s 269 | | } 347s | |_- in this macro invocation 347s | 347s = help: consider using a Cargo feature instead 347s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 347s [lints.rust] 347s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(relaxed_coherence)'] } 347s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(relaxed_coherence)");` to the top of the `build.rs` 347s = note: see for more information about checking conditional configuration 347s = note: this warning originates in the macro `impl_from` (in Nightly builds, run with -Z macro-backtrace for more info) 347s 347s warning: unexpected `cfg` condition name: `relaxed_coherence` 347s --> /usr/share/cargo/registry/generic-array-0.14.7/src/impls.rs:158:23 347s | 347s 158 | #[cfg(not(relaxed_coherence))] 347s | ^^^^^^^^^^^^^^^^^ 347s ... 347s 219 | / impl_from! { 347s 220 | | 33 => ::typenum::U33, 347s 221 | | 34 => ::typenum::U34, 347s 222 | | 35 => ::typenum::U35, 347s ... | 347s 268 | | 1024 => ::typenum::U1024 347s 269 | | } 347s | |_- in this macro invocation 347s | 347s = help: consider using a Cargo feature instead 347s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 347s [lints.rust] 347s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(relaxed_coherence)'] } 347s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(relaxed_coherence)");` to the top of the `build.rs` 347s = note: see for more information about checking conditional configuration 347s = note: this warning originates in the macro `impl_from` (in Nightly builds, run with -Z macro-backtrace for more info) 347s 348s Compiling futures-util v0.3.31 348s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=futures_util CARGO_MANIFEST_DIR=/tmp/tmp.o8L9imxcb3/registry/futures-util-0.3.31 CARGO_MANIFEST_PATH=/tmp/tmp.o8L9imxcb3/registry/futures-util-0.3.31/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='Common utilities and extension traits for the futures-rs library. 348s ' CARGO_PKG_HOMEPAGE='https://rust-lang.github.io/futures-rs' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=futures-util CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/futures-rs' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=0.3.31 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=31 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.o8L9imxcb3/target/debug/deps rustc --crate-name futures_util --edition=2018 /tmp/tmp.o8L9imxcb3/registry/futures-util-0.3.31/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --warn=unreachable_pub --warn=unexpected_cfgs --warn=single_use_lifetimes --warn=rust_2018_idioms --warn=missing_debug_implementations --check-cfg 'cfg(futures_sanitizer)' --cfg 'feature="alloc"' --cfg 'feature="async-await"' --cfg 'feature="async-await-macro"' --cfg 'feature="default"' --cfg 'feature="futures-macro"' --cfg 'feature="futures-sink"' --cfg 'feature="sink"' --cfg 'feature="slab"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "async-await", "async-await-macro", "bilock", "channel", "default", "futures-channel", "futures-io", "futures-macro", "futures-sink", "io", "memchr", "sink", "slab", "std", "unstable", "write-all-vectored"))' -C metadata=23beed03671fe7d3 -C extra-filename=-23beed03671fe7d3 --out-dir /tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.o8L9imxcb3/target/debug/deps --extern futures_core=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps/libfutures_core-8d305950da6bf5c8.rmeta --extern futures_macro=/tmp/tmp.o8L9imxcb3/target/debug/deps/libfutures_macro-4cace2739cb7abd5.so --extern futures_sink=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps/libfutures_sink-2335bc9d806f8753.rmeta --extern futures_task=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps/libfutures_task-47c3a7d17767e18f.rmeta --extern pin_project_lite=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps/libpin_project_lite-5dc815523e98d889.rmeta --extern pin_utils=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps/libpin_utils-9646380a39f6bb39.rmeta --extern slab=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps/libslab-36320af34be0827b.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.o8L9imxcb3/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 348s warning: `generic-array` (lib) generated 5 warnings (1 duplicate) 348s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=gobject_sys CARGO_MANIFEST_DIR=/tmp/tmp.o8L9imxcb3/registry/gobject-sys-0.20.7 CARGO_MANIFEST_PATH=/tmp/tmp.o8L9imxcb3/registry/gobject-sys-0.20.7/Cargo.toml CARGO_PKG_AUTHORS='The gtk-rs Project Developers' CARGO_PKG_DESCRIPTION='FFI bindings to libgobject-2.0' CARGO_PKG_HOMEPAGE='https://gtk-rs.org/' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=gobject-sys CARGO_PKG_README='' CARGO_PKG_REPOSITORY='https://github.com/gtk-rs/gtk-rs-core' CARGO_PKG_RUST_VERSION=1.70 CARGO_PKG_VERSION=0.20.7 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=20 CARGO_PKG_VERSION_PATCH=7 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.o8L9imxcb3/target/debug/deps OUT_DIR=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/build/gobject-sys-28e6444424201f24/out rustc --crate-name gobject_sys --edition=2021 /tmp/tmp.o8L9imxcb3/registry/gobject-sys-0.20.7/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("v2_58", "v2_62", "v2_66", "v2_68", "v2_70", "v2_72", "v2_74", "v2_76", "v2_78", "v2_80", "v2_82"))' -C metadata=db6ee3adb88e406b -C extra-filename=-db6ee3adb88e406b --out-dir /tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.o8L9imxcb3/target/debug/deps --extern glib_sys=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps/libglib_sys-53b910227b38db1a.rmeta --extern libc=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps/liblibc-cf2521928ac070dc.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.o8L9imxcb3/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain -l gobject-2.0 -l glib-2.0 --cfg system_deps_have_gobject_2_0` 348s warning: unexpected `cfg` condition value: `compat` 348s --> /usr/share/cargo/registry/futures-util-0.3.31/src/lib.rs:308:7 348s | 348s 308 | #[cfg(feature = "compat")] 348s | ^^^^^^^^^^^^^^^^^^ 348s | 348s = note: expected values for `feature` are: `alloc`, `async-await`, `async-await-macro`, `bilock`, `channel`, `default`, `futures-channel`, `futures-io`, `futures-macro`, `futures-sink`, `io`, `memchr`, `sink`, `slab`, `std`, `unstable`, and `write-all-vectored` 348s = help: consider adding `compat` as a feature in `Cargo.toml` 348s = note: see for more information about checking conditional configuration 348s = note: requested on the command line with `-W unexpected-cfgs` 348s 348s warning: unexpected `cfg` condition value: `compat` 348s --> /usr/share/cargo/registry/futures-util-0.3.31/src/future/try_future/mod.rs:6:7 348s | 348s 6 | #[cfg(feature = "compat")] 348s | ^^^^^^^^^^^^^^^^^^ 348s | 348s = note: expected values for `feature` are: `alloc`, `async-await`, `async-await-macro`, `bilock`, `channel`, `default`, `futures-channel`, `futures-io`, `futures-macro`, `futures-sink`, `io`, `memchr`, `sink`, `slab`, `std`, `unstable`, and `write-all-vectored` 348s = help: consider adding `compat` as a feature in `Cargo.toml` 348s = note: see for more information about checking conditional configuration 348s 348s warning: unexpected `cfg` condition value: `compat` 348s --> /usr/share/cargo/registry/futures-util-0.3.31/src/future/try_future/mod.rs:580:11 348s | 348s 580 | #[cfg(feature = "compat")] 348s | ^^^^^^^^^^^^^^^^^^ 348s | 348s = note: expected values for `feature` are: `alloc`, `async-await`, `async-await-macro`, `bilock`, `channel`, `default`, `futures-channel`, `futures-io`, `futures-macro`, `futures-sink`, `io`, `memchr`, `sink`, `slab`, `std`, `unstable`, and `write-all-vectored` 348s = help: consider adding `compat` as a feature in `Cargo.toml` 348s = note: see for more information about checking conditional configuration 348s 348s warning: unexpected `cfg` condition value: `compat` 348s --> /usr/share/cargo/registry/futures-util-0.3.31/src/stream/try_stream/mod.rs:6:7 348s | 348s 6 | #[cfg(feature = "compat")] 348s | ^^^^^^^^^^^^^^^^^^ 348s | 348s = note: expected values for `feature` are: `alloc`, `async-await`, `async-await-macro`, `bilock`, `channel`, `default`, `futures-channel`, `futures-io`, `futures-macro`, `futures-sink`, `io`, `memchr`, `sink`, `slab`, `std`, `unstable`, and `write-all-vectored` 348s = help: consider adding `compat` as a feature in `Cargo.toml` 348s = note: see for more information about checking conditional configuration 348s 348s warning: unexpected `cfg` condition value: `compat` 348s --> /usr/share/cargo/registry/futures-util-0.3.31/src/stream/try_stream/mod.rs:1154:11 348s | 348s 1154 | #[cfg(feature = "compat")] 348s | ^^^^^^^^^^^^^^^^^^ 348s | 348s = note: expected values for `feature` are: `alloc`, `async-await`, `async-await-macro`, `bilock`, `channel`, `default`, `futures-channel`, `futures-io`, `futures-macro`, `futures-sink`, `io`, `memchr`, `sink`, `slab`, `std`, `unstable`, and `write-all-vectored` 348s = help: consider adding `compat` as a feature in `Cargo.toml` 348s = note: see for more information about checking conditional configuration 348s 348s warning: unexpected `cfg` condition value: `compat` 348s --> /usr/share/cargo/registry/futures-util-0.3.31/src/sink/mod.rs:15:7 348s | 348s 15 | #[cfg(feature = "compat")] 348s | ^^^^^^^^^^^^^^^^^^ 348s | 348s = note: expected values for `feature` are: `alloc`, `async-await`, `async-await-macro`, `bilock`, `channel`, `default`, `futures-channel`, `futures-io`, `futures-macro`, `futures-sink`, `io`, `memchr`, `sink`, `slab`, `std`, `unstable`, and `write-all-vectored` 348s = help: consider adding `compat` as a feature in `Cargo.toml` 348s = note: see for more information about checking conditional configuration 348s 348s warning: unexpected `cfg` condition value: `compat` 348s --> /usr/share/cargo/registry/futures-util-0.3.31/src/sink/mod.rs:291:11 348s | 348s 291 | #[cfg(feature = "compat")] 348s | ^^^^^^^^^^^^^^^^^^ 348s | 348s = note: expected values for `feature` are: `alloc`, `async-await`, `async-await-macro`, `bilock`, `channel`, `default`, `futures-channel`, `futures-io`, `futures-macro`, `futures-sink`, `io`, `memchr`, `sink`, `slab`, `std`, `unstable`, and `write-all-vectored` 348s = help: consider adding `compat` as a feature in `Cargo.toml` 348s = note: see for more information about checking conditional configuration 348s 348s warning: unexpected `cfg` condition value: `compat` 348s --> /usr/share/cargo/registry/futures-util-0.3.31/src/task/spawn.rs:3:7 348s | 348s 3 | #[cfg(feature = "compat")] 348s | ^^^^^^^^^^^^^^^^^^ 348s | 348s = note: expected values for `feature` are: `alloc`, `async-await`, `async-await-macro`, `bilock`, `channel`, `default`, `futures-channel`, `futures-io`, `futures-macro`, `futures-sink`, `io`, `memchr`, `sink`, `slab`, `std`, `unstable`, and `write-all-vectored` 348s = help: consider adding `compat` as a feature in `Cargo.toml` 348s = note: see for more information about checking conditional configuration 348s 348s warning: unexpected `cfg` condition value: `compat` 348s --> /usr/share/cargo/registry/futures-util-0.3.31/src/task/spawn.rs:92:11 348s | 348s 92 | #[cfg(feature = "compat")] 348s | ^^^^^^^^^^^^^^^^^^ 348s | 348s = note: expected values for `feature` are: `alloc`, `async-await`, `async-await-macro`, `bilock`, `channel`, `default`, `futures-channel`, `futures-io`, `futures-macro`, `futures-sink`, `io`, `memchr`, `sink`, `slab`, `std`, `unstable`, and `write-all-vectored` 348s = help: consider adding `compat` as a feature in `Cargo.toml` 348s = note: see for more information about checking conditional configuration 348s 348s warning: `gobject-sys` (lib) generated 1 warning (1 duplicate) 348s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=crossbeam_utils CARGO_MANIFEST_DIR=/tmp/tmp.o8L9imxcb3/registry/crossbeam-utils-0.8.19 CARGO_MANIFEST_PATH=/tmp/tmp.o8L9imxcb3/registry/crossbeam-utils-0.8.19/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='Utilities for concurrent programming' CARGO_PKG_HOMEPAGE='https://github.com/crossbeam-rs/crossbeam/tree/master/crossbeam-utils' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=crossbeam-utils CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/crossbeam-rs/crossbeam' CARGO_PKG_RUST_VERSION=1.60 CARGO_PKG_VERSION=0.8.19 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=8 CARGO_PKG_VERSION_PATCH=19 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.o8L9imxcb3/target/debug/deps OUT_DIR=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/build/crossbeam-utils-41ced09745ce2d1e/out rustc --crate-name crossbeam_utils --edition=2021 /tmp/tmp.o8L9imxcb3/registry/crossbeam-utils-0.8.19/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "nightly", "std"))' -C metadata=bcaf20eecaf4c1fc -C extra-filename=-bcaf20eecaf4c1fc --out-dir /tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.o8L9imxcb3/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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.o8L9imxcb3/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 348s warning: unexpected `cfg` condition name: `crossbeam_loom` 348s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/lib.rs:42:7 348s | 348s 42 | #[cfg(crossbeam_loom)] 348s | ^^^^^^^^^^^^^^ 348s | 348s = help: expected names are: `clippy`, `debug_assertions`, `doc`, `docsrs`, `doctest`, `feature`, `fmt_debug`, `miri`, `overflow_checks`, `panic`, `proc_macro`, `relocation_model`, `rustfmt`, `sanitize`, `sanitizer_cfi_generalize_pointers`, `sanitizer_cfi_normalize_integers`, `target_abi`, `target_arch`, `target_endian`, `target_env`, `target_family`, `target_feature`, `target_has_atomic`, `target_has_atomic_equal_alignment`, `target_has_atomic_load_store`, `target_os`, `target_pointer_width`, `target_thread_local`, `target_vendor`, `test`, `ub_checks`, `unix`, and `windows` 348s = help: consider using a Cargo feature instead 348s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 348s [lints.rust] 348s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 348s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 348s = note: see for more information about checking conditional configuration 348s = note: `#[warn(unexpected_cfgs)]` on by default 348s 348s warning: unexpected `cfg` condition name: `crossbeam_loom` 348s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/lib.rs:65:11 348s | 348s 65 | #[cfg(not(crossbeam_loom))] 348s | ^^^^^^^^^^^^^^ 348s | 348s = help: consider using a Cargo feature instead 348s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 348s [lints.rust] 348s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 348s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 348s = note: see for more information about checking conditional configuration 348s 348s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 348s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/lib.rs:74:23 348s | 348s 74 | #[cfg(not(crossbeam_no_atomic))] 348s | ^^^^^^^^^^^^^^^^^^^ 348s | 348s = help: consider using a Cargo feature instead 348s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 348s [lints.rust] 348s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 348s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 348s = note: see for more information about checking conditional configuration 348s 348s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 348s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/lib.rs:78:23 348s | 348s 78 | #[cfg(not(crossbeam_no_atomic))] 348s | ^^^^^^^^^^^^^^^^^^^ 348s | 348s = help: consider using a Cargo feature instead 348s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 348s [lints.rust] 348s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 348s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 348s = note: see for more information about checking conditional configuration 348s 348s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 348s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/lib.rs:81:23 348s | 348s 81 | #[cfg(not(crossbeam_no_atomic))] 348s | ^^^^^^^^^^^^^^^^^^^ 348s | 348s = help: consider using a Cargo feature instead 348s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 348s [lints.rust] 348s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 348s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 348s = note: see for more information about checking conditional configuration 348s 348s warning: unexpected `cfg` condition name: `crossbeam_loom` 348s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/mod.rs:7:11 348s | 348s 7 | #[cfg(not(crossbeam_loom))] 348s | ^^^^^^^^^^^^^^ 348s | 348s = help: consider using a Cargo feature instead 348s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 348s [lints.rust] 348s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 348s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 348s = note: see for more information about checking conditional configuration 348s 348s warning: unexpected `cfg` condition name: `crossbeam_loom` 348s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/mod.rs:25:11 348s | 348s 25 | #[cfg(not(crossbeam_loom))] 348s | ^^^^^^^^^^^^^^ 348s | 348s = help: consider using a Cargo feature instead 348s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 348s [lints.rust] 348s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 348s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 348s = note: see for more information about checking conditional configuration 348s 348s warning: unexpected `cfg` condition name: `crossbeam_loom` 348s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/mod.rs:28:11 348s | 348s 28 | #[cfg(not(crossbeam_loom))] 348s | ^^^^^^^^^^^^^^ 348s | 348s = help: consider using a Cargo feature instead 348s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 348s [lints.rust] 348s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 348s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 348s = note: see for more information about checking conditional configuration 348s 348s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 348s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:1:11 348s | 348s 1 | #[cfg(not(crossbeam_no_atomic))] 348s | ^^^^^^^^^^^^^^^^^^^ 348s | 348s = help: consider using a Cargo feature instead 348s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 348s [lints.rust] 348s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 348s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 348s = note: see for more information about checking conditional configuration 348s 348s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 348s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:27:11 348s | 348s 27 | #[cfg(not(crossbeam_no_atomic))] 348s | ^^^^^^^^^^^^^^^^^^^ 348s | 348s = help: consider using a Cargo feature instead 348s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 348s [lints.rust] 348s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 348s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 348s = note: see for more information about checking conditional configuration 348s 348s warning: unexpected `cfg` condition name: `crossbeam_loom` 348s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:36:19 348s | 348s 36 | not(any(miri, crossbeam_loom, crossbeam_sanitize_thread)), 348s | ^^^^^^^^^^^^^^ 348s | 348s = help: consider using a Cargo feature instead 348s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 348s [lints.rust] 348s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 348s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 348s = note: see for more information about checking conditional configuration 348s 348s warning: unexpected `cfg` condition name: `crossbeam_sanitize_thread` 348s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:36:35 348s | 348s 36 | not(any(miri, crossbeam_loom, crossbeam_sanitize_thread)), 348s | ^^^^^^^^^^^^^^^^^^^^^^^^^ 348s | 348s = help: consider using a Cargo feature instead 348s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 348s [lints.rust] 348s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_sanitize_thread)'] } 348s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_sanitize_thread)");` to the top of the `build.rs` 348s = note: see for more information about checking conditional configuration 348s 348s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 348s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:50:11 348s | 348s 50 | #[cfg(not(crossbeam_no_atomic))] 348s | ^^^^^^^^^^^^^^^^^^^ 348s | 348s = help: consider using a Cargo feature instead 348s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 348s [lints.rust] 348s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 348s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 348s = note: see for more information about checking conditional configuration 348s 348s warning: unexpected `cfg` condition name: `crossbeam_loom` 348s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:53:19 348s | 348s 53 | not(any(miri, crossbeam_loom, crossbeam_sanitize_thread)), 348s | ^^^^^^^^^^^^^^ 348s | 348s = help: consider using a Cargo feature instead 348s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 348s [lints.rust] 348s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 348s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 348s = note: see for more information about checking conditional configuration 348s 348s warning: unexpected `cfg` condition name: `crossbeam_sanitize_thread` 348s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:53:35 348s | 348s 53 | not(any(miri, crossbeam_loom, crossbeam_sanitize_thread)), 348s | ^^^^^^^^^^^^^^^^^^^^^^^^^ 348s | 348s = help: consider using a Cargo feature instead 348s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 348s [lints.rust] 348s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_sanitize_thread)'] } 348s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_sanitize_thread)");` to the top of the `build.rs` 348s = note: see for more information about checking conditional configuration 348s 348s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 348s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:101:11 348s | 348s 101 | #[cfg(not(crossbeam_no_atomic))] 348s | ^^^^^^^^^^^^^^^^^^^ 348s | 348s = help: consider using a Cargo feature instead 348s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 348s [lints.rust] 348s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 348s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 348s = note: see for more information about checking conditional configuration 348s 348s warning: unexpected `cfg` condition name: `crossbeam_loom` 348s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:107:7 348s | 348s 107 | #[cfg(crossbeam_loom)] 348s | ^^^^^^^^^^^^^^ 348s | 348s = help: consider using a Cargo feature instead 348s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 348s [lints.rust] 348s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 348s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 348s = note: see for more information about checking conditional configuration 348s 348s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 348s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:66:19 348s | 348s 66 | #[cfg(not(crossbeam_no_atomic))] 348s | ^^^^^^^^^^^^^^^^^^^ 348s ... 348s 79 | impl_atomic!(AtomicBool, bool); 348s | ------------------------------ in this macro invocation 348s | 348s = help: consider using a Cargo feature instead 348s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 348s [lints.rust] 348s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 348s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 348s = note: see for more information about checking conditional configuration 348s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 348s 348s warning: unexpected `cfg` condition name: `crossbeam_loom` 348s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:71:15 348s | 348s 71 | #[cfg(crossbeam_loom)] 348s | ^^^^^^^^^^^^^^ 348s ... 348s 79 | impl_atomic!(AtomicBool, bool); 348s | ------------------------------ in this macro invocation 348s | 348s = help: consider using a Cargo feature instead 348s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 348s [lints.rust] 348s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 348s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 348s = note: see for more information about checking conditional configuration 348s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 348s 348s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 348s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:66:19 348s | 348s 66 | #[cfg(not(crossbeam_no_atomic))] 348s | ^^^^^^^^^^^^^^^^^^^ 348s ... 348s 80 | impl_atomic!(AtomicUsize, usize); 348s | -------------------------------- in this macro invocation 348s | 348s = help: consider using a Cargo feature instead 348s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 348s [lints.rust] 348s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 348s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 348s = note: see for more information about checking conditional configuration 348s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 348s 348s warning: unexpected `cfg` condition name: `crossbeam_loom` 348s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:71:15 348s | 348s 71 | #[cfg(crossbeam_loom)] 348s | ^^^^^^^^^^^^^^ 348s ... 348s 80 | impl_atomic!(AtomicUsize, usize); 348s | -------------------------------- in this macro invocation 348s | 348s = help: consider using a Cargo feature instead 348s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 348s [lints.rust] 348s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 348s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 348s = note: see for more information about checking conditional configuration 348s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 348s 348s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 348s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:66:19 348s | 348s 66 | #[cfg(not(crossbeam_no_atomic))] 348s | ^^^^^^^^^^^^^^^^^^^ 348s ... 348s 81 | impl_atomic!(AtomicIsize, isize); 348s | -------------------------------- in this macro invocation 348s | 348s = help: consider using a Cargo feature instead 348s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 348s [lints.rust] 348s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 348s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 348s = note: see for more information about checking conditional configuration 348s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 348s 348s warning: unexpected `cfg` condition name: `crossbeam_loom` 348s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:71:15 348s | 348s 71 | #[cfg(crossbeam_loom)] 348s | ^^^^^^^^^^^^^^ 348s ... 348s 81 | impl_atomic!(AtomicIsize, isize); 348s | -------------------------------- in this macro invocation 348s | 348s = help: consider using a Cargo feature instead 348s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 348s [lints.rust] 348s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 348s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 348s = note: see for more information about checking conditional configuration 348s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 348s 348s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 348s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:66:19 348s | 348s 66 | #[cfg(not(crossbeam_no_atomic))] 348s | ^^^^^^^^^^^^^^^^^^^ 348s ... 348s 82 | impl_atomic!(AtomicU8, u8); 348s | -------------------------- in this macro invocation 348s | 348s = help: consider using a Cargo feature instead 348s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 348s [lints.rust] 348s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 348s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 348s = note: see for more information about checking conditional configuration 348s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 348s 348s warning: unexpected `cfg` condition name: `crossbeam_loom` 348s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:71:15 348s | 348s 71 | #[cfg(crossbeam_loom)] 348s | ^^^^^^^^^^^^^^ 348s ... 348s 82 | impl_atomic!(AtomicU8, u8); 348s | -------------------------- in this macro invocation 348s | 348s = help: consider using a Cargo feature instead 348s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 348s [lints.rust] 348s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 348s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 348s = note: see for more information about checking conditional configuration 348s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 348s 348s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 348s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:66:19 348s | 348s 66 | #[cfg(not(crossbeam_no_atomic))] 348s | ^^^^^^^^^^^^^^^^^^^ 348s ... 348s 83 | impl_atomic!(AtomicI8, i8); 348s | -------------------------- in this macro invocation 348s | 348s = help: consider using a Cargo feature instead 348s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 348s [lints.rust] 348s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 348s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 348s = note: see for more information about checking conditional configuration 348s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 348s 348s warning: unexpected `cfg` condition name: `crossbeam_loom` 348s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:71:15 348s | 348s 71 | #[cfg(crossbeam_loom)] 348s | ^^^^^^^^^^^^^^ 348s ... 348s 83 | impl_atomic!(AtomicI8, i8); 348s | -------------------------- in this macro invocation 348s | 348s = help: consider using a Cargo feature instead 348s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 348s [lints.rust] 348s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 348s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 348s = note: see for more information about checking conditional configuration 348s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 348s 348s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 348s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:66:19 348s | 348s 66 | #[cfg(not(crossbeam_no_atomic))] 348s | ^^^^^^^^^^^^^^^^^^^ 348s ... 348s 84 | impl_atomic!(AtomicU16, u16); 348s | ---------------------------- in this macro invocation 348s | 348s = help: consider using a Cargo feature instead 348s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 348s [lints.rust] 348s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 348s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 348s = note: see for more information about checking conditional configuration 348s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 348s 348s warning: unexpected `cfg` condition name: `crossbeam_loom` 348s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:71:15 348s | 348s 71 | #[cfg(crossbeam_loom)] 348s | ^^^^^^^^^^^^^^ 348s ... 348s 84 | impl_atomic!(AtomicU16, u16); 348s | ---------------------------- in this macro invocation 348s | 348s = help: consider using a Cargo feature instead 348s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 348s [lints.rust] 348s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 348s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 348s = note: see for more information about checking conditional configuration 348s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 348s 348s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 348s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:66:19 348s | 348s 66 | #[cfg(not(crossbeam_no_atomic))] 348s | ^^^^^^^^^^^^^^^^^^^ 348s ... 348s 85 | impl_atomic!(AtomicI16, i16); 348s | ---------------------------- in this macro invocation 348s | 348s = help: consider using a Cargo feature instead 348s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 348s [lints.rust] 348s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 348s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 348s = note: see for more information about checking conditional configuration 348s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 348s 348s warning: unexpected `cfg` condition name: `crossbeam_loom` 348s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:71:15 348s | 348s 71 | #[cfg(crossbeam_loom)] 348s | ^^^^^^^^^^^^^^ 348s ... 348s 85 | impl_atomic!(AtomicI16, i16); 348s | ---------------------------- in this macro invocation 348s | 348s = help: consider using a Cargo feature instead 348s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 348s [lints.rust] 348s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 348s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 348s = note: see for more information about checking conditional configuration 348s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 348s 348s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 348s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:66:19 348s | 348s 66 | #[cfg(not(crossbeam_no_atomic))] 348s | ^^^^^^^^^^^^^^^^^^^ 348s ... 348s 87 | impl_atomic!(AtomicU32, u32); 348s | ---------------------------- in this macro invocation 348s | 348s = help: consider using a Cargo feature instead 348s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 348s [lints.rust] 348s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 348s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 348s = note: see for more information about checking conditional configuration 348s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 348s 348s warning: unexpected `cfg` condition name: `crossbeam_loom` 348s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:71:15 348s | 348s 71 | #[cfg(crossbeam_loom)] 348s | ^^^^^^^^^^^^^^ 348s ... 348s 87 | impl_atomic!(AtomicU32, u32); 348s | ---------------------------- in this macro invocation 348s | 348s = help: consider using a Cargo feature instead 348s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 348s [lints.rust] 348s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 348s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 348s = note: see for more information about checking conditional configuration 348s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 348s 348s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 348s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:66:19 348s | 348s 66 | #[cfg(not(crossbeam_no_atomic))] 348s | ^^^^^^^^^^^^^^^^^^^ 348s ... 348s 89 | impl_atomic!(AtomicI32, i32); 348s | ---------------------------- in this macro invocation 348s | 348s = help: consider using a Cargo feature instead 348s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 348s [lints.rust] 348s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 348s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 348s = note: see for more information about checking conditional configuration 348s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 348s 348s warning: unexpected `cfg` condition name: `crossbeam_loom` 348s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:71:15 348s | 348s 71 | #[cfg(crossbeam_loom)] 348s | ^^^^^^^^^^^^^^ 348s ... 348s 89 | impl_atomic!(AtomicI32, i32); 348s | ---------------------------- in this macro invocation 348s | 348s = help: consider using a Cargo feature instead 348s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 348s [lints.rust] 348s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 348s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 348s = note: see for more information about checking conditional configuration 348s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 348s 348s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 348s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:66:19 348s | 348s 66 | #[cfg(not(crossbeam_no_atomic))] 348s | ^^^^^^^^^^^^^^^^^^^ 348s ... 348s 94 | impl_atomic!(AtomicU64, u64); 348s | ---------------------------- in this macro invocation 348s | 348s = help: consider using a Cargo feature instead 348s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 348s [lints.rust] 348s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 348s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 348s = note: see for more information about checking conditional configuration 348s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 348s 348s warning: unexpected `cfg` condition name: `crossbeam_loom` 348s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:71:15 348s | 348s 71 | #[cfg(crossbeam_loom)] 348s | ^^^^^^^^^^^^^^ 348s ... 348s 94 | impl_atomic!(AtomicU64, u64); 348s | ---------------------------- in this macro invocation 348s | 348s = help: consider using a Cargo feature instead 348s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 348s [lints.rust] 348s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 348s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 348s = note: see for more information about checking conditional configuration 348s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 348s 348s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 348s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:66:19 348s | 348s 66 | #[cfg(not(crossbeam_no_atomic))] 348s | ^^^^^^^^^^^^^^^^^^^ 348s ... 348s 99 | impl_atomic!(AtomicI64, i64); 348s | ---------------------------- in this macro invocation 348s | 348s = help: consider using a Cargo feature instead 348s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 348s [lints.rust] 348s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 348s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 348s = note: see for more information about checking conditional configuration 348s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 348s 348s warning: unexpected `cfg` condition name: `crossbeam_loom` 348s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:71:15 348s | 348s 71 | #[cfg(crossbeam_loom)] 348s | ^^^^^^^^^^^^^^ 348s ... 348s 99 | impl_atomic!(AtomicI64, i64); 348s | ---------------------------- in this macro invocation 348s | 348s = help: consider using a Cargo feature instead 348s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 348s [lints.rust] 348s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 348s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 348s = note: see for more information about checking conditional configuration 348s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 348s 348s warning: `crossbeam-utils` (lib) generated 40 warnings (1 duplicate) 348s Compiling zerocopy-derive v0.7.34 348s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=zerocopy_derive CARGO_MANIFEST_DIR=/tmp/tmp.o8L9imxcb3/registry/zerocopy-derive-0.7.34 CARGO_MANIFEST_PATH=/tmp/tmp.o8L9imxcb3/registry/zerocopy-derive-0.7.34/Cargo.toml CARGO_PKG_AUTHORS='Joshua Liebow-Feeser ' CARGO_PKG_DESCRIPTION='Custom derive for traits from the zerocopy crate' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='BSD-2-Clause OR Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=zerocopy-derive CARGO_PKG_README='' CARGO_PKG_REPOSITORY='https://github.com/google/zerocopy' CARGO_PKG_RUST_VERSION=1.60.0 CARGO_PKG_VERSION=0.7.34 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=7 CARGO_PKG_VERSION_PATCH=34 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.o8L9imxcb3/target/debug/deps rustc --crate-name zerocopy_derive --edition=2018 /tmp/tmp.o8L9imxcb3/registry/zerocopy-derive-0.7.34/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type proc-macro --emit=dep-info,link -C prefer-dynamic -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=676bad9287e184ca -C extra-filename=-676bad9287e184ca --out-dir /tmp/tmp.o8L9imxcb3/target/debug/deps -L dependency=/tmp/tmp.o8L9imxcb3/target/debug/deps --extern proc_macro2=/tmp/tmp.o8L9imxcb3/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rlib --extern quote=/tmp/tmp.o8L9imxcb3/target/debug/deps/libquote-dc92c6f25ee0f0c6.rlib --extern syn=/tmp/tmp.o8L9imxcb3/target/debug/deps/libsyn-0167beed9e699402.rlib --extern proc_macro --cap-lints warn` 350s warning: `futures-util` (lib) generated 10 warnings (1 duplicate) 350s Compiling serde_derive v1.0.217 350s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=serde_derive CARGO_MANIFEST_DIR=/tmp/tmp.o8L9imxcb3/registry/serde_derive-1.0.217 CARGO_MANIFEST_PATH=/tmp/tmp.o8L9imxcb3/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.o8L9imxcb3/target/debug/deps rustc --crate-name serde_derive --edition=2015 /tmp/tmp.o8L9imxcb3/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=85fb19fec9ccb150 -C extra-filename=-85fb19fec9ccb150 --out-dir /tmp/tmp.o8L9imxcb3/target/debug/deps -L dependency=/tmp/tmp.o8L9imxcb3/target/debug/deps --extern proc_macro2=/tmp/tmp.o8L9imxcb3/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rlib --extern quote=/tmp/tmp.o8L9imxcb3/target/debug/deps/libquote-dc92c6f25ee0f0c6.rlib --extern syn=/tmp/tmp.o8L9imxcb3/target/debug/deps/libsyn-0167beed9e699402.rlib --extern proc_macro --cap-lints warn` 350s Compiling zvariant_utils v2.1.0 350s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=zvariant_utils CARGO_MANIFEST_DIR=/tmp/tmp.o8L9imxcb3/registry/zvariant_utils-2.1.0 CARGO_MANIFEST_PATH=/tmp/tmp.o8L9imxcb3/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.o8L9imxcb3/target/debug/deps rustc --crate-name zvariant_utils --edition=2021 /tmp/tmp.o8L9imxcb3/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=555d90bad4acf190 -C extra-filename=-555d90bad4acf190 --out-dir /tmp/tmp.o8L9imxcb3/target/debug/deps -L dependency=/tmp/tmp.o8L9imxcb3/target/debug/deps --extern proc_macro2=/tmp/tmp.o8L9imxcb3/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rmeta --extern quote=/tmp/tmp.o8L9imxcb3/target/debug/deps/libquote-dc92c6f25ee0f0c6.rmeta --extern syn=/tmp/tmp.o8L9imxcb3/target/debug/deps/libsyn-0167beed9e699402.rmeta --cap-lints warn` 350s Compiling bitflags v2.8.0 350s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=bitflags CARGO_MANIFEST_DIR=/tmp/tmp.o8L9imxcb3/registry/bitflags-2.8.0 CARGO_MANIFEST_PATH=/tmp/tmp.o8L9imxcb3/registry/bitflags-2.8.0/Cargo.toml CARGO_PKG_AUTHORS='The Rust Project Developers' CARGO_PKG_DESCRIPTION='A macro to generate structures which behave like bitflags. 350s ' CARGO_PKG_HOMEPAGE='https://github.com/bitflags/bitflags' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=bitflags CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/bitflags/bitflags' CARGO_PKG_RUST_VERSION=1.56.0 CARGO_PKG_VERSION=2.8.0 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=8 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.o8L9imxcb3/target/debug/deps rustc --crate-name bitflags --edition=2021 /tmp/tmp.o8L9imxcb3/registry/bitflags-2.8.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("arbitrary", "bytemuck", "compiler_builtins", "core", "example_generated", "rustc-dep-of-std", "serde", "std"))' -C metadata=4b295667124b9dc6 -C extra-filename=-4b295667124b9dc6 --out-dir /tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.o8L9imxcb3/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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.o8L9imxcb3/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 350s warning: `bitflags` (lib) generated 1 warning (1 duplicate) 350s Compiling byteorder v1.5.0 350s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=byteorder CARGO_MANIFEST_DIR=/tmp/tmp.o8L9imxcb3/registry/byteorder-1.5.0 CARGO_MANIFEST_PATH=/tmp/tmp.o8L9imxcb3/registry/byteorder-1.5.0/Cargo.toml CARGO_PKG_AUTHORS='Andrew Gallant ' CARGO_PKG_DESCRIPTION='Library for reading/writing numbers in big-endian and little-endian.' CARGO_PKG_HOMEPAGE='https://github.com/BurntSushi/byteorder' CARGO_PKG_LICENSE='Unlicense OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=byteorder CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/BurntSushi/byteorder' CARGO_PKG_RUST_VERSION=1.60 CARGO_PKG_VERSION=1.5.0 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=5 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.o8L9imxcb3/target/debug/deps rustc --crate-name byteorder --edition=2021 /tmp/tmp.o8L9imxcb3/registry/byteorder-1.5.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "i128", "std"))' -C metadata=89ebf31d1f97ee77 -C extra-filename=-89ebf31d1f97ee77 --out-dir /tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.o8L9imxcb3/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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.o8L9imxcb3/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 350s warning: `byteorder` (lib) generated 1 warning (1 duplicate) 350s Compiling zerocopy v0.7.34 350s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=zerocopy CARGO_MANIFEST_DIR=/tmp/tmp.o8L9imxcb3/registry/zerocopy-0.7.34 CARGO_MANIFEST_PATH=/tmp/tmp.o8L9imxcb3/registry/zerocopy-0.7.34/Cargo.toml CARGO_PKG_AUTHORS='Joshua Liebow-Feeser ' CARGO_PKG_DESCRIPTION='Utilities for zero-copy parsing and serialization' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='BSD-2-Clause OR Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=zerocopy CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/google/zerocopy' CARGO_PKG_RUST_VERSION=1.60.0 CARGO_PKG_VERSION=0.7.34 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=7 CARGO_PKG_VERSION_PATCH=34 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.o8L9imxcb3/target/debug/deps rustc --crate-name zerocopy --edition=2018 /tmp/tmp.o8L9imxcb3/registry/zerocopy-0.7.34/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="byteorder"' --cfg 'feature="default"' --cfg 'feature="derive"' --cfg 'feature="simd"' --cfg 'feature="zerocopy-derive"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("__internal_use_only_features_that_work_on_stable", "alloc", "byteorder", "default", "derive", "simd", "simd-nightly", "zerocopy-derive"))' -C metadata=777d8c6c10ffcfc6 -C extra-filename=-777d8c6c10ffcfc6 --out-dir /tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.o8L9imxcb3/target/debug/deps --extern byteorder=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps/libbyteorder-89ebf31d1f97ee77.rmeta --extern zerocopy_derive=/tmp/tmp.o8L9imxcb3/target/debug/deps/libzerocopy_derive-676bad9287e184ca.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.o8L9imxcb3/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 350s warning: unnecessary qualification 350s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/util.rs:597:32 350s | 350s 597 | let remainder = t.addr() % mem::align_of::(); 350s | ^^^^^^^^^^^^^^^^^^ 350s | 350s note: the lint level is defined here 350s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:174:5 350s | 350s 174 | unused_qualifications, 350s | ^^^^^^^^^^^^^^^^^^^^^ 350s help: remove the unnecessary path segments 350s | 350s 597 - let remainder = t.addr() % mem::align_of::(); 350s 597 + let remainder = t.addr() % align_of::(); 350s | 350s 350s warning: unnecessary qualification 350s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:333:35 350s | 350s 333 | const POINTER_WIDTH_BITS: usize = mem::size_of::() * 8; 350s | ^^^^^^^^^^^^^^^^^^^^^ 350s | 350s help: remove the unnecessary path segments 350s | 350s 333 - const POINTER_WIDTH_BITS: usize = mem::size_of::() * 8; 350s 333 + const POINTER_WIDTH_BITS: usize = size_of::() * 8; 350s | 350s 350s warning: unnecessary qualification 350s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:488:44 350s | 350s 488 | align: match NonZeroUsize::new(mem::align_of::()) { 350s | ^^^^^^^^^^^^^^^^^^ 350s | 350s help: remove the unnecessary path segments 350s | 350s 488 - align: match NonZeroUsize::new(mem::align_of::()) { 350s 488 + align: match NonZeroUsize::new(align_of::()) { 350s | 350s 350s warning: unnecessary qualification 350s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:492:49 350s | 350s 492 | size_info: SizeInfo::Sized { _size: mem::size_of::() }, 350s | ^^^^^^^^^^^^^^^^^ 350s | 350s help: remove the unnecessary path segments 350s | 350s 492 - size_info: SizeInfo::Sized { _size: mem::size_of::() }, 350s 492 + size_info: SizeInfo::Sized { _size: size_of::() }, 350s | 350s 350s warning: unnecessary qualification 350s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:511:44 350s | 350s 511 | align: match NonZeroUsize::new(mem::align_of::()) { 350s | ^^^^^^^^^^^^^^^^^^ 350s | 350s help: remove the unnecessary path segments 350s | 350s 511 - align: match NonZeroUsize::new(mem::align_of::()) { 350s 511 + align: match NonZeroUsize::new(align_of::()) { 350s | 350s 350s warning: unnecessary qualification 350s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:517:29 350s | 350s 517 | _elem_size: mem::size_of::(), 350s | ^^^^^^^^^^^^^^^^^ 350s | 350s help: remove the unnecessary path segments 350s | 350s 517 - _elem_size: mem::size_of::(), 350s 517 + _elem_size: size_of::(), 350s | 350s 350s warning: unnecessary qualification 350s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:1418:19 350s | 350s 1418 | let len = mem::size_of_val(self); 350s | ^^^^^^^^^^^^^^^^ 350s | 350s help: remove the unnecessary path segments 350s | 350s 1418 - let len = mem::size_of_val(self); 350s 1418 + let len = size_of_val(self); 350s | 350s 350s warning: unnecessary qualification 350s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:2714:19 350s | 350s 2714 | let len = mem::size_of_val(self); 350s | ^^^^^^^^^^^^^^^^ 350s | 350s help: remove the unnecessary path segments 350s | 350s 2714 - let len = mem::size_of_val(self); 350s 2714 + let len = size_of_val(self); 350s | 350s 350s warning: unnecessary qualification 350s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:2789:19 350s | 350s 2789 | let len = mem::size_of_val(self); 350s | ^^^^^^^^^^^^^^^^ 350s | 350s help: remove the unnecessary path segments 350s | 350s 2789 - let len = mem::size_of_val(self); 350s 2789 + let len = size_of_val(self); 350s | 350s 350s warning: unnecessary qualification 350s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:2863:27 350s | 350s 2863 | if bytes.len() != mem::size_of_val(self) { 350s | ^^^^^^^^^^^^^^^^ 350s | 350s help: remove the unnecessary path segments 350s | 350s 2863 - if bytes.len() != mem::size_of_val(self) { 350s 2863 + if bytes.len() != size_of_val(self) { 350s | 350s 350s warning: unnecessary qualification 350s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:2920:20 350s | 350s 2920 | let size = mem::size_of_val(self); 350s | ^^^^^^^^^^^^^^^^ 350s | 350s help: remove the unnecessary path segments 350s | 350s 2920 - let size = mem::size_of_val(self); 350s 2920 + let size = size_of_val(self); 350s | 350s 350s warning: unnecessary qualification 350s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:2981:45 350s | 350s 2981 | let start = bytes.len().checked_sub(mem::size_of_val(self))?; 350s | ^^^^^^^^^^^^^^^^ 350s | 350s help: remove the unnecessary path segments 350s | 350s 2981 - let start = bytes.len().checked_sub(mem::size_of_val(self))?; 350s 2981 + let start = bytes.len().checked_sub(size_of_val(self))?; 350s | 350s 350s warning: unnecessary qualification 350s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:4161:27 350s | 350s 4161 | if bytes.len() != mem::size_of::() || !util::aligned_to::<_, T>(bytes.deref()) { 350s | ^^^^^^^^^^^^^^^^^ 350s | 350s help: remove the unnecessary path segments 350s | 350s 4161 - if bytes.len() != mem::size_of::() || !util::aligned_to::<_, T>(bytes.deref()) { 350s 4161 + if bytes.len() != size_of::() || !util::aligned_to::<_, T>(bytes.deref()) { 350s | 350s 350s warning: unnecessary qualification 350s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:4176:26 350s | 350s 4176 | if bytes.len() < mem::size_of::() || !util::aligned_to::<_, T>(bytes.deref()) { 350s | ^^^^^^^^^^^^^^^^^ 350s | 350s help: remove the unnecessary path segments 350s | 350s 4176 - if bytes.len() < mem::size_of::() || !util::aligned_to::<_, T>(bytes.deref()) { 350s 4176 + if bytes.len() < size_of::() || !util::aligned_to::<_, T>(bytes.deref()) { 350s | 350s 350s warning: unnecessary qualification 350s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:4179:46 350s | 350s 4179 | let (bytes, suffix) = bytes.split_at(mem::size_of::()); 350s | ^^^^^^^^^^^^^^^^^ 350s | 350s help: remove the unnecessary path segments 350s | 350s 4179 - let (bytes, suffix) = bytes.split_at(mem::size_of::()); 350s 4179 + let (bytes, suffix) = bytes.split_at(size_of::()); 350s | 350s 350s warning: unnecessary qualification 350s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:4194:46 350s | 350s 4194 | let split_at = bytes_len.checked_sub(mem::size_of::())?; 350s | ^^^^^^^^^^^^^^^^^ 350s | 350s help: remove the unnecessary path segments 350s | 350s 4194 - let split_at = bytes_len.checked_sub(mem::size_of::())?; 350s 4194 + let split_at = bytes_len.checked_sub(size_of::())?; 350s | 350s 350s warning: unnecessary qualification 350s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:4221:26 350s | 350s 4221 | .checked_rem(mem::size_of::()) 350s | ^^^^^^^^^^^^^^^^^ 350s | 350s help: remove the unnecessary path segments 350s | 350s 4221 - .checked_rem(mem::size_of::()) 350s 4221 + .checked_rem(size_of::()) 350s | 350s 350s warning: unnecessary qualification 350s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:4243:34 350s | 350s 4243 | let expected_len = match mem::size_of::().checked_mul(count) { 350s | ^^^^^^^^^^^^^^^^^ 350s | 350s help: remove the unnecessary path segments 350s | 350s 4243 - let expected_len = match mem::size_of::().checked_mul(count) { 350s 4243 + let expected_len = match size_of::().checked_mul(count) { 350s | 350s 350s warning: unnecessary qualification 350s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:4268:34 350s | 350s 4268 | let expected_len = match mem::size_of::().checked_mul(count) { 350s | ^^^^^^^^^^^^^^^^^ 350s | 350s help: remove the unnecessary path segments 350s | 350s 4268 - let expected_len = match mem::size_of::().checked_mul(count) { 350s 4268 + let expected_len = match size_of::().checked_mul(count) { 350s | 350s 350s warning: unnecessary qualification 350s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:4795:25 350s | 350s 4795 | let elem_size = mem::size_of::(); 350s | ^^^^^^^^^^^^^^^^^ 350s | 350s help: remove the unnecessary path segments 350s | 350s 4795 - let elem_size = mem::size_of::(); 350s 4795 + let elem_size = size_of::(); 350s | 350s 350s warning: unnecessary qualification 350s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:4825:25 350s | 350s 4825 | let elem_size = mem::size_of::(); 350s | ^^^^^^^^^^^^^^^^^ 350s | 350s help: remove the unnecessary path segments 350s | 350s 4825 - let elem_size = mem::size_of::(); 350s 4825 + let elem_size = size_of::(); 350s | 350s 351s warning: `zerocopy` (lib) generated 22 warnings (1 duplicate) 351s Compiling concurrent-queue v2.5.0 351s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=concurrent_queue CARGO_MANIFEST_DIR=/tmp/tmp.o8L9imxcb3/registry/concurrent-queue-2.5.0 CARGO_MANIFEST_PATH=/tmp/tmp.o8L9imxcb3/registry/concurrent-queue-2.5.0/Cargo.toml CARGO_PKG_AUTHORS='Stjepan Glavina :Taiki Endo :John Nunley ' CARGO_PKG_DESCRIPTION='Concurrent multi-producer multi-consumer queue' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=concurrent-queue CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/smol-rs/concurrent-queue' CARGO_PKG_RUST_VERSION=1.60 CARGO_PKG_VERSION=2.5.0 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=5 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.o8L9imxcb3/target/debug/deps rustc --crate-name concurrent_queue --edition=2021 /tmp/tmp.o8L9imxcb3/registry/concurrent-queue-2.5.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "portable-atomic", "std"))' -C metadata=9bda17a56537581e -C extra-filename=-9bda17a56537581e --out-dir /tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.o8L9imxcb3/target/debug/deps --extern crossbeam_utils=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps/libcrossbeam_utils-bcaf20eecaf4c1fc.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.o8L9imxcb3/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 351s warning: unexpected `cfg` condition name: `loom` 351s --> /usr/share/cargo/registry/concurrent-queue-2.5.0/src/bounded.rs:209:23 351s | 351s 209 | #[cfg(loom)] 351s | ^^^^ 351s | 351s = help: expected names are: `clippy`, `debug_assertions`, `doc`, `docsrs`, `doctest`, `feature`, `fmt_debug`, `miri`, `overflow_checks`, `panic`, `proc_macro`, `relocation_model`, `rustfmt`, `sanitize`, `sanitizer_cfi_generalize_pointers`, `sanitizer_cfi_normalize_integers`, `target_abi`, `target_arch`, `target_endian`, `target_env`, `target_family`, `target_feature`, `target_has_atomic`, `target_has_atomic_equal_alignment`, `target_has_atomic_load_store`, `target_os`, `target_pointer_width`, `target_thread_local`, `target_vendor`, `test`, `ub_checks`, `unix`, and `windows` 351s = help: consider using a Cargo feature instead 351s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 351s [lints.rust] 351s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(loom)'] } 351s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(loom)");` to the top of the `build.rs` 351s = note: see for more information about checking conditional configuration 351s = note: `#[warn(unexpected_cfgs)]` on by default 351s 351s warning: unexpected `cfg` condition name: `loom` 351s --> /usr/share/cargo/registry/concurrent-queue-2.5.0/src/bounded.rs:281:23 351s | 351s 281 | #[cfg(loom)] 351s | ^^^^ 351s | 351s = help: consider using a Cargo feature instead 351s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 351s [lints.rust] 351s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(loom)'] } 351s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(loom)");` to the top of the `build.rs` 351s = note: see for more information about checking conditional configuration 351s 351s warning: unexpected `cfg` condition name: `loom` 351s --> /usr/share/cargo/registry/concurrent-queue-2.5.0/src/unbounded.rs:43:15 351s | 351s 43 | #[cfg(not(loom))] 351s | ^^^^ 351s | 351s = help: consider using a Cargo feature instead 351s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 351s [lints.rust] 351s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(loom)'] } 351s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(loom)");` to the top of the `build.rs` 351s = note: see for more information about checking conditional configuration 351s 351s warning: unexpected `cfg` condition name: `loom` 351s --> /usr/share/cargo/registry/concurrent-queue-2.5.0/src/unbounded.rs:49:15 351s | 351s 49 | #[cfg(not(loom))] 351s | ^^^^ 351s | 351s = help: consider using a Cargo feature instead 351s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 351s [lints.rust] 351s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(loom)'] } 351s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(loom)");` to the top of the `build.rs` 351s = note: see for more information about checking conditional configuration 351s 351s warning: unexpected `cfg` condition name: `loom` 351s --> /usr/share/cargo/registry/concurrent-queue-2.5.0/src/unbounded.rs:54:11 351s | 351s 54 | #[cfg(loom)] 351s | ^^^^ 351s | 351s = help: consider using a Cargo feature instead 351s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 351s [lints.rust] 351s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(loom)'] } 351s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(loom)");` to the top of the `build.rs` 351s = note: see for more information about checking conditional configuration 351s 351s warning: unexpected `cfg` condition name: `loom` 351s --> /usr/share/cargo/registry/concurrent-queue-2.5.0/src/unbounded.rs:153:29 351s | 351s 153 | const_if: #[cfg(not(loom))]; 351s | ^^^^ 351s | 351s = help: consider using a Cargo feature instead 351s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 351s [lints.rust] 351s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(loom)'] } 351s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(loom)");` to the top of the `build.rs` 351s = note: see for more information about checking conditional configuration 351s 351s warning: unexpected `cfg` condition name: `loom` 351s --> /usr/share/cargo/registry/concurrent-queue-2.5.0/src/sync.rs:3:44 351s | 351s 3 | #[cfg(all(feature = "portable-atomic", not(loom)))] 351s | ^^^^ 351s | 351s = help: consider using a Cargo feature instead 351s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 351s [lints.rust] 351s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(loom)'] } 351s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(loom)");` to the top of the `build.rs` 351s = note: see for more information about checking conditional configuration 351s 351s warning: unexpected `cfg` condition name: `loom` 351s --> /usr/share/cargo/registry/concurrent-queue-2.5.0/src/sync.rs:15:49 351s | 351s 15 | #[cfg(all(not(feature = "portable-atomic"), not(loom)))] 351s | ^^^^ 351s | 351s = help: consider using a Cargo feature instead 351s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 351s [lints.rust] 351s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(loom)'] } 351s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(loom)");` to the top of the `build.rs` 351s = note: see for more information about checking conditional configuration 351s 351s warning: unexpected `cfg` condition name: `loom` 351s --> /usr/share/cargo/registry/concurrent-queue-2.5.0/src/sync.rs:31:7 351s | 351s 31 | #[cfg(loom)] 351s | ^^^^ 351s | 351s = help: consider using a Cargo feature instead 351s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 351s [lints.rust] 351s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(loom)'] } 351s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(loom)");` to the top of the `build.rs` 351s = note: see for more information about checking conditional configuration 351s 351s warning: unexpected `cfg` condition name: `loom` 351s --> /usr/share/cargo/registry/concurrent-queue-2.5.0/src/sync.rs:57:7 351s | 351s 57 | #[cfg(loom)] 351s | ^^^^ 351s | 351s = help: consider using a Cargo feature instead 351s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 351s [lints.rust] 351s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(loom)'] } 351s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(loom)");` to the top of the `build.rs` 351s = note: see for more information about checking conditional configuration 351s 351s warning: unexpected `cfg` condition name: `loom` 351s --> /usr/share/cargo/registry/concurrent-queue-2.5.0/src/sync.rs:60:11 351s | 351s 60 | #[cfg(not(loom))] 351s | ^^^^ 351s | 351s = help: consider using a Cargo feature instead 351s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 351s [lints.rust] 351s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(loom)'] } 351s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(loom)");` to the top of the `build.rs` 351s = note: see for more information about checking conditional configuration 351s 351s warning: unexpected `cfg` condition name: `loom` 351s --> /usr/share/cargo/registry/concurrent-queue-2.5.0/src/lib.rs:153:29 351s | 351s 153 | const_if: #[cfg(not(loom))]; 351s | ^^^^ 351s | 351s = help: consider using a Cargo feature instead 351s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 351s [lints.rust] 351s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(loom)'] } 351s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(loom)");` to the top of the `build.rs` 351s = note: see for more information about checking conditional configuration 351s 351s warning: unexpected `cfg` condition name: `loom` 351s --> /usr/share/cargo/registry/concurrent-queue-2.5.0/src/lib.rs:633:80 351s | 351s 633 | #[cfg(all(any(target_arch = "x86", target_arch = "x86_64"), not(miri), not(loom)))] 351s | ^^^^ 351s | 351s = help: consider using a Cargo feature instead 351s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 351s [lints.rust] 351s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(loom)'] } 351s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(loom)");` to the top of the `build.rs` 351s = note: see for more information about checking conditional configuration 351s 351s warning: `concurrent-queue` (lib) generated 14 warnings (1 duplicate) 351s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=gio_sys CARGO_MANIFEST_DIR=/tmp/tmp.o8L9imxcb3/registry/gio-sys-0.20.8 CARGO_MANIFEST_PATH=/tmp/tmp.o8L9imxcb3/registry/gio-sys-0.20.8/Cargo.toml CARGO_PKG_AUTHORS='The gtk-rs Project Developers' CARGO_PKG_DESCRIPTION='FFI bindings to libgio-2.0' CARGO_PKG_HOMEPAGE='https://gtk-rs.org/' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=gio-sys CARGO_PKG_README='' CARGO_PKG_REPOSITORY='https://github.com/gtk-rs/gtk-rs-core' CARGO_PKG_RUST_VERSION=1.70 CARGO_PKG_VERSION=0.20.8 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=20 CARGO_PKG_VERSION_PATCH=8 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.o8L9imxcb3/target/debug/deps OUT_DIR=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/build/gio-sys-0011c5829155f9ef/out rustc --crate-name gio_sys --edition=2021 /tmp/tmp.o8L9imxcb3/registry/gio-sys-0.20.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 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("v2_58", "v2_60", "v2_62", "v2_64", "v2_66", "v2_68", "v2_70", "v2_72", "v2_74", "v2_76", "v2_78", "v2_80", "v2_82", "v2_84"))' -C metadata=1dc004e0c68c0f79 -C extra-filename=-1dc004e0c68c0f79 --out-dir /tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.o8L9imxcb3/target/debug/deps --extern glib_sys=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps/libglib_sys-53b910227b38db1a.rmeta --extern gobject_sys=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps/libgobject_sys-db6ee3adb88e406b.rmeta --extern libc=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps/liblibc-cf2521928ac070dc.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.o8L9imxcb3/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain -l gio-2.0 -l gobject-2.0 -l glib-2.0 --cfg system_deps_have_gio_2_0` 352s warning: `gio-sys` (lib) generated 1 warning (1 duplicate) 352s Compiling getrandom v0.2.15 352s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=getrandom CARGO_MANIFEST_DIR=/tmp/tmp.o8L9imxcb3/registry/getrandom-0.2.15 CARGO_MANIFEST_PATH=/tmp/tmp.o8L9imxcb3/registry/getrandom-0.2.15/Cargo.toml CARGO_PKG_AUTHORS='The Rand Project Developers' CARGO_PKG_DESCRIPTION='A small cross-platform library for retrieving random data from system source' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=getrandom CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-random/getrandom' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.2.15 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=15 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.o8L9imxcb3/target/debug/deps rustc --crate-name getrandom --edition=2018 /tmp/tmp.o8L9imxcb3/registry/getrandom-0.2.15/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("compiler_builtins", "core", "custom", "linux_disable_fallback", "rdrand", "rustc-dep-of-std", "std", "test-in-browser"))' -C metadata=ed47f71499f7e17d -C extra-filename=-ed47f71499f7e17d --out-dir /tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.o8L9imxcb3/target/debug/deps --extern cfg_if=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps/libcfg_if-ff3ff84a061de73f.rmeta --extern libc=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps/liblibc-cf2521928ac070dc.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.o8L9imxcb3/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 352s warning: unexpected `cfg` condition value: `js` 352s --> /usr/share/cargo/registry/getrandom-0.2.15/src/lib.rs:334:25 352s | 352s 334 | } else if #[cfg(all(feature = "js", 352s | ^^^^^^^^^^^^^^ 352s | 352s = note: expected values for `feature` are: `compiler_builtins`, `core`, `custom`, `linux_disable_fallback`, `rdrand`, `rustc-dep-of-std`, `std`, and `test-in-browser` 352s = help: consider adding `js` as a feature in `Cargo.toml` 352s = note: see for more information about checking conditional configuration 352s = note: `#[warn(unexpected_cfgs)]` on by default 352s 352s warning: `getrandom` (lib) generated 2 warnings (1 duplicate) 352s Compiling memoffset v0.8.0 352s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.o8L9imxcb3/registry/memoffset-0.8.0 CARGO_MANIFEST_PATH=/tmp/tmp.o8L9imxcb3/registry/memoffset-0.8.0/Cargo.toml CARGO_PKG_AUTHORS='Gilad Naaman ' CARGO_PKG_DESCRIPTION='offset_of functionality for Rust structs.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=memoffset CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/Gilnaa/memoffset' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.8.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=8 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.o8L9imxcb3/target/debug/deps rustc --crate-name build_script_build --edition=2015 /tmp/tmp.o8L9imxcb3/registry/memoffset-0.8.0/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "unstable_const"))' -C metadata=b637076bbed49000 -C extra-filename=-b637076bbed49000 --out-dir /tmp/tmp.o8L9imxcb3/target/debug/build/memoffset-b637076bbed49000 -L dependency=/tmp/tmp.o8L9imxcb3/target/debug/deps --extern autocfg=/tmp/tmp.o8L9imxcb3/target/debug/deps/libautocfg-9ebcd9511383083c.rlib --cap-lints warn` 353s Compiling enumflags2_derive v0.7.10 353s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=enumflags2_derive CARGO_MANIFEST_DIR=/tmp/tmp.o8L9imxcb3/registry/enumflags2_derive-0.7.10 CARGO_MANIFEST_PATH=/tmp/tmp.o8L9imxcb3/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.o8L9imxcb3/target/debug/deps rustc --crate-name enumflags2_derive --edition=2018 /tmp/tmp.o8L9imxcb3/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=588090abb48fd7e4 -C extra-filename=-588090abb48fd7e4 --out-dir /tmp/tmp.o8L9imxcb3/target/debug/deps -L dependency=/tmp/tmp.o8L9imxcb3/target/debug/deps --extern proc_macro2=/tmp/tmp.o8L9imxcb3/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rlib --extern quote=/tmp/tmp.o8L9imxcb3/target/debug/deps/libquote-dc92c6f25ee0f0c6.rlib --extern syn=/tmp/tmp.o8L9imxcb3/target/debug/deps/libsyn-0167beed9e699402.rlib --extern proc_macro --cap-lints warn` 353s Compiling parking v2.2.0 353s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=parking CARGO_MANIFEST_DIR=/tmp/tmp.o8L9imxcb3/registry/parking-2.2.0 CARGO_MANIFEST_PATH=/tmp/tmp.o8L9imxcb3/registry/parking-2.2.0/Cargo.toml CARGO_PKG_AUTHORS='Stjepan Glavina :The Rust Project Developers' CARGO_PKG_DESCRIPTION='Thread parking and unparking' CARGO_PKG_HOMEPAGE='https://github.com/smol-rs/parking' CARGO_PKG_LICENSE='Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=parking CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/smol-rs/parking' CARGO_PKG_RUST_VERSION=1.51 CARGO_PKG_VERSION=2.2.0 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.o8L9imxcb3/target/debug/deps rustc --crate-name parking --edition=2018 /tmp/tmp.o8L9imxcb3/registry/parking-2.2.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=0a38dc17b1bc33e2 -C extra-filename=-0a38dc17b1bc33e2 --out-dir /tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.o8L9imxcb3/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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.o8L9imxcb3/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 353s warning: unexpected `cfg` condition name: `loom` 353s --> /usr/share/cargo/registry/parking-2.2.0/src/lib.rs:41:15 353s | 353s 41 | #[cfg(not(all(loom, feature = "loom")))] 353s | ^^^^ 353s | 353s = help: expected names are: `clippy`, `debug_assertions`, `doc`, `docsrs`, `doctest`, `feature`, `fmt_debug`, `miri`, `overflow_checks`, `panic`, `proc_macro`, `relocation_model`, `rustfmt`, `sanitize`, `sanitizer_cfi_generalize_pointers`, `sanitizer_cfi_normalize_integers`, `target_abi`, `target_arch`, `target_endian`, `target_env`, `target_family`, `target_feature`, `target_has_atomic`, `target_has_atomic_equal_alignment`, `target_has_atomic_load_store`, `target_os`, `target_pointer_width`, `target_thread_local`, `target_vendor`, `test`, `ub_checks`, `unix`, and `windows` 353s = help: consider using a Cargo feature instead 353s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 353s [lints.rust] 353s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(loom)'] } 353s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(loom)");` to the top of the `build.rs` 353s = note: see for more information about checking conditional configuration 353s = note: `#[warn(unexpected_cfgs)]` on by default 353s 353s warning: unexpected `cfg` condition value: `loom` 353s --> /usr/share/cargo/registry/parking-2.2.0/src/lib.rs:41:21 353s | 353s 41 | #[cfg(not(all(loom, feature = "loom")))] 353s | ^^^^^^^^^^^^^^^^ help: remove the condition 353s | 353s = note: no expected values for `feature` 353s = help: consider adding `loom` as a feature in `Cargo.toml` 353s = note: see for more information about checking conditional configuration 353s 353s warning: unexpected `cfg` condition name: `loom` 353s --> /usr/share/cargo/registry/parking-2.2.0/src/lib.rs:44:11 353s | 353s 44 | #[cfg(all(loom, feature = "loom"))] 353s | ^^^^ 353s | 353s = help: consider using a Cargo feature instead 353s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 353s [lints.rust] 353s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(loom)'] } 353s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(loom)");` to the top of the `build.rs` 353s = note: see for more information about checking conditional configuration 353s 353s warning: unexpected `cfg` condition value: `loom` 353s --> /usr/share/cargo/registry/parking-2.2.0/src/lib.rs:44:17 353s | 353s 44 | #[cfg(all(loom, feature = "loom"))] 353s | ^^^^^^^^^^^^^^^^ help: remove the condition 353s | 353s = note: no expected values for `feature` 353s = help: consider adding `loom` as a feature in `Cargo.toml` 353s = note: see for more information about checking conditional configuration 353s 353s warning: unexpected `cfg` condition name: `loom` 353s --> /usr/share/cargo/registry/parking-2.2.0/src/lib.rs:54:15 353s | 353s 54 | #[cfg(not(all(loom, feature = "loom")))] 353s | ^^^^ 353s | 353s = help: consider using a Cargo feature instead 353s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 353s [lints.rust] 353s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(loom)'] } 353s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(loom)");` to the top of the `build.rs` 353s = note: see for more information about checking conditional configuration 353s 353s warning: unexpected `cfg` condition value: `loom` 353s --> /usr/share/cargo/registry/parking-2.2.0/src/lib.rs:54:21 353s | 353s 54 | #[cfg(not(all(loom, feature = "loom")))] 353s | ^^^^^^^^^^^^^^^^ help: remove the condition 353s | 353s = note: no expected values for `feature` 353s = help: consider adding `loom` as a feature in `Cargo.toml` 353s = note: see for more information about checking conditional configuration 353s 353s warning: unexpected `cfg` condition name: `loom` 353s --> /usr/share/cargo/registry/parking-2.2.0/src/lib.rs:140:15 353s | 353s 140 | #[cfg(not(loom))] 353s | ^^^^ 353s | 353s = help: consider using a Cargo feature instead 353s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 353s [lints.rust] 353s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(loom)'] } 353s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(loom)");` to the top of the `build.rs` 353s = note: see for more information about checking conditional configuration 353s 353s warning: unexpected `cfg` condition name: `loom` 353s --> /usr/share/cargo/registry/parking-2.2.0/src/lib.rs:160:15 353s | 353s 160 | #[cfg(not(loom))] 353s | ^^^^ 353s | 353s = help: consider using a Cargo feature instead 353s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 353s [lints.rust] 353s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(loom)'] } 353s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(loom)");` to the top of the `build.rs` 353s = note: see for more information about checking conditional configuration 353s 353s warning: unexpected `cfg` condition name: `loom` 353s --> /usr/share/cargo/registry/parking-2.2.0/src/lib.rs:379:27 353s | 353s 379 | #[cfg(not(loom))] 353s | ^^^^ 353s | 353s = help: consider using a Cargo feature instead 353s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 353s [lints.rust] 353s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(loom)'] } 353s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(loom)");` to the top of the `build.rs` 353s = note: see for more information about checking conditional configuration 353s 353s warning: unexpected `cfg` condition name: `loom` 353s --> /usr/share/cargo/registry/parking-2.2.0/src/lib.rs:393:23 353s | 353s 393 | #[cfg(loom)] 353s | ^^^^ 353s | 353s = help: consider using a Cargo feature instead 353s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 353s [lints.rust] 353s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(loom)'] } 353s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(loom)");` to the top of the `build.rs` 353s = note: see for more information about checking conditional configuration 353s 354s warning: `parking` (lib) generated 11 warnings (1 duplicate) 354s Compiling cfg_aliases v0.2.1 354s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=cfg_aliases CARGO_MANIFEST_DIR=/tmp/tmp.o8L9imxcb3/registry/cfg_aliases-0.2.1 CARGO_MANIFEST_PATH=/tmp/tmp.o8L9imxcb3/registry/cfg_aliases-0.2.1/Cargo.toml CARGO_PKG_AUTHORS='Zicklag ' CARGO_PKG_DESCRIPTION='A tiny utility to help save you a lot of effort with long winded `#[cfg()]` checks.' CARGO_PKG_HOMEPAGE='https://github.com/katharostech/cfg_aliases' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=cfg_aliases CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/katharostech/cfg_aliases' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.2.1 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.o8L9imxcb3/target/debug/deps rustc --crate-name cfg_aliases --edition=2018 /tmp/tmp.o8L9imxcb3/registry/cfg_aliases-0.2.1/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 '--deny=clippy::str_to_string' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=8701cbe9ff8ee006 -C extra-filename=-8701cbe9ff8ee006 --out-dir /tmp/tmp.o8L9imxcb3/target/debug/deps -L dependency=/tmp/tmp.o8L9imxcb3/target/debug/deps --cap-lints warn` 354s Compiling nix v0.29.0 354s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.o8L9imxcb3/registry/nix-0.29.0 CARGO_MANIFEST_PATH=/tmp/tmp.o8L9imxcb3/registry/nix-0.29.0/Cargo.toml CARGO_PKG_AUTHORS='The nix-rust Project Developers' CARGO_PKG_DESCRIPTION='Rust friendly bindings to *nix APIs' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=nix CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/nix-rust/nix' CARGO_PKG_RUST_VERSION=1.69 CARGO_PKG_VERSION=0.29.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=29 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.o8L9imxcb3/target/debug/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.o8L9imxcb3/registry/nix-0.29.0/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="feature"' --cfg 'feature="memoffset"' --cfg 'feature="socket"' --cfg 'feature="uio"' --cfg 'feature="user"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("acct", "aio", "default", "dir", "env", "event", "fanotify", "feature", "fs", "hostname", "inotify", "ioctl", "kmod", "memoffset", "mman", "mount", "mqueue", "net", "personality", "pin-utils", "poll", "process", "pthread", "ptrace", "quota", "reboot", "resource", "sched", "signal", "socket", "term", "time", "ucontext", "uio", "user", "zerocopy"))' -C metadata=9cc97a3a2fcb749b -C extra-filename=-9cc97a3a2fcb749b --out-dir /tmp/tmp.o8L9imxcb3/target/debug/build/nix-9cc97a3a2fcb749b -L dependency=/tmp/tmp.o8L9imxcb3/target/debug/deps --extern cfg_aliases=/tmp/tmp.o8L9imxcb3/target/debug/deps/libcfg_aliases-8701cbe9ff8ee006.rlib --cap-lints warn` 354s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=serde CARGO_MANIFEST_DIR=/tmp/tmp.o8L9imxcb3/registry/serde-1.0.217 CARGO_MANIFEST_PATH=/tmp/tmp.o8L9imxcb3/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.o8L9imxcb3/target/debug/deps OUT_DIR=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/build/serde-c08ea6899e623ec6/out rustc --crate-name serde --edition=2018 /tmp/tmp.o8L9imxcb3/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=0e7dff716e38da0d -C extra-filename=-0e7dff716e38da0d --out-dir /tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.o8L9imxcb3/target/debug/deps --extern serde_derive=/tmp/tmp.o8L9imxcb3/target/debug/deps/libserde_derive-85fb19fec9ccb150.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.o8L9imxcb3/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)'` 354s Compiling event-listener v5.4.0 354s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=event_listener CARGO_MANIFEST_DIR=/tmp/tmp.o8L9imxcb3/registry/event-listener-5.4.0 CARGO_MANIFEST_PATH=/tmp/tmp.o8L9imxcb3/registry/event-listener-5.4.0/Cargo.toml CARGO_PKG_AUTHORS='Stjepan Glavina :John Nunley ' CARGO_PKG_DESCRIPTION='Notify async tasks or threads' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=event-listener CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/smol-rs/event-listener' CARGO_PKG_RUST_VERSION=1.60 CARGO_PKG_VERSION=5.4.0 CARGO_PKG_VERSION_MAJOR=5 CARGO_PKG_VERSION_MINOR=4 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.o8L9imxcb3/target/debug/deps rustc --crate-name event_listener --edition=2021 /tmp/tmp.o8L9imxcb3/registry/event-listener-5.4.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --warn=unexpected_cfgs --check-cfg 'cfg(loom)' --cfg 'feature="default"' --cfg 'feature="parking"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("critical-section", "default", "parking", "std"))' -C metadata=93bdad7496d4853a -C extra-filename=-93bdad7496d4853a --out-dir /tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.o8L9imxcb3/target/debug/deps --extern concurrent_queue=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps/libconcurrent_queue-9bda17a56537581e.rmeta --extern parking=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps/libparking-0a38dc17b1bc33e2.rmeta --extern pin_project_lite=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps/libpin_project_lite-5dc815523e98d889.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.o8L9imxcb3/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 354s warning: unexpected `cfg` condition value: `portable-atomic` 354s --> /usr/share/cargo/registry/event-listener-5.4.0/src/lib.rs:1362:15 354s | 354s 1362 | #[cfg(not(feature = "portable-atomic"))] 354s | ^^^^^^^^^^^^^^^^^^^^^^^^^^^ 354s | 354s = note: expected values for `feature` are: `critical-section`, `default`, `parking`, and `std` 354s = help: consider adding `portable-atomic` as a feature in `Cargo.toml` 354s = note: see for more information about checking conditional configuration 354s = note: requested on the command line with `-W unexpected-cfgs` 354s 354s warning: unexpected `cfg` condition value: `portable-atomic` 354s --> /usr/share/cargo/registry/event-listener-5.4.0/src/lib.rs:1364:15 354s | 354s 1364 | #[cfg(not(feature = "portable-atomic"))] 354s | ^^^^^^^^^^^^^^^^^^^^^^^^^^^ 354s | 354s = note: expected values for `feature` are: `critical-section`, `default`, `parking`, and `std` 354s = help: consider adding `portable-atomic` as a feature in `Cargo.toml` 354s = note: see for more information about checking conditional configuration 354s 354s warning: unexpected `cfg` condition value: `portable-atomic` 354s --> /usr/share/cargo/registry/event-listener-5.4.0/src/lib.rs:1367:11 354s | 354s 1367 | #[cfg(feature = "portable-atomic")] 354s | ^^^^^^^^^^^^^^^^^^^^^^^^^^^ 354s | 354s = note: expected values for `feature` are: `critical-section`, `default`, `parking`, and `std` 354s = help: consider adding `portable-atomic` as a feature in `Cargo.toml` 354s = note: see for more information about checking conditional configuration 354s 354s warning: unexpected `cfg` condition value: `portable-atomic` 354s --> /usr/share/cargo/registry/event-listener-5.4.0/src/lib.rs:1369:11 354s | 354s 1369 | #[cfg(feature = "portable-atomic")] 354s | ^^^^^^^^^^^^^^^^^^^^^^^^^^^ 354s | 354s = note: expected values for `feature` are: `critical-section`, `default`, `parking`, and `std` 354s = help: consider adding `portable-atomic` as a feature in `Cargo.toml` 354s = note: see for more information about checking conditional configuration 354s 354s warning: `event-listener` (lib) generated 5 warnings (1 duplicate) 354s 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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0--remap-path-prefix/tmp/tmp.o8L9imxcb3/registry=/usr/share/cargo/registry-Ctarget-feature=+backchain' CARGO_FEATURE_DEFAULT=1 CARGO_MANIFEST_DIR=/tmp/tmp.o8L9imxcb3/registry/memoffset-0.8.0 CARGO_MANIFEST_PATH=/tmp/tmp.o8L9imxcb3/registry/memoffset-0.8.0/Cargo.toml CARGO_PKG_AUTHORS='Gilad Naaman ' CARGO_PKG_DESCRIPTION='offset_of functionality for Rust structs.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=memoffset CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/Gilnaa/memoffset' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.8.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=8 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' DEBUG=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.o8L9imxcb3/target/debug/deps:/tmp/tmp.o8L9imxcb3/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/build/memoffset-b32fed70cf81e31f/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.o8L9imxcb3/target/debug/build/memoffset-b637076bbed49000/build-script-build` 354s [memoffset 0.8.0] warning: unstable feature specified for `-Ctarget-feature`: `backchain` 354s [memoffset 0.8.0] | 354s [memoffset 0.8.0] = note: this feature is not stably supported; its behavior can change in the future 354s [memoffset 0.8.0] 354s [memoffset 0.8.0] warning: 1 warning emitted 354s [memoffset 0.8.0] 354s [memoffset 0.8.0] cargo:rustc-cfg=tuple_ty 354s [memoffset 0.8.0] cargo:rustc-cfg=allow_clippy 354s [memoffset 0.8.0] cargo:rustc-cfg=maybe_uninit 354s [memoffset 0.8.0] cargo:rustc-cfg=doctests 354s [memoffset 0.8.0] cargo:rustc-cfg=raw_ref_macros 354s [memoffset 0.8.0] cargo:rustc-cfg=stable_const 354s Compiling rand_core v0.6.4 354s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=rand_core CARGO_MANIFEST_DIR=/tmp/tmp.o8L9imxcb3/registry/rand_core-0.6.4 CARGO_MANIFEST_PATH=/tmp/tmp.o8L9imxcb3/registry/rand_core-0.6.4/Cargo.toml CARGO_PKG_AUTHORS='The Rand Project Developers:The Rust Project Developers' CARGO_PKG_DESCRIPTION='Core random number generator traits and tools for implementation. 354s ' CARGO_PKG_HOMEPAGE='https://rust-random.github.io/book' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=rand_core CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-random/rand' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.6.4 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=6 CARGO_PKG_VERSION_PATCH=4 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.o8L9imxcb3/target/debug/deps rustc --crate-name rand_core --edition=2018 /tmp/tmp.o8L9imxcb3/registry/rand_core-0.6.4/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="alloc"' --cfg 'feature="getrandom"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "getrandom", "serde", "serde1", "std"))' -C metadata=3c7246ca3f419bbc -C extra-filename=-3c7246ca3f419bbc --out-dir /tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.o8L9imxcb3/target/debug/deps --extern getrandom=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps/libgetrandom-ed47f71499f7e17d.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.o8L9imxcb3/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 354s warning: unexpected `cfg` condition name: `doc_cfg` 354s --> /usr/share/cargo/registry/rand_core-0.6.4/src/lib.rs:38:13 354s | 354s 38 | #![cfg_attr(doc_cfg, feature(doc_cfg))] 354s | ^^^^^^^ 354s | 354s = help: expected names are: `clippy`, `debug_assertions`, `doc`, `docsrs`, `doctest`, `feature`, `fmt_debug`, `miri`, `overflow_checks`, `panic`, `proc_macro`, `relocation_model`, `rustfmt`, `sanitize`, `sanitizer_cfi_generalize_pointers`, `sanitizer_cfi_normalize_integers`, `target_abi`, `target_arch`, `target_endian`, `target_env`, `target_family`, `target_feature`, `target_has_atomic`, `target_has_atomic_equal_alignment`, `target_has_atomic_load_store`, `target_os`, `target_pointer_width`, `target_thread_local`, `target_vendor`, `test`, `ub_checks`, `unix`, and `windows` 354s = help: consider using a Cargo feature instead 354s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 354s [lints.rust] 354s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 354s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 354s = note: see for more information about checking conditional configuration 354s = note: `#[warn(unexpected_cfgs)]` on by default 354s 354s warning: unexpected `cfg` condition name: `doc_cfg` 354s --> /usr/share/cargo/registry/rand_core-0.6.4/src/error.rs:50:16 354s | 354s 50 | #[cfg_attr(doc_cfg, doc(cfg(feature = "std")))] 354s | ^^^^^^^ 354s | 354s = help: consider using a Cargo feature instead 354s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 354s [lints.rust] 354s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 354s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 354s = note: see for more information about checking conditional configuration 354s 354s warning: unexpected `cfg` condition name: `doc_cfg` 354s --> /usr/share/cargo/registry/rand_core-0.6.4/src/error.rs:64:16 354s | 354s 64 | #[cfg_attr(doc_cfg, doc(cfg(feature = "std")))] 354s | ^^^^^^^ 354s | 354s = help: consider using a Cargo feature instead 354s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 354s [lints.rust] 354s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 354s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 354s = note: see for more information about checking conditional configuration 354s 354s warning: unexpected `cfg` condition name: `doc_cfg` 354s --> /usr/share/cargo/registry/rand_core-0.6.4/src/error.rs:75:16 354s | 354s 75 | #[cfg_attr(doc_cfg, doc(cfg(feature = "std")))] 354s | ^^^^^^^ 354s | 354s = help: consider using a Cargo feature instead 354s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 354s [lints.rust] 354s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 354s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 354s = note: see for more information about checking conditional configuration 354s 354s warning: unexpected `cfg` condition name: `doc_cfg` 354s --> /usr/share/cargo/registry/rand_core-0.6.4/src/os.rs:46:12 354s | 354s 46 | #[cfg_attr(doc_cfg, doc(cfg(feature = "getrandom")))] 354s | ^^^^^^^ 354s | 354s = help: consider using a Cargo feature instead 354s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 354s [lints.rust] 354s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 354s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 354s = note: see for more information about checking conditional configuration 354s 354s warning: unexpected `cfg` condition name: `doc_cfg` 354s --> /usr/share/cargo/registry/rand_core-0.6.4/src/lib.rs:411:16 354s | 354s 411 | #[cfg_attr(doc_cfg, doc(cfg(feature = "getrandom")))] 354s | ^^^^^^^ 354s | 354s = help: consider using a Cargo feature instead 354s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 354s [lints.rust] 354s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 354s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 354s = note: see for more information about checking conditional configuration 354s 355s warning: `rand_core` (lib) generated 7 warnings (1 duplicate) 355s Compiling ppv-lite86 v0.2.20 355s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=ppv_lite86 CARGO_MANIFEST_DIR=/tmp/tmp.o8L9imxcb3/registry/ppv-lite86-0.2.20 CARGO_MANIFEST_PATH=/tmp/tmp.o8L9imxcb3/registry/ppv-lite86-0.2.20/Cargo.toml CARGO_PKG_AUTHORS='The CryptoCorrosion Contributors' CARGO_PKG_DESCRIPTION='Implementation of the crypto-simd API for x86' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=ppv-lite86 CARGO_PKG_README='' CARGO_PKG_REPOSITORY='https://github.com/cryptocorrosion/cryptocorrosion' CARGO_PKG_RUST_VERSION=1.61 CARGO_PKG_VERSION=0.2.20 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=20 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.o8L9imxcb3/target/debug/deps rustc --crate-name ppv_lite86 --edition=2021 /tmp/tmp.o8L9imxcb3/registry/ppv-lite86-0.2.20/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="simd"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "no_simd", "simd", "std"))' -C metadata=57e5b566e2a71c09 -C extra-filename=-57e5b566e2a71c09 --out-dir /tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.o8L9imxcb3/target/debug/deps --extern zerocopy=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps/libzerocopy-777d8c6c10ffcfc6.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.o8L9imxcb3/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 355s warning: `ppv-lite86` (lib) generated 1 warning (1 duplicate) 355s Compiling zvariant_derive v4.2.0 355s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=zvariant_derive CARGO_MANIFEST_DIR=/tmp/tmp.o8L9imxcb3/registry/zvariant_derive-4.2.0 CARGO_MANIFEST_PATH=/tmp/tmp.o8L9imxcb3/registry/zvariant_derive-4.2.0/Cargo.toml CARGO_PKG_AUTHORS='Zeeshan Ali Khan ' CARGO_PKG_DESCRIPTION='D-Bus & GVariant encoding & decoding' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=zvariant_derive CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dbus2/zbus/' CARGO_PKG_RUST_VERSION=1.75 CARGO_PKG_VERSION=4.2.0 CARGO_PKG_VERSION_MAJOR=4 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.o8L9imxcb3/target/debug/deps rustc --crate-name zvariant_derive --edition=2021 /tmp/tmp.o8L9imxcb3/registry/zvariant_derive-4.2.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type proc-macro --emit=dep-info,link -C prefer-dynamic -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=c08daefc625922fd -C extra-filename=-c08daefc625922fd --out-dir /tmp/tmp.o8L9imxcb3/target/debug/deps -L dependency=/tmp/tmp.o8L9imxcb3/target/debug/deps --extern proc_macro_crate=/tmp/tmp.o8L9imxcb3/target/debug/deps/libproc_macro_crate-76b8c9685ffc2762.rlib --extern proc_macro2=/tmp/tmp.o8L9imxcb3/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rlib --extern quote=/tmp/tmp.o8L9imxcb3/target/debug/deps/libquote-dc92c6f25ee0f0c6.rlib --extern syn=/tmp/tmp.o8L9imxcb3/target/debug/deps/libsyn-0167beed9e699402.rlib --extern zvariant_utils=/tmp/tmp.o8L9imxcb3/target/debug/deps/libzvariant_utils-555d90bad4acf190.rlib --extern proc_macro --cap-lints warn` 356s Compiling enumflags2 v0.7.10 356s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=enumflags2 CARGO_MANIFEST_DIR=/tmp/tmp.o8L9imxcb3/registry/enumflags2-0.7.10 CARGO_MANIFEST_PATH=/tmp/tmp.o8L9imxcb3/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.o8L9imxcb3/target/debug/deps rustc --crate-name enumflags2 --edition=2018 /tmp/tmp.o8L9imxcb3/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=2867d32c4b4f39e8 -C extra-filename=-2867d32c4b4f39e8 --out-dir /tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.o8L9imxcb3/target/debug/deps --extern enumflags2_derive=/tmp/tmp.o8L9imxcb3/target/debug/deps/libenumflags2_derive-588090abb48fd7e4.so --extern serde=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps/libserde-0e7dff716e38da0d.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.o8L9imxcb3/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 356s warning: `serde` (lib) generated 1 warning (1 duplicate) 356s Compiling futures-executor v0.3.31 356s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=futures_executor CARGO_MANIFEST_DIR=/tmp/tmp.o8L9imxcb3/registry/futures-executor-0.3.31 CARGO_MANIFEST_PATH=/tmp/tmp.o8L9imxcb3/registry/futures-executor-0.3.31/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='Executors for asynchronous tasks based on the futures-rs library. 356s ' CARGO_PKG_HOMEPAGE='https://rust-lang.github.io/futures-rs' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=futures-executor CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/futures-rs' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=0.3.31 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=31 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.o8L9imxcb3/target/debug/deps rustc --crate-name futures_executor --edition=2018 /tmp/tmp.o8L9imxcb3/registry/futures-executor-0.3.31/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --warn=unreachable_pub --warn=unexpected_cfgs --warn=single_use_lifetimes --warn=rust_2018_idioms --warn=missing_debug_implementations --check-cfg 'cfg(futures_sanitizer)' --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "num_cpus", "std", "thread-pool"))' -C metadata=c03816d2d75c45a0 -C extra-filename=-c03816d2d75c45a0 --out-dir /tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.o8L9imxcb3/target/debug/deps --extern futures_core=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps/libfutures_core-8d305950da6bf5c8.rmeta --extern futures_task=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps/libfutures_task-47c3a7d17767e18f.rmeta --extern futures_util=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps/libfutures_util-23beed03671fe7d3.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.o8L9imxcb3/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 356s warning: `enumflags2` (lib) generated 1 warning (1 duplicate) 356s Compiling crypto-common v0.1.6 356s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=crypto_common CARGO_MANIFEST_DIR=/tmp/tmp.o8L9imxcb3/registry/crypto-common-0.1.6 CARGO_MANIFEST_PATH=/tmp/tmp.o8L9imxcb3/registry/crypto-common-0.1.6/Cargo.toml CARGO_PKG_AUTHORS='RustCrypto Developers' CARGO_PKG_DESCRIPTION='Common cryptographic traits' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=crypto-common CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/RustCrypto/traits' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.1.6 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=6 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.o8L9imxcb3/target/debug/deps rustc --crate-name crypto_common --edition=2018 /tmp/tmp.o8L9imxcb3/registry/crypto-common-0.1.6/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("getrandom", "rand_core", "std"))' -C metadata=77cd648c700afbb2 -C extra-filename=-77cd648c700afbb2 --out-dir /tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.o8L9imxcb3/target/debug/deps --extern generic_array=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps/libgeneric_array-d02d059964c7aee0.rmeta --extern typenum=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps/libtypenum-c66037e8139405ff.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.o8L9imxcb3/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 356s warning: `crypto-common` (lib) generated 1 warning (1 duplicate) 356s Compiling block-buffer v0.10.2 356s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=block_buffer CARGO_MANIFEST_DIR=/tmp/tmp.o8L9imxcb3/registry/block-buffer-0.10.2 CARGO_MANIFEST_PATH=/tmp/tmp.o8L9imxcb3/registry/block-buffer-0.10.2/Cargo.toml CARGO_PKG_AUTHORS='RustCrypto Developers' CARGO_PKG_DESCRIPTION='Buffer type for block processing of data' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=block-buffer CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/RustCrypto/utils' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.10.2 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=10 CARGO_PKG_VERSION_PATCH=2 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.o8L9imxcb3/target/debug/deps rustc --crate-name block_buffer --edition=2018 /tmp/tmp.o8L9imxcb3/registry/block-buffer-0.10.2/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=4cd3db619b1d8e9e -C extra-filename=-4cd3db619b1d8e9e --out-dir /tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.o8L9imxcb3/target/debug/deps --extern generic_array=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps/libgeneric_array-d02d059964c7aee0.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.o8L9imxcb3/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 356s warning: `block-buffer` (lib) generated 1 warning (1 duplicate) 356s Compiling glib-macros v0.20.7 356s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=glib_macros CARGO_MANIFEST_DIR=/tmp/tmp.o8L9imxcb3/registry/glib-macros-0.20.7 CARGO_MANIFEST_PATH=/tmp/tmp.o8L9imxcb3/registry/glib-macros-0.20.7/Cargo.toml CARGO_PKG_AUTHORS='The gtk-rs Project Developers' CARGO_PKG_DESCRIPTION='Rust bindings for the GLib library, proc macros crate' CARGO_PKG_HOMEPAGE='https://gtk-rs.org/' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=glib-macros CARGO_PKG_README='' CARGO_PKG_REPOSITORY='https://github.com/gtk-rs/gtk-rs-core' CARGO_PKG_RUST_VERSION=1.70 CARGO_PKG_VERSION=0.20.7 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=20 CARGO_PKG_VERSION_PATCH=7 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.o8L9imxcb3/target/debug/deps rustc --crate-name glib_macros --edition=2021 /tmp/tmp.o8L9imxcb3/registry/glib-macros-0.20.7/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=e197971b64e0210b -C extra-filename=-e197971b64e0210b --out-dir /tmp/tmp.o8L9imxcb3/target/debug/deps -L dependency=/tmp/tmp.o8L9imxcb3/target/debug/deps --extern heck=/tmp/tmp.o8L9imxcb3/target/debug/deps/libheck-780ed41701172964.rlib --extern proc_macro_crate=/tmp/tmp.o8L9imxcb3/target/debug/deps/libproc_macro_crate-76b8c9685ffc2762.rlib --extern proc_macro2=/tmp/tmp.o8L9imxcb3/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rlib --extern quote=/tmp/tmp.o8L9imxcb3/target/debug/deps/libquote-dc92c6f25ee0f0c6.rlib --extern syn=/tmp/tmp.o8L9imxcb3/target/debug/deps/libsyn-0167beed9e699402.rlib --extern proc_macro --cap-lints warn` 356s warning: `futures-executor` (lib) generated 1 warning (1 duplicate) 356s Compiling futures-channel v0.3.31 356s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=futures_channel CARGO_MANIFEST_DIR=/tmp/tmp.o8L9imxcb3/registry/futures-channel-0.3.31 CARGO_MANIFEST_PATH=/tmp/tmp.o8L9imxcb3/registry/futures-channel-0.3.31/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='Channels for asynchronous communication using futures-rs. 356s ' CARGO_PKG_HOMEPAGE='https://rust-lang.github.io/futures-rs' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=futures-channel CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/futures-rs' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=0.3.31 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=31 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.o8L9imxcb3/target/debug/deps rustc --crate-name futures_channel --edition=2018 /tmp/tmp.o8L9imxcb3/registry/futures-channel-0.3.31/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --warn=unreachable_pub --warn=unexpected_cfgs --warn=single_use_lifetimes --warn=rust_2018_idioms --warn=missing_debug_implementations --check-cfg 'cfg(futures_sanitizer)' --cfg 'feature="alloc"' --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "cfg-target-has-atomic", "default", "futures-sink", "sink", "std", "unstable"))' -C metadata=8ed485ea134c933c -C extra-filename=-8ed485ea134c933c --out-dir /tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.o8L9imxcb3/target/debug/deps --extern futures_core=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps/libfutures_core-8d305950da6bf5c8.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.o8L9imxcb3/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 356s warning: `futures-channel` (lib) generated 1 warning (1 duplicate) 356s Compiling gdk-pixbuf-sys v0.20.7 356s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.o8L9imxcb3/registry/gdk-pixbuf-sys-0.20.7 CARGO_MANIFEST_PATH=/tmp/tmp.o8L9imxcb3/registry/gdk-pixbuf-sys-0.20.7/Cargo.toml CARGO_PKG_AUTHORS='The gtk-rs Project Developers' CARGO_PKG_DESCRIPTION='FFI bindings to libgdk_pixbuf-2.0' CARGO_PKG_HOMEPAGE='https://gtk-rs.org/' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=gdk-pixbuf-sys CARGO_PKG_README='' CARGO_PKG_REPOSITORY='https://github.com/gtk-rs/gtk-rs-core' CARGO_PKG_RUST_VERSION=1.70 CARGO_PKG_VERSION=0.20.7 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=20 CARGO_PKG_VERSION_PATCH=7 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.o8L9imxcb3/target/debug/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.o8L9imxcb3/registry/gdk-pixbuf-sys-0.20.7/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("v2_40", "v2_42"))' -C metadata=8aafb2c38cfa708b -C extra-filename=-8aafb2c38cfa708b --out-dir /tmp/tmp.o8L9imxcb3/target/debug/build/gdk-pixbuf-sys-8aafb2c38cfa708b -L dependency=/tmp/tmp.o8L9imxcb3/target/debug/deps --extern system_deps=/tmp/tmp.o8L9imxcb3/target/debug/deps/libsystem_deps-df5512f70260f2a1.rlib --cap-lints warn` 357s Compiling once_cell v1.20.2 357s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=once_cell CARGO_MANIFEST_DIR=/tmp/tmp.o8L9imxcb3/registry/once_cell-1.20.2 CARGO_MANIFEST_PATH=/tmp/tmp.o8L9imxcb3/registry/once_cell-1.20.2/Cargo.toml CARGO_PKG_AUTHORS='Aleksey Kladov ' CARGO_PKG_DESCRIPTION='Single assignment cells and lazy values.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=once_cell CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/matklad/once_cell' CARGO_PKG_RUST_VERSION=1.60 CARGO_PKG_VERSION=1.20.2 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=20 CARGO_PKG_VERSION_PATCH=2 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.o8L9imxcb3/target/debug/deps rustc --crate-name once_cell --edition=2021 /tmp/tmp.o8L9imxcb3/registry/once_cell-1.20.2/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="alloc"' --cfg 'feature="default"' --cfg 'feature="race"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "atomic-polyfill", "critical-section", "default", "parking_lot", "portable-atomic", "race", "std", "unstable"))' -C metadata=f9b984852945e4ac -C extra-filename=-f9b984852945e4ac --out-dir /tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.o8L9imxcb3/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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.o8L9imxcb3/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 357s warning: `once_cell` (lib) generated 1 warning (1 duplicate) 357s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=smallvec CARGO_MANIFEST_DIR=/tmp/tmp.o8L9imxcb3/registry/smallvec-1.13.2 CARGO_MANIFEST_PATH=/tmp/tmp.o8L9imxcb3/registry/smallvec-1.13.2/Cargo.toml CARGO_PKG_AUTHORS='The Servo Project Developers' CARGO_PKG_DESCRIPTION=''\''Small vector'\'' optimization: store up to a small number of items on the stack' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=smallvec CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/servo/rust-smallvec' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=1.13.2 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=13 CARGO_PKG_VERSION_PATCH=2 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.o8L9imxcb3/target/debug/deps rustc --crate-name smallvec --edition=2018 /tmp/tmp.o8L9imxcb3/registry/smallvec-1.13.2/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="const_generics"' --cfg 'feature="const_new"' --cfg 'feature="union"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("arbitrary", "const_generics", "const_new", "debugger_visualizer", "drain_filter", "drain_keep_rest", "may_dangle", "serde", "specialization", "union", "write"))' -C metadata=ef72c43926f60793 -C extra-filename=-ef72c43926f60793 --out-dir /tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.o8L9imxcb3/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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.o8L9imxcb3/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 357s warning: `smallvec` (lib) generated 1 warning (1 duplicate) 357s Compiling static_assertions v1.1.0 357s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=static_assertions CARGO_MANIFEST_DIR=/tmp/tmp.o8L9imxcb3/registry/static_assertions-1.1.0 CARGO_MANIFEST_PATH=/tmp/tmp.o8L9imxcb3/registry/static_assertions-1.1.0/Cargo.toml CARGO_PKG_AUTHORS='Nikolai Vazquez' CARGO_PKG_DESCRIPTION='Compile-time assertions to ensure that invariants are met.' CARGO_PKG_HOMEPAGE='https://github.com/nvzqz/static-assertions-rs' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=static_assertions CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/nvzqz/static-assertions-rs' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=1.1.0 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.o8L9imxcb3/target/debug/deps rustc --crate-name static_assertions --edition=2015 /tmp/tmp.o8L9imxcb3/registry/static_assertions-1.1.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("nightly"))' -C metadata=18df01cc327facaa -C extra-filename=-18df01cc327facaa --out-dir /tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.o8L9imxcb3/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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.o8L9imxcb3/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 357s warning: `static_assertions` (lib) generated 1 warning (1 duplicate) 357s Compiling memchr v2.7.4 357s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=memchr CARGO_MANIFEST_DIR=/tmp/tmp.o8L9imxcb3/registry/memchr-2.7.4 CARGO_MANIFEST_PATH=/tmp/tmp.o8L9imxcb3/registry/memchr-2.7.4/Cargo.toml CARGO_PKG_AUTHORS='Andrew Gallant :bluss' CARGO_PKG_DESCRIPTION='Provides extremely fast (uses SIMD on x86_64, aarch64 and wasm32) routines for 357s 1, 2 or 3 byte search and single substring search. 357s ' CARGO_PKG_HOMEPAGE='https://github.com/BurntSushi/memchr' CARGO_PKG_LICENSE='Unlicense OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=memchr CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/BurntSushi/memchr' CARGO_PKG_RUST_VERSION=1.61 CARGO_PKG_VERSION=2.7.4 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=7 CARGO_PKG_VERSION_PATCH=4 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.o8L9imxcb3/target/debug/deps rustc --crate-name memchr --edition=2021 /tmp/tmp.o8L9imxcb3/registry/memchr-2.7.4/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="alloc"' --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "compiler_builtins", "core", "default", "libc", "logging", "rustc-dep-of-std", "std", "use_std"))' -C metadata=944ab1891fd21906 -C extra-filename=-944ab1891fd21906 --out-dir /tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.o8L9imxcb3/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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.o8L9imxcb3/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 357s warning: `memchr` (lib) generated 1 warning (1 duplicate) 357s Compiling gio v0.20.7 357s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.o8L9imxcb3/registry/gio-0.20.7 CARGO_MANIFEST_PATH=/tmp/tmp.o8L9imxcb3/registry/gio-0.20.7/Cargo.toml CARGO_PKG_AUTHORS='The gtk-rs Project Developers' CARGO_PKG_DESCRIPTION='Rust bindings for the Gio library' CARGO_PKG_HOMEPAGE='https://gtk-rs.org/' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=gio CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/gtk-rs/gtk-rs-core' CARGO_PKG_RUST_VERSION=1.70 CARGO_PKG_VERSION=0.20.7 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=20 CARGO_PKG_VERSION_PATCH=7 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.o8L9imxcb3/target/debug/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.o8L9imxcb3/registry/gio-0.20.7/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("v2_58", "v2_60", "v2_62", "v2_64", "v2_66", "v2_68", "v2_70", "v2_72", "v2_74", "v2_76", "v2_78", "v2_80", "v2_82", "v2_84"))' -C metadata=7223b8593f247f9b -C extra-filename=-7223b8593f247f9b --out-dir /tmp/tmp.o8L9imxcb3/target/debug/build/gio-7223b8593f247f9b -L dependency=/tmp/tmp.o8L9imxcb3/target/debug/deps --cap-lints warn` 358s Compiling endi v1.1.0 358s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=endi CARGO_MANIFEST_DIR=/tmp/tmp.o8L9imxcb3/registry/endi-1.1.0 CARGO_MANIFEST_PATH=/tmp/tmp.o8L9imxcb3/registry/endi-1.1.0/Cargo.toml CARGO_PKG_AUTHORS='Zeeshan Ali Khan ' CARGO_PKG_DESCRIPTION='A simple endian-handling library' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=endi CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/zeenix/endi' CARGO_PKG_RUST_VERSION=1.60 CARGO_PKG_VERSION=1.1.0 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.o8L9imxcb3/target/debug/deps rustc --crate-name endi --edition=2021 /tmp/tmp.o8L9imxcb3/registry/endi-1.1.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "std"))' -C metadata=6479300693b4fccf -C extra-filename=-6479300693b4fccf --out-dir /tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.o8L9imxcb3/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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.o8L9imxcb3/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 358s warning: `endi` (lib) generated 1 warning (1 duplicate) 358s Compiling zvariant v4.2.0 358s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=zvariant CARGO_MANIFEST_DIR=/tmp/tmp.o8L9imxcb3/registry/zvariant-4.2.0 CARGO_MANIFEST_PATH=/tmp/tmp.o8L9imxcb3/registry/zvariant-4.2.0/Cargo.toml CARGO_PKG_AUTHORS='Zeeshan Ali Khan ' CARGO_PKG_DESCRIPTION='D-Bus & GVariant encoding & decoding' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=zvariant CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dbus2/zbus/' CARGO_PKG_RUST_VERSION=1.75 CARGO_PKG_VERSION=4.2.0 CARGO_PKG_VERSION_MAJOR=4 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.o8L9imxcb3/target/debug/deps rustc --crate-name zvariant --edition=2021 /tmp/tmp.o8L9imxcb3/registry/zvariant-4.2.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="enumflags2"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("arrayvec", "chrono", "default", "enumflags2", "gvariant", "heapless", "option-as-array", "ostree-tests", "serde_bytes", "time", "url", "uuid"))' -C metadata=7b45eb8446d33c11 -C extra-filename=-7b45eb8446d33c11 --out-dir /tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.o8L9imxcb3/target/debug/deps --extern endi=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps/libendi-6479300693b4fccf.rmeta --extern enumflags2=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps/libenumflags2-2867d32c4b4f39e8.rmeta --extern serde=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps/libserde-0e7dff716e38da0d.rmeta --extern static_assertions=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps/libstatic_assertions-18df01cc327facaa.rmeta --extern zvariant_derive=/tmp/tmp.o8L9imxcb3/target/debug/deps/libzvariant_derive-c08daefc625922fd.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.o8L9imxcb3/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 360s warning: `zvariant` (lib) generated 1 warning (1 duplicate) 360s 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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0--remap-path-prefix/tmp/tmp.o8L9imxcb3/registry=/usr/share/cargo/registry-Ctarget-feature=+backchain' CARGO_MANIFEST_DIR=/tmp/tmp.o8L9imxcb3/registry/gio-0.20.7 CARGO_MANIFEST_PATH=/tmp/tmp.o8L9imxcb3/registry/gio-0.20.7/Cargo.toml CARGO_PKG_AUTHORS='The gtk-rs Project Developers' CARGO_PKG_DESCRIPTION='Rust bindings for the Gio library' CARGO_PKG_HOMEPAGE='https://gtk-rs.org/' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=gio CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/gtk-rs/gtk-rs-core' CARGO_PKG_RUST_VERSION=1.70 CARGO_PKG_VERSION=0.20.7 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=20 CARGO_PKG_VERSION_PATCH=7 CARGO_PKG_VERSION_PRE='' DEBUG=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.o8L9imxcb3/target/debug/deps:/tmp/tmp.o8L9imxcb3/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/build/gio-e547ada359b08501/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.o8L9imxcb3/target/debug/build/gio-7223b8593f247f9b/build-script-build` 360s Compiling tracing-core v0.1.32 360s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=tracing_core CARGO_MANIFEST_DIR=/tmp/tmp.o8L9imxcb3/registry/tracing-core-0.1.32 CARGO_MANIFEST_PATH=/tmp/tmp.o8L9imxcb3/registry/tracing-core-0.1.32/Cargo.toml CARGO_PKG_AUTHORS='Tokio Contributors ' CARGO_PKG_DESCRIPTION='Core primitives for application-level tracing. 360s ' CARGO_PKG_HOMEPAGE='https://tokio.rs' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=tracing-core CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/tokio-rs/tracing' CARGO_PKG_RUST_VERSION=1.56.0 CARGO_PKG_VERSION=0.1.32 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=32 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.o8L9imxcb3/target/debug/deps rustc --crate-name tracing_core --edition=2018 /tmp/tmp.o8L9imxcb3/registry/tracing-core-0.1.32/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="once_cell"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "once_cell", "std", "valuable"))' -C metadata=4c8af7279fad1469 -C extra-filename=-4c8af7279fad1469 --out-dir /tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.o8L9imxcb3/target/debug/deps --extern once_cell=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps/libonce_cell-f9b984852945e4ac.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.o8L9imxcb3/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 360s warning: lint `private_in_public` has been removed: replaced with another group of lints, see RFC for more information 360s --> /usr/share/cargo/registry/tracing-core-0.1.32/src/lib.rs:138:5 360s | 360s 138 | private_in_public, 360s | ^^^^^^^^^^^^^^^^^ 360s | 360s = note: `#[warn(renamed_and_removed_lints)]` on by default 360s 360s warning: unexpected `cfg` condition value: `alloc` 360s --> /usr/share/cargo/registry/tracing-core-0.1.32/src/dispatcher.rs:147:7 360s | 360s 147 | #[cfg(feature = "alloc")] 360s | ^^^^^^^^^^^^^^^^^ 360s | 360s = note: expected values for `feature` are: `default`, `once_cell`, `std`, and `valuable` 360s = help: consider adding `alloc` as a feature in `Cargo.toml` 360s = note: see for more information about checking conditional configuration 360s = note: `#[warn(unexpected_cfgs)]` on by default 360s 360s warning: unexpected `cfg` condition value: `alloc` 360s --> /usr/share/cargo/registry/tracing-core-0.1.32/src/dispatcher.rs:150:7 360s | 360s 150 | #[cfg(feature = "alloc")] 360s | ^^^^^^^^^^^^^^^^^ 360s | 360s = note: expected values for `feature` are: `default`, `once_cell`, `std`, and `valuable` 360s = help: consider adding `alloc` as a feature in `Cargo.toml` 360s = note: see for more information about checking conditional configuration 360s 360s warning: unexpected `cfg` condition name: `tracing_unstable` 360s --> /usr/share/cargo/registry/tracing-core-0.1.32/src/field.rs:374:11 360s | 360s 374 | #[cfg(all(tracing_unstable, feature = "valuable"))] 360s | ^^^^^^^^^^^^^^^^ 360s | 360s = help: expected names are: `clippy`, `debug_assertions`, `doc`, `docsrs`, `doctest`, `feature`, `fmt_debug`, `miri`, `overflow_checks`, `panic`, `proc_macro`, `relocation_model`, `rustfmt`, `sanitize`, `sanitizer_cfi_generalize_pointers`, `sanitizer_cfi_normalize_integers`, `target_abi`, `target_arch`, `target_endian`, `target_env`, `target_family`, `target_feature`, `target_has_atomic`, `target_has_atomic_equal_alignment`, `target_has_atomic_load_store`, `target_os`, `target_pointer_width`, `target_thread_local`, `target_vendor`, `test`, `ub_checks`, `unix`, and `windows` 360s = help: consider using a Cargo feature instead 360s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 360s [lints.rust] 360s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tracing_unstable)'] } 360s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tracing_unstable)");` to the top of the `build.rs` 360s = note: see for more information about checking conditional configuration 360s 360s warning: unexpected `cfg` condition name: `tracing_unstable` 360s --> /usr/share/cargo/registry/tracing-core-0.1.32/src/field.rs:719:11 360s | 360s 719 | #[cfg(all(tracing_unstable, feature = "valuable"))] 360s | ^^^^^^^^^^^^^^^^ 360s | 360s = help: consider using a Cargo feature instead 360s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 360s [lints.rust] 360s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tracing_unstable)'] } 360s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tracing_unstable)");` to the top of the `build.rs` 360s = note: see for more information about checking conditional configuration 360s 360s warning: unexpected `cfg` condition name: `tracing_unstable` 360s --> /usr/share/cargo/registry/tracing-core-0.1.32/src/field.rs:722:11 360s | 360s 722 | #[cfg(all(tracing_unstable, feature = "valuable"))] 360s | ^^^^^^^^^^^^^^^^ 360s | 360s = help: consider using a Cargo feature instead 360s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 360s [lints.rust] 360s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tracing_unstable)'] } 360s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tracing_unstable)");` to the top of the `build.rs` 360s = note: see for more information about checking conditional configuration 360s 360s warning: unexpected `cfg` condition name: `tracing_unstable` 360s --> /usr/share/cargo/registry/tracing-core-0.1.32/src/field.rs:730:11 360s | 360s 730 | #[cfg(all(tracing_unstable, feature = "valuable"))] 360s | ^^^^^^^^^^^^^^^^ 360s | 360s = help: consider using a Cargo feature instead 360s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 360s [lints.rust] 360s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tracing_unstable)'] } 360s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tracing_unstable)");` to the top of the `build.rs` 360s = note: see for more information about checking conditional configuration 360s 360s warning: unexpected `cfg` condition name: `tracing_unstable` 360s --> /usr/share/cargo/registry/tracing-core-0.1.32/src/field.rs:733:11 360s | 360s 733 | #[cfg(all(tracing_unstable, feature = "valuable"))] 360s | ^^^^^^^^^^^^^^^^ 360s | 360s = help: consider using a Cargo feature instead 360s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 360s [lints.rust] 360s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tracing_unstable)'] } 360s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tracing_unstable)");` to the top of the `build.rs` 360s = note: see for more information about checking conditional configuration 360s 360s warning: unexpected `cfg` condition name: `tracing_unstable` 360s --> /usr/share/cargo/registry/tracing-core-0.1.32/src/field.rs:270:15 360s | 360s 270 | #[cfg(all(tracing_unstable, feature = "valuable"))] 360s | ^^^^^^^^^^^^^^^^ 360s | 360s = help: consider using a Cargo feature instead 360s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 360s [lints.rust] 360s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tracing_unstable)'] } 360s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tracing_unstable)");` to the top of the `build.rs` 360s = note: see for more information about checking conditional configuration 360s 360s warning: creating a shared reference to mutable static is discouraged 360s --> /usr/share/cargo/registry/tracing-core-0.1.32/src/dispatcher.rs:458:9 360s | 360s 458 | &GLOBAL_DISPATCH 360s | ^^^^^^^^^^^^^^^^ shared reference to mutable static 360s | 360s = note: for more information, see 360s = note: shared references to mutable statics are dangerous; it's undefined behavior if the static is mutated or if a mutable reference is created for it while the shared reference lives 360s = note: `#[warn(static_mut_refs)]` on by default 360s help: use `&raw const` instead to create a raw pointer 360s | 360s 458 | &raw const GLOBAL_DISPATCH 360s | ~~~~~~~~~~ 360s 361s Compiling glib v0.20.7 361s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=glib CARGO_MANIFEST_DIR=/tmp/tmp.o8L9imxcb3/registry/glib-0.20.7 CARGO_MANIFEST_PATH=/tmp/tmp.o8L9imxcb3/registry/glib-0.20.7/Cargo.toml CARGO_PKG_AUTHORS='The gtk-rs Project Developers' CARGO_PKG_DESCRIPTION='Rust bindings for the GLib library' CARGO_PKG_HOMEPAGE='https://gtk-rs.org/' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=glib CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/gtk-rs/gtk-rs-core' CARGO_PKG_RUST_VERSION=1.70 CARGO_PKG_VERSION=0.20.7 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=20 CARGO_PKG_VERSION_PATCH=7 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.o8L9imxcb3/target/debug/deps rustc --crate-name glib --edition=2021 /tmp/tmp.o8L9imxcb3/registry/glib-0.20.7/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="gio"' --cfg 'feature="gio-sys"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("compiletests", "default", "gio", "gio-sys", "log", "log_macros", "rs-log", "v2_58", "v2_60", "v2_62", "v2_64", "v2_66", "v2_68", "v2_70", "v2_72", "v2_74", "v2_76", "v2_78", "v2_80", "v2_82", "v2_84"))' -C metadata=1afbd60e7b499506 -C extra-filename=-1afbd60e7b499506 --out-dir /tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.o8L9imxcb3/target/debug/deps --extern bitflags=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps/libbitflags-4b295667124b9dc6.rmeta --extern futures_channel=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps/libfutures_channel-8ed485ea134c933c.rmeta --extern futures_core=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps/libfutures_core-8d305950da6bf5c8.rmeta --extern futures_executor=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps/libfutures_executor-c03816d2d75c45a0.rmeta --extern futures_task=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps/libfutures_task-47c3a7d17767e18f.rmeta --extern futures_util=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps/libfutures_util-23beed03671fe7d3.rmeta --extern gio_sys=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps/libgio_sys-1dc004e0c68c0f79.rmeta --extern glib_macros=/tmp/tmp.o8L9imxcb3/target/debug/deps/libglib_macros-e197971b64e0210b.so --extern glib_sys=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps/libglib_sys-53b910227b38db1a.rmeta --extern gobject_sys=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps/libgobject_sys-db6ee3adb88e406b.rmeta --extern libc=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps/liblibc-cf2521928ac070dc.rmeta --extern memchr=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps/libmemchr-944ab1891fd21906.rmeta --extern smallvec=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps/libsmallvec-ef72c43926f60793.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.o8L9imxcb3/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 361s warning: `tracing-core` (lib) generated 11 warnings (1 duplicate) 361s 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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0--remap-path-prefix/tmp/tmp.o8L9imxcb3/registry=/usr/share/cargo/registry-Ctarget-feature=+backchain' CARGO_MANIFEST_DIR=/tmp/tmp.o8L9imxcb3/registry/gdk-pixbuf-sys-0.20.7 CARGO_MANIFEST_PATH=/tmp/tmp.o8L9imxcb3/registry/gdk-pixbuf-sys-0.20.7/Cargo.toml CARGO_PKG_AUTHORS='The gtk-rs Project Developers' CARGO_PKG_DESCRIPTION='FFI bindings to libgdk_pixbuf-2.0' CARGO_PKG_HOMEPAGE='https://gtk-rs.org/' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=gdk-pixbuf-sys CARGO_PKG_README='' CARGO_PKG_REPOSITORY='https://github.com/gtk-rs/gtk-rs-core' CARGO_PKG_RUST_VERSION=1.70 CARGO_PKG_VERSION=0.20.7 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=20 CARGO_PKG_VERSION_PATCH=7 CARGO_PKG_VERSION_PRE='' DEBUG=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.o8L9imxcb3/target/debug/deps:/tmp/tmp.o8L9imxcb3/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/build/gdk-pixbuf-sys-ab4c33b0ec0f5591/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.o8L9imxcb3/target/debug/build/gdk-pixbuf-sys-8aafb2c38cfa708b/build-script-build` 361s [gdk-pixbuf-sys 0.20.7] cargo:rerun-if-changed=/tmp/tmp.o8L9imxcb3/registry/gdk-pixbuf-sys-0.20.7/Cargo.toml 361s [gdk-pixbuf-sys 0.20.7] cargo:rerun-if-env-changed=GDK_PIXBUF_2.0_NO_PKG_CONFIG 361s [gdk-pixbuf-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_s390x-unknown-linux-gnu 361s [gdk-pixbuf-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_s390x_unknown_linux_gnu 361s [gdk-pixbuf-sys 0.20.7] cargo:rerun-if-env-changed=HOST_PKG_CONFIG 361s [gdk-pixbuf-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG 361s [gdk-pixbuf-sys 0.20.7] cargo:rerun-if-env-changed=DEB_HOST_GNU_TYPE 361s [gdk-pixbuf-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_PATH_s390x-unknown-linux-gnu 361s [gdk-pixbuf-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_PATH_s390x_unknown_linux_gnu 361s [gdk-pixbuf-sys 0.20.7] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_PATH 361s [gdk-pixbuf-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_PATH 361s [gdk-pixbuf-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR_s390x-unknown-linux-gnu 361s [gdk-pixbuf-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR_s390x_unknown_linux_gnu 361s [gdk-pixbuf-sys 0.20.7] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_LIBDIR 361s [gdk-pixbuf-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR 361s [gdk-pixbuf-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR_s390x-unknown-linux-gnu 361s [gdk-pixbuf-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR_s390x_unknown_linux_gnu 361s [gdk-pixbuf-sys 0.20.7] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_SYSROOT_DIR 361s [gdk-pixbuf-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR 361s [gdk-pixbuf-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR 361s [gdk-pixbuf-sys 0.20.7] cargo:rerun-if-env-changed=SYSROOT 361s [gdk-pixbuf-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_s390x-unknown-linux-gnu 361s [gdk-pixbuf-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_s390x_unknown_linux_gnu 361s [gdk-pixbuf-sys 0.20.7] cargo:rerun-if-env-changed=HOST_PKG_CONFIG 361s [gdk-pixbuf-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG 361s [gdk-pixbuf-sys 0.20.7] cargo:rerun-if-env-changed=DEB_HOST_GNU_TYPE 361s [gdk-pixbuf-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_PATH_s390x-unknown-linux-gnu 361s [gdk-pixbuf-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_PATH_s390x_unknown_linux_gnu 361s [gdk-pixbuf-sys 0.20.7] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_PATH 361s [gdk-pixbuf-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_PATH 361s [gdk-pixbuf-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR_s390x-unknown-linux-gnu 361s [gdk-pixbuf-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR_s390x_unknown_linux_gnu 361s [gdk-pixbuf-sys 0.20.7] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_LIBDIR 361s [gdk-pixbuf-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR 361s [gdk-pixbuf-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR_s390x-unknown-linux-gnu 361s [gdk-pixbuf-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR_s390x_unknown_linux_gnu 361s [gdk-pixbuf-sys 0.20.7] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_SYSROOT_DIR 361s [gdk-pixbuf-sys 0.20.7] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR 361s [gdk-pixbuf-sys 0.20.7] cargo:rustc-link-lib=gdk_pixbuf-2.0 361s [gdk-pixbuf-sys 0.20.7] cargo:rustc-link-lib=gobject-2.0 361s [gdk-pixbuf-sys 0.20.7] cargo:rustc-link-lib=glib-2.0 361s [gdk-pixbuf-sys 0.20.7] cargo:include=/usr/include/gdk-pixbuf-2.0:/usr/include:/usr/include/glib-2.0:/usr/lib/s390x-linux-gnu/glib-2.0/include:/usr/include/sysprof-6:/usr/include/libpng16:/usr/include/s390x-linux-gnu:/usr/include/webp:/usr/include/libmount:/usr/include/blkid 361s [gdk-pixbuf-sys 0.20.7] cargo:rerun-if-env-changed=SYSTEM_DEPS_BUILD_INTERNAL 361s [gdk-pixbuf-sys 0.20.7] cargo:rerun-if-env-changed=SYSTEM_DEPS_LINK 361s [gdk-pixbuf-sys 0.20.7] cargo:rerun-if-env-changed=SYSTEM_DEPS_GDK_PIXBUF_2_0_LIB 361s [gdk-pixbuf-sys 0.20.7] cargo:rerun-if-env-changed=SYSTEM_DEPS_GDK_PIXBUF_2_0_LIB_FRAMEWORK 361s [gdk-pixbuf-sys 0.20.7] cargo:rerun-if-env-changed=SYSTEM_DEPS_GDK_PIXBUF_2_0_SEARCH_NATIVE 361s [gdk-pixbuf-sys 0.20.7] cargo:rerun-if-env-changed=SYSTEM_DEPS_GDK_PIXBUF_2_0_SEARCH_FRAMEWORK 361s [gdk-pixbuf-sys 0.20.7] cargo:rerun-if-env-changed=SYSTEM_DEPS_GDK_PIXBUF_2_0_INCLUDE 361s [gdk-pixbuf-sys 0.20.7] cargo:rerun-if-env-changed=SYSTEM_DEPS_GDK_PIXBUF_2_0_LDFLAGS 361s [gdk-pixbuf-sys 0.20.7] cargo:rerun-if-env-changed=SYSTEM_DEPS_GDK_PIXBUF_2_0_NO_PKG_CONFIG 361s [gdk-pixbuf-sys 0.20.7] cargo:rerun-if-env-changed=SYSTEM_DEPS_GDK_PIXBUF_2_0_BUILD_INTERNAL 361s [gdk-pixbuf-sys 0.20.7] cargo:rerun-if-env-changed=SYSTEM_DEPS_GDK_PIXBUF_2_0_LINK 361s [gdk-pixbuf-sys 0.20.7] 361s [gdk-pixbuf-sys 0.20.7] cargo:rustc-cfg=system_deps_have_gdk_pixbuf_2_0 361s Compiling digest v0.10.7 361s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=digest CARGO_MANIFEST_DIR=/tmp/tmp.o8L9imxcb3/registry/digest-0.10.7 CARGO_MANIFEST_PATH=/tmp/tmp.o8L9imxcb3/registry/digest-0.10.7/Cargo.toml CARGO_PKG_AUTHORS='RustCrypto Developers' CARGO_PKG_DESCRIPTION='Traits for cryptographic hash functions and message authentication codes' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=digest CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/RustCrypto/traits' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.10.7 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=10 CARGO_PKG_VERSION_PATCH=7 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.o8L9imxcb3/target/debug/deps rustc --crate-name digest --edition=2018 /tmp/tmp.o8L9imxcb3/registry/digest-0.10.7/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="alloc"' --cfg 'feature="block-buffer"' --cfg 'feature="core-api"' --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "blobby", "block-buffer", "const-oid", "core-api", "default", "dev", "mac", "oid", "rand_core", "std", "subtle"))' -C metadata=027272cf65436a63 -C extra-filename=-027272cf65436a63 --out-dir /tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.o8L9imxcb3/target/debug/deps --extern block_buffer=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps/libblock_buffer-4cd3db619b1d8e9e.rmeta --extern crypto_common=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps/libcrypto_common-77cd648c700afbb2.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.o8L9imxcb3/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 361s warning: `digest` (lib) generated 1 warning (1 duplicate) 361s Compiling rand_chacha v0.3.1 361s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=rand_chacha CARGO_MANIFEST_DIR=/tmp/tmp.o8L9imxcb3/registry/rand_chacha-0.3.1 CARGO_MANIFEST_PATH=/tmp/tmp.o8L9imxcb3/registry/rand_chacha-0.3.1/Cargo.toml CARGO_PKG_AUTHORS='The Rand Project Developers:The Rust Project Developers:The CryptoCorrosion Contributors' CARGO_PKG_DESCRIPTION='ChaCha random number generator 361s ' CARGO_PKG_HOMEPAGE='https://rust-random.github.io/book' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=rand_chacha CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-random/rand' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.3.1 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.o8L9imxcb3/target/debug/deps rustc --crate-name rand_chacha --edition=2018 /tmp/tmp.o8L9imxcb3/registry/rand_chacha-0.3.1/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "serde", "serde1", "simd", "std"))' -C metadata=dd56c23de683d750 -C extra-filename=-dd56c23de683d750 --out-dir /tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.o8L9imxcb3/target/debug/deps --extern ppv_lite86=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps/libppv_lite86-57e5b566e2a71c09.rmeta --extern rand_core=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps/librand_core-3c7246ca3f419bbc.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.o8L9imxcb3/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 361s warning: `rand_chacha` (lib) generated 1 warning (1 duplicate) 361s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=memoffset CARGO_MANIFEST_DIR=/tmp/tmp.o8L9imxcb3/registry/memoffset-0.8.0 CARGO_MANIFEST_PATH=/tmp/tmp.o8L9imxcb3/registry/memoffset-0.8.0/Cargo.toml CARGO_PKG_AUTHORS='Gilad Naaman ' CARGO_PKG_DESCRIPTION='offset_of functionality for Rust structs.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=memoffset CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/Gilnaa/memoffset' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.8.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=8 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.o8L9imxcb3/target/debug/deps OUT_DIR=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/build/memoffset-b32fed70cf81e31f/out rustc --crate-name memoffset --edition=2015 /tmp/tmp.o8L9imxcb3/registry/memoffset-0.8.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "unstable_const"))' -C metadata=2f432c32070b84ca -C extra-filename=-2f432c32070b84ca --out-dir /tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.o8L9imxcb3/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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.o8L9imxcb3/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain --cfg tuple_ty --cfg allow_clippy --cfg maybe_uninit --cfg doctests --cfg raw_ref_macros --cfg stable_const` 361s warning: unexpected `cfg` condition name: `stable_const` 361s --> /usr/share/cargo/registry/memoffset-0.8.0/src/lib.rs:60:41 361s | 361s 60 | all(feature = "unstable_const", not(stable_const)), 361s | ^^^^^^^^^^^^ 361s | 361s = help: expected names are: `clippy`, `debug_assertions`, `doc`, `docsrs`, `doctest`, `feature`, `fmt_debug`, `miri`, `overflow_checks`, `panic`, `proc_macro`, `relocation_model`, `rustfmt`, `sanitize`, `sanitizer_cfi_generalize_pointers`, `sanitizer_cfi_normalize_integers`, `target_abi`, `target_arch`, `target_endian`, `target_env`, `target_family`, `target_feature`, `target_has_atomic`, `target_has_atomic_equal_alignment`, `target_has_atomic_load_store`, `target_os`, `target_pointer_width`, `target_thread_local`, `target_vendor`, `test`, `ub_checks`, `unix`, and `windows` 361s = help: consider using a Cargo feature instead 361s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 361s [lints.rust] 361s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(stable_const)'] } 361s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(stable_const)");` to the top of the `build.rs` 361s = note: see for more information about checking conditional configuration 361s = note: `#[warn(unexpected_cfgs)]` on by default 361s 361s warning: unexpected `cfg` condition name: `doctests` 361s --> /usr/share/cargo/registry/memoffset-0.8.0/src/lib.rs:66:7 361s | 361s 66 | #[cfg(doctests)] 361s | ^^^^^^^^ help: there is a config with a similar name: `doctest` 361s | 361s = help: consider using a Cargo feature instead 361s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 361s [lints.rust] 361s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doctests)'] } 361s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doctests)");` to the top of the `build.rs` 361s = note: see for more information about checking conditional configuration 361s 361s warning: unexpected `cfg` condition name: `doctests` 361s --> /usr/share/cargo/registry/memoffset-0.8.0/src/lib.rs:69:7 361s | 361s 69 | #[cfg(doctests)] 361s | ^^^^^^^^ help: there is a config with a similar name: `doctest` 361s | 361s = help: consider using a Cargo feature instead 361s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 361s [lints.rust] 361s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doctests)'] } 361s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doctests)");` to the top of the `build.rs` 361s = note: see for more information about checking conditional configuration 361s 361s warning: unexpected `cfg` condition name: `raw_ref_macros` 361s --> /usr/share/cargo/registry/memoffset-0.8.0/src/raw_field.rs:22:7 361s | 361s 22 | #[cfg(raw_ref_macros)] 361s | ^^^^^^^^^^^^^^ 361s | 361s = help: consider using a Cargo feature instead 361s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 361s [lints.rust] 361s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(raw_ref_macros)'] } 361s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(raw_ref_macros)");` to the top of the `build.rs` 361s = note: see for more information about checking conditional configuration 361s 361s warning: unexpected `cfg` condition name: `raw_ref_macros` 361s --> /usr/share/cargo/registry/memoffset-0.8.0/src/raw_field.rs:30:11 361s | 361s 30 | #[cfg(not(raw_ref_macros))] 361s | ^^^^^^^^^^^^^^ 361s | 361s = help: consider using a Cargo feature instead 361s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 361s [lints.rust] 361s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(raw_ref_macros)'] } 361s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(raw_ref_macros)");` to the top of the `build.rs` 361s = note: see for more information about checking conditional configuration 361s 361s warning: unexpected `cfg` condition name: `allow_clippy` 361s --> /usr/share/cargo/registry/memoffset-0.8.0/src/raw_field.rs:57:7 361s | 361s 57 | #[cfg(allow_clippy)] 361s | ^^^^^^^^^^^^ 361s | 361s = help: consider using a Cargo feature instead 361s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 361s [lints.rust] 361s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(allow_clippy)'] } 361s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(allow_clippy)");` to the top of the `build.rs` 361s = note: see for more information about checking conditional configuration 361s 361s warning: unexpected `cfg` condition name: `allow_clippy` 361s --> /usr/share/cargo/registry/memoffset-0.8.0/src/raw_field.rs:69:11 361s | 361s 69 | #[cfg(not(allow_clippy))] 361s | ^^^^^^^^^^^^ 361s | 361s = help: consider using a Cargo feature instead 361s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 361s [lints.rust] 361s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(allow_clippy)'] } 361s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(allow_clippy)");` to the top of the `build.rs` 361s = note: see for more information about checking conditional configuration 361s 361s warning: unexpected `cfg` condition name: `allow_clippy` 361s --> /usr/share/cargo/registry/memoffset-0.8.0/src/raw_field.rs:90:7 361s | 361s 90 | #[cfg(allow_clippy)] 361s | ^^^^^^^^^^^^ 361s | 361s = help: consider using a Cargo feature instead 361s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 361s [lints.rust] 361s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(allow_clippy)'] } 361s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(allow_clippy)");` to the top of the `build.rs` 361s = note: see for more information about checking conditional configuration 361s 361s warning: unexpected `cfg` condition name: `allow_clippy` 361s --> /usr/share/cargo/registry/memoffset-0.8.0/src/raw_field.rs:100:11 361s | 361s 100 | #[cfg(not(allow_clippy))] 361s | ^^^^^^^^^^^^ 361s | 361s = help: consider using a Cargo feature instead 361s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 361s [lints.rust] 361s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(allow_clippy)'] } 361s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(allow_clippy)");` to the top of the `build.rs` 361s = note: see for more information about checking conditional configuration 361s 361s warning: unexpected `cfg` condition name: `allow_clippy` 361s --> /usr/share/cargo/registry/memoffset-0.8.0/src/raw_field.rs:125:7 361s | 361s 125 | #[cfg(allow_clippy)] 361s | ^^^^^^^^^^^^ 361s | 361s = help: consider using a Cargo feature instead 361s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 361s [lints.rust] 361s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(allow_clippy)'] } 361s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(allow_clippy)");` to the top of the `build.rs` 361s = note: see for more information about checking conditional configuration 361s 361s warning: unexpected `cfg` condition name: `allow_clippy` 361s --> /usr/share/cargo/registry/memoffset-0.8.0/src/raw_field.rs:141:11 361s | 361s 141 | #[cfg(not(allow_clippy))] 361s | ^^^^^^^^^^^^ 361s | 361s = help: consider using a Cargo feature instead 361s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 361s [lints.rust] 361s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(allow_clippy)'] } 361s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(allow_clippy)");` to the top of the `build.rs` 361s = note: see for more information about checking conditional configuration 361s 361s warning: unexpected `cfg` condition name: `tuple_ty` 361s --> /usr/share/cargo/registry/memoffset-0.8.0/src/raw_field.rs:183:7 361s | 361s 183 | #[cfg(tuple_ty)] 361s | ^^^^^^^^ 361s | 361s = help: consider using a Cargo feature instead 361s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 361s [lints.rust] 361s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tuple_ty)'] } 361s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tuple_ty)");` to the top of the `build.rs` 361s = note: see for more information about checking conditional configuration 361s 361s warning: unexpected `cfg` condition name: `maybe_uninit` 361s --> /usr/share/cargo/registry/memoffset-0.8.0/src/offset_of.rs:23:7 361s | 361s 23 | #[cfg(maybe_uninit)] 361s | ^^^^^^^^^^^^ 361s | 361s = help: consider using a Cargo feature instead 361s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 361s [lints.rust] 361s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(maybe_uninit)'] } 361s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(maybe_uninit)");` to the top of the `build.rs` 361s = note: see for more information about checking conditional configuration 361s 361s warning: unexpected `cfg` condition name: `maybe_uninit` 361s --> /usr/share/cargo/registry/memoffset-0.8.0/src/offset_of.rs:37:11 361s | 361s 37 | #[cfg(not(maybe_uninit))] 361s | ^^^^^^^^^^^^ 361s | 361s = help: consider using a Cargo feature instead 361s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 361s [lints.rust] 361s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(maybe_uninit)'] } 361s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(maybe_uninit)");` to the top of the `build.rs` 361s = note: see for more information about checking conditional configuration 361s 361s warning: unexpected `cfg` condition name: `stable_const` 361s --> /usr/share/cargo/registry/memoffset-0.8.0/src/offset_of.rs:49:39 361s | 361s 49 | #[cfg(any(feature = "unstable_const", stable_const))] 361s | ^^^^^^^^^^^^ 361s | 361s = help: consider using a Cargo feature instead 361s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 361s [lints.rust] 361s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(stable_const)'] } 361s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(stable_const)");` to the top of the `build.rs` 361s = note: see for more information about checking conditional configuration 361s 361s warning: unexpected `cfg` condition name: `stable_const` 361s --> /usr/share/cargo/registry/memoffset-0.8.0/src/offset_of.rs:61:43 361s | 361s 61 | #[cfg(not(any(feature = "unstable_const", stable_const)))] 361s | ^^^^^^^^^^^^ 361s | 361s = help: consider using a Cargo feature instead 361s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 361s [lints.rust] 361s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(stable_const)'] } 361s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(stable_const)");` to the top of the `build.rs` 361s = note: see for more information about checking conditional configuration 361s 361s warning: unexpected `cfg` condition name: `tuple_ty` 361s --> /usr/share/cargo/registry/memoffset-0.8.0/src/offset_of.rs:121:7 361s | 361s 121 | #[cfg(tuple_ty)] 361s | ^^^^^^^^ 361s | 361s = help: consider using a Cargo feature instead 361s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 361s [lints.rust] 361s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tuple_ty)'] } 361s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tuple_ty)");` to the top of the `build.rs` 361s = note: see for more information about checking conditional configuration 361s 361s warning: `memoffset` (lib) generated 18 warnings (1 duplicate) 361s Compiling event-listener-strategy v0.5.3 361s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=event_listener_strategy CARGO_MANIFEST_DIR=/tmp/tmp.o8L9imxcb3/registry/event-listener-strategy-0.5.3 CARGO_MANIFEST_PATH=/tmp/tmp.o8L9imxcb3/registry/event-listener-strategy-0.5.3/Cargo.toml CARGO_PKG_AUTHORS='John Nunley ' CARGO_PKG_DESCRIPTION='Block or poll on event_listener easily' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=event-listener-strategy CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/smol-rs/event-listener-strategy' CARGO_PKG_RUST_VERSION=1.60 CARGO_PKG_VERSION=0.5.3 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=5 CARGO_PKG_VERSION_PATCH=3 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.o8L9imxcb3/target/debug/deps rustc --crate-name event_listener_strategy --edition=2021 /tmp/tmp.o8L9imxcb3/registry/event-listener-strategy-0.5.3/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --warn=unexpected_cfgs --check-cfg 'cfg(wasm_bindgen_unstable_test_coverage)' --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "std"))' -C metadata=c155ba63305d40fd -C extra-filename=-c155ba63305d40fd --out-dir /tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.o8L9imxcb3/target/debug/deps --extern event_listener=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps/libevent_listener-93bdad7496d4853a.rmeta --extern pin_project_lite=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps/libpin_project_lite-5dc815523e98d889.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.o8L9imxcb3/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 361s warning: `event-listener-strategy` (lib) generated 1 warning (1 duplicate) 361s 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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0--remap-path-prefix/tmp/tmp.o8L9imxcb3/registry=/usr/share/cargo/registry-Ctarget-feature=+backchain' CARGO_FEATURE_FEATURE=1 CARGO_FEATURE_MEMOFFSET=1 CARGO_FEATURE_SOCKET=1 CARGO_FEATURE_UIO=1 CARGO_FEATURE_USER=1 CARGO_MANIFEST_DIR=/tmp/tmp.o8L9imxcb3/registry/nix-0.29.0 CARGO_MANIFEST_PATH=/tmp/tmp.o8L9imxcb3/registry/nix-0.29.0/Cargo.toml CARGO_PKG_AUTHORS='The nix-rust Project Developers' CARGO_PKG_DESCRIPTION='Rust friendly bindings to *nix APIs' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=nix CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/nix-rust/nix' CARGO_PKG_RUST_VERSION=1.69 CARGO_PKG_VERSION=0.29.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=29 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' DEBUG=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.o8L9imxcb3/target/debug/deps:/tmp/tmp.o8L9imxcb3/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/build/nix-8065280fb097eaec/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.o8L9imxcb3/target/debug/build/nix-9cc97a3a2fcb749b/build-script-build` 361s [nix 0.29.0] cargo:rustc-check-cfg=cfg(android) 361s [nix 0.29.0] cargo:rustc-check-cfg=cfg(dragonfly) 361s [nix 0.29.0] cargo:rustc-check-cfg=cfg(ios) 361s [nix 0.29.0] cargo:rustc-check-cfg=cfg(freebsd) 361s [nix 0.29.0] cargo:rustc-check-cfg=cfg(illumos) 361s [nix 0.29.0] cargo:rustc-check-cfg=cfg(linux) 361s [nix 0.29.0] cargo:rustc-cfg=linux 361s [nix 0.29.0] cargo:rustc-check-cfg=cfg(macos) 361s [nix 0.29.0] cargo:rustc-check-cfg=cfg(netbsd) 361s [nix 0.29.0] cargo:rustc-check-cfg=cfg(openbsd) 361s [nix 0.29.0] cargo:rustc-check-cfg=cfg(solaris) 361s [nix 0.29.0] cargo:rustc-check-cfg=cfg(watchos) 361s [nix 0.29.0] cargo:rustc-check-cfg=cfg(tvos) 361s [nix 0.29.0] cargo:rustc-check-cfg=cfg(visionos) 361s [nix 0.29.0] cargo:rustc-check-cfg=cfg(apple_targets) 361s [nix 0.29.0] cargo:rustc-check-cfg=cfg(bsd) 361s [nix 0.29.0] cargo:rustc-check-cfg=cfg(bsd_without_apple) 361s [nix 0.29.0] cargo:rustc-check-cfg=cfg(linux_android) 361s [nix 0.29.0] cargo:rustc-cfg=linux_android 361s [nix 0.29.0] cargo:rustc-check-cfg=cfg(freebsdlike) 361s [nix 0.29.0] cargo:rustc-check-cfg=cfg(netbsdlike) 361s [nix 0.29.0] cargo:rustc-check-cfg=cfg(solarish) 361s [nix 0.29.0] cargo:rustc-check-cfg=cfg(apple_targets) 361s [nix 0.29.0] cargo:rustc-check-cfg=cfg(bsd) 361s [nix 0.29.0] cargo:rustc-check-cfg=cfg(bsd_without_apple) 361s [nix 0.29.0] cargo:rustc-check-cfg=cfg(linux_android) 361s [nix 0.29.0] cargo:rustc-check-cfg=cfg(freebsdlike) 361s [nix 0.29.0] cargo:rustc-check-cfg=cfg(netbsdlike) 361s [nix 0.29.0] cargo:rustc-check-cfg=cfg(solarish) 361s [nix 0.29.0] cargo:rustc-check-cfg=cfg(fbsd14) 361s [nix 0.29.0] cargo:rustc-check-cfg=cfg(qemu) 361s Compiling tracing-attributes v0.1.27 361s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=tracing_attributes CARGO_MANIFEST_DIR=/tmp/tmp.o8L9imxcb3/registry/tracing-attributes-0.1.27 CARGO_MANIFEST_PATH=/tmp/tmp.o8L9imxcb3/registry/tracing-attributes-0.1.27/Cargo.toml CARGO_PKG_AUTHORS='Tokio Contributors :Eliza Weisman :David Barsky ' CARGO_PKG_DESCRIPTION='Procedural macro attributes for automatically instrumenting functions. 361s ' CARGO_PKG_HOMEPAGE='https://tokio.rs' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=tracing-attributes CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/tokio-rs/tracing' CARGO_PKG_RUST_VERSION=1.56.0 CARGO_PKG_VERSION=0.1.27 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=27 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.o8L9imxcb3/target/debug/deps rustc --crate-name tracing_attributes --edition=2018 /tmp/tmp.o8L9imxcb3/registry/tracing-attributes-0.1.27/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("async-await"))' -C metadata=7f00f49c1aac99bb -C extra-filename=-7f00f49c1aac99bb --out-dir /tmp/tmp.o8L9imxcb3/target/debug/deps -L dependency=/tmp/tmp.o8L9imxcb3/target/debug/deps --extern proc_macro2=/tmp/tmp.o8L9imxcb3/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rlib --extern quote=/tmp/tmp.o8L9imxcb3/target/debug/deps/libquote-dc92c6f25ee0f0c6.rlib --extern syn=/tmp/tmp.o8L9imxcb3/target/debug/deps/libsyn-0167beed9e699402.rlib --extern proc_macro --cap-lints warn` 362s warning: lint `private_in_public` has been removed: replaced with another group of lints, see RFC for more information 362s --> /tmp/tmp.o8L9imxcb3/registry/tracing-attributes-0.1.27/src/lib.rs:73:5 362s | 362s 73 | private_in_public, 362s | ^^^^^^^^^^^^^^^^^ 362s | 362s = note: `#[warn(renamed_and_removed_lints)]` on by default 362s 363s warning: `tracing-attributes` (lib) generated 1 warning 363s Compiling futures-io v0.3.31 363s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=futures_io CARGO_MANIFEST_DIR=/tmp/tmp.o8L9imxcb3/registry/futures-io-0.3.31 CARGO_MANIFEST_PATH=/tmp/tmp.o8L9imxcb3/registry/futures-io-0.3.31/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='The `AsyncRead`, `AsyncWrite`, `AsyncSeek`, and `AsyncBufRead` traits for the futures-rs library. 363s ' CARGO_PKG_HOMEPAGE='https://rust-lang.github.io/futures-rs' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=futures-io CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/futures-rs' CARGO_PKG_RUST_VERSION=1.36 CARGO_PKG_VERSION=0.3.31 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=31 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.o8L9imxcb3/target/debug/deps rustc --crate-name futures_io --edition=2018 /tmp/tmp.o8L9imxcb3/registry/futures-io-0.3.31/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --warn=unreachable_pub --warn=unexpected_cfgs --warn=single_use_lifetimes --warn=rust_2018_idioms --warn=missing_debug_implementations --check-cfg 'cfg(futures_sanitizer)' --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "std", "unstable"))' -C metadata=1a4387591f8b2b95 -C extra-filename=-1a4387591f8b2b95 --out-dir /tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.o8L9imxcb3/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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.o8L9imxcb3/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 364s warning: `futures-io` (lib) generated 1 warning (1 duplicate) 364s Compiling tracing v0.1.40 364s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=tracing CARGO_MANIFEST_DIR=/tmp/tmp.o8L9imxcb3/registry/tracing-0.1.40 CARGO_MANIFEST_PATH=/tmp/tmp.o8L9imxcb3/registry/tracing-0.1.40/Cargo.toml CARGO_PKG_AUTHORS='Eliza Weisman :Tokio Contributors ' CARGO_PKG_DESCRIPTION='Application-level tracing for Rust. 364s ' CARGO_PKG_HOMEPAGE='https://tokio.rs' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=tracing CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/tokio-rs/tracing' CARGO_PKG_RUST_VERSION=1.56.0 CARGO_PKG_VERSION=0.1.40 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=40 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.o8L9imxcb3/target/debug/deps rustc --crate-name tracing --edition=2018 /tmp/tmp.o8L9imxcb3/registry/tracing-0.1.40/src/lib.rs --error-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="attributes"' --cfg 'feature="default"' --cfg 'feature="std"' --cfg 'feature="tracing-attributes"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("async-await", "attributes", "default", "log", "log-always", "max_level_debug", "max_level_error", "max_level_info", "max_level_off", "max_level_trace", "max_level_warn", "release_max_level_debug", "release_max_level_error", "release_max_level_info", "release_max_level_off", "release_max_level_trace", "release_max_level_warn", "std", "tracing-attributes"))' -C metadata=5f8a2432d30b4ef1 -C extra-filename=-5f8a2432d30b4ef1 --out-dir /tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.o8L9imxcb3/target/debug/deps --extern pin_project_lite=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps/libpin_project_lite-5dc815523e98d889.rmeta --extern tracing_attributes=/tmp/tmp.o8L9imxcb3/target/debug/deps/libtracing_attributes-7f00f49c1aac99bb.so --extern tracing_core=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps/libtracing_core-4c8af7279fad1469.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.o8L9imxcb3/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 364s warning: lint `private_in_public` has been removed: replaced with another group of lints, see RFC for more information 364s --> /usr/share/cargo/registry/tracing-0.1.40/src/lib.rs:932:5 364s | 364s 932 | private_in_public, 364s | ^^^^^^^^^^^^^^^^^ 364s | 364s = note: `#[warn(renamed_and_removed_lints)]` on by default 364s 364s warning: `tracing` (lib) generated 2 warnings (1 duplicate) 364s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=nix CARGO_MANIFEST_DIR=/tmp/tmp.o8L9imxcb3/registry/nix-0.29.0 CARGO_MANIFEST_PATH=/tmp/tmp.o8L9imxcb3/registry/nix-0.29.0/Cargo.toml CARGO_PKG_AUTHORS='The nix-rust Project Developers' CARGO_PKG_DESCRIPTION='Rust friendly bindings to *nix APIs' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=nix CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/nix-rust/nix' CARGO_PKG_RUST_VERSION=1.69 CARGO_PKG_VERSION=0.29.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=29 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.o8L9imxcb3/target/debug/deps OUT_DIR=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/build/nix-8065280fb097eaec/out rustc --crate-name nix --edition=2021 /tmp/tmp.o8L9imxcb3/registry/nix-0.29.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="feature"' --cfg 'feature="memoffset"' --cfg 'feature="socket"' --cfg 'feature="uio"' --cfg 'feature="user"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("acct", "aio", "default", "dir", "env", "event", "fanotify", "feature", "fs", "hostname", "inotify", "ioctl", "kmod", "memoffset", "mman", "mount", "mqueue", "net", "personality", "pin-utils", "poll", "process", "pthread", "ptrace", "quota", "reboot", "resource", "sched", "signal", "socket", "term", "time", "ucontext", "uio", "user", "zerocopy"))' -C metadata=1c06771599af3024 -C extra-filename=-1c06771599af3024 --out-dir /tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.o8L9imxcb3/target/debug/deps --extern bitflags=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps/libbitflags-4b295667124b9dc6.rmeta --extern cfg_if=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps/libcfg_if-ff3ff84a061de73f.rmeta --extern libc=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps/liblibc-cf2521928ac070dc.rmeta --extern memoffset=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps/libmemoffset-2f432c32070b84ca.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.o8L9imxcb3/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain --cfg linux --cfg linux_android --check-cfg 'cfg(android)' --check-cfg 'cfg(dragonfly)' --check-cfg 'cfg(ios)' --check-cfg 'cfg(freebsd)' --check-cfg 'cfg(illumos)' --check-cfg 'cfg(linux)' --check-cfg 'cfg(macos)' --check-cfg 'cfg(netbsd)' --check-cfg 'cfg(openbsd)' --check-cfg 'cfg(solaris)' --check-cfg 'cfg(watchos)' --check-cfg 'cfg(tvos)' --check-cfg 'cfg(visionos)' --check-cfg 'cfg(apple_targets)' --check-cfg 'cfg(bsd)' --check-cfg 'cfg(bsd_without_apple)' --check-cfg 'cfg(linux_android)' --check-cfg 'cfg(freebsdlike)' --check-cfg 'cfg(netbsdlike)' --check-cfg 'cfg(solarish)' --check-cfg 'cfg(apple_targets)' --check-cfg 'cfg(bsd)' --check-cfg 'cfg(bsd_without_apple)' --check-cfg 'cfg(linux_android)' --check-cfg 'cfg(freebsdlike)' --check-cfg 'cfg(netbsdlike)' --check-cfg 'cfg(solarish)' --check-cfg 'cfg(fbsd14)' --check-cfg 'cfg(qemu)'` 364s warning: elided lifetime has a name 364s --> /usr/share/cargo/registry/nix-0.29.0/src/sys/socket/sockopt.rs:1577:34 364s | 364s 1576 | impl<'a> Set<'a, OsString> for SetOsString<'a> { 364s | -- lifetime `'a` declared here 364s 1577 | fn new(val: &'a OsString) -> SetOsString { 364s | ^^^^^^^^^^^ this elided lifetime gets resolved as `'a` 364s | 364s = note: `#[warn(elided_named_lifetimes)]` on by default 364s 364s warning: struct `GetU8` is never constructed 364s --> /usr/share/cargo/registry/nix-0.29.0/src/sys/socket/sockopt.rs:1441:8 364s | 364s 1441 | struct GetU8 { 364s | ^^^^^ 364s | 364s = note: `#[warn(dead_code)]` on by default 364s 364s warning: struct `SetU8` is never constructed 364s --> /usr/share/cargo/registry/nix-0.29.0/src/sys/socket/sockopt.rs:1473:8 364s | 364s 1473 | struct SetU8 { 364s | ^^^^^ 364s 364s warning: struct `GetCString` is never constructed 364s --> /usr/share/cargo/registry/nix-0.29.0/src/sys/socket/sockopt.rs:1593:8 364s | 364s 1593 | struct GetCString> { 364s | ^^^^^^^^^^ 364s 365s warning: `nix` (lib) generated 5 warnings (1 duplicate) 365s Compiling async-broadcast v0.7.1 365s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=async_broadcast CARGO_MANIFEST_DIR=/tmp/tmp.o8L9imxcb3/registry/async-broadcast-0.7.1 CARGO_MANIFEST_PATH=/tmp/tmp.o8L9imxcb3/registry/async-broadcast-0.7.1/Cargo.toml CARGO_PKG_AUTHORS='Stjepan Glavina :Yoshua Wuyts :Zeeshan Ali Khan ' CARGO_PKG_DESCRIPTION='Async broadcast channels' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=async-broadcast CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/smol-rs/async-broadcast' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.7.1 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=7 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.o8L9imxcb3/target/debug/deps rustc --crate-name async_broadcast --edition=2018 /tmp/tmp.o8L9imxcb3/registry/async-broadcast-0.7.1/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=852b859fbdd9a4f4 -C extra-filename=-852b859fbdd9a4f4 --out-dir /tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.o8L9imxcb3/target/debug/deps --extern event_listener=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps/libevent_listener-93bdad7496d4853a.rmeta --extern event_listener_strategy=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps/libevent_listener_strategy-c155ba63305d40fd.rmeta --extern futures_core=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps/libfutures_core-8d305950da6bf5c8.rmeta --extern pin_project_lite=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps/libpin_project_lite-5dc815523e98d889.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.o8L9imxcb3/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 365s warning: `async-broadcast` (lib) generated 1 warning (1 duplicate) 365s Compiling rand v0.8.5 365s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=rand CARGO_MANIFEST_DIR=/tmp/tmp.o8L9imxcb3/registry/rand-0.8.5 CARGO_MANIFEST_PATH=/tmp/tmp.o8L9imxcb3/registry/rand-0.8.5/Cargo.toml CARGO_PKG_AUTHORS='The Rand Project Developers:The Rust Project Developers' CARGO_PKG_DESCRIPTION='Random number generators and other randomness functionality. 365s ' CARGO_PKG_HOMEPAGE='https://rust-random.github.io/book' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=rand CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-random/rand' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.8.5 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=8 CARGO_PKG_VERSION_PATCH=5 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.o8L9imxcb3/target/debug/deps rustc --crate-name rand --edition=2018 /tmp/tmp.o8L9imxcb3/registry/rand-0.8.5/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="alloc"' --cfg 'feature="default"' --cfg 'feature="getrandom"' --cfg 'feature="libc"' --cfg 'feature="rand_chacha"' --cfg 'feature="std"' --cfg 'feature="std_rng"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "default", "getrandom", "libc", "log", "min_const_gen", "nightly", "rand_chacha", "serde", "serde1", "small_rng", "std", "std_rng"))' -C metadata=da2a195293a4eb5f -C extra-filename=-da2a195293a4eb5f --out-dir /tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.o8L9imxcb3/target/debug/deps --extern libc=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps/liblibc-cf2521928ac070dc.rmeta --extern rand_chacha=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps/librand_chacha-dd56c23de683d750.rmeta --extern rand_core=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps/librand_core-3c7246ca3f419bbc.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.o8L9imxcb3/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 365s warning: unexpected `cfg` condition value: `simd_support` 365s --> /usr/share/cargo/registry/rand-0.8.5/src/lib.rs:52:13 365s | 365s 52 | #![cfg_attr(feature = "simd_support", feature(stdsimd))] 365s | ^^^^^^^^^^^^^^^^^^^^^^^^ 365s | 365s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 365s = help: consider adding `simd_support` as a feature in `Cargo.toml` 365s = note: see for more information about checking conditional configuration 365s = note: `#[warn(unexpected_cfgs)]` on by default 365s 365s warning: unexpected `cfg` condition name: `doc_cfg` 365s --> /usr/share/cargo/registry/rand-0.8.5/src/lib.rs:53:13 365s | 365s 53 | #![cfg_attr(doc_cfg, feature(doc_cfg))] 365s | ^^^^^^^ 365s | 365s = help: expected names are: `clippy`, `debug_assertions`, `doc`, `docsrs`, `doctest`, `feature`, `fmt_debug`, `miri`, `overflow_checks`, `panic`, `proc_macro`, `relocation_model`, `rustfmt`, `sanitize`, `sanitizer_cfi_generalize_pointers`, `sanitizer_cfi_normalize_integers`, `target_abi`, `target_arch`, `target_endian`, `target_env`, `target_family`, `target_feature`, `target_has_atomic`, `target_has_atomic_equal_alignment`, `target_has_atomic_load_store`, `target_os`, `target_pointer_width`, `target_thread_local`, `target_vendor`, `test`, `ub_checks`, `unix`, and `windows` 365s = help: consider using a Cargo feature instead 365s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 365s [lints.rust] 365s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 365s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 365s = note: see for more information about checking conditional configuration 365s 365s warning: unexpected `cfg` condition name: `doc_cfg` 365s --> /usr/share/cargo/registry/rand-0.8.5/src/lib.rs:181:12 365s | 365s 181 | #[cfg_attr(doc_cfg, doc(cfg(all(feature = "std", feature = "std_rng"))))] 365s | ^^^^^^^ 365s | 365s = help: consider using a Cargo feature instead 365s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 365s [lints.rust] 365s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 365s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 365s = note: see for more information about checking conditional configuration 365s 365s warning: unexpected `cfg` condition name: `doc_cfg` 365s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/mod.rs:116:12 365s | 365s 116 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 365s | ^^^^^^^ 365s | 365s = help: consider using a Cargo feature instead 365s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 365s [lints.rust] 365s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 365s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 365s = note: see for more information about checking conditional configuration 365s 365s warning: unexpected `cfg` condition name: `features` 365s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/distribution.rs:162:7 365s | 365s 162 | #[cfg(features = "nightly")] 365s | ^^^^^^^^^^^^^^^^^^^^ 365s | 365s = note: see for more information about checking conditional configuration 365s help: there is a config with a similar name and value 365s | 365s 162 | #[cfg(feature = "nightly")] 365s | ~~~~~~~ 365s 365s warning: unexpected `cfg` condition value: `simd_support` 365s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/float.rs:15:7 365s | 365s 15 | #[cfg(feature = "simd_support")] use packed_simd::*; 365s | ^^^^^^^^^^^^^^^^^^^^^^^^ 365s | 365s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 365s = help: consider adding `simd_support` as a feature in `Cargo.toml` 365s = note: see for more information about checking conditional configuration 365s 365s warning: unexpected `cfg` condition value: `simd_support` 365s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/float.rs:156:7 365s | 365s 156 | #[cfg(feature = "simd_support")] 365s | ^^^^^^^^^^^^^^^^^^^^^^^^ 365s | 365s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 365s = help: consider adding `simd_support` as a feature in `Cargo.toml` 365s = note: see for more information about checking conditional configuration 365s 365s warning: unexpected `cfg` condition value: `simd_support` 365s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/float.rs:158:7 365s | 365s 158 | #[cfg(feature = "simd_support")] 365s | ^^^^^^^^^^^^^^^^^^^^^^^^ 365s | 365s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 365s = help: consider adding `simd_support` as a feature in `Cargo.toml` 365s = note: see for more information about checking conditional configuration 365s 365s warning: unexpected `cfg` condition value: `simd_support` 365s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/float.rs:160:7 365s | 365s 160 | #[cfg(feature = "simd_support")] 365s | ^^^^^^^^^^^^^^^^^^^^^^^^ 365s | 365s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 365s = help: consider adding `simd_support` as a feature in `Cargo.toml` 365s = note: see for more information about checking conditional configuration 365s 365s warning: unexpected `cfg` condition value: `simd_support` 365s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/float.rs:162:7 365s | 365s 162 | #[cfg(feature = "simd_support")] 365s | ^^^^^^^^^^^^^^^^^^^^^^^^ 365s | 365s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 365s = help: consider adding `simd_support` as a feature in `Cargo.toml` 365s = note: see for more information about checking conditional configuration 365s 365s warning: unexpected `cfg` condition value: `simd_support` 365s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/float.rs:165:7 365s | 365s 165 | #[cfg(feature = "simd_support")] 365s | ^^^^^^^^^^^^^^^^^^^^^^^^ 365s | 365s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 365s = help: consider adding `simd_support` as a feature in `Cargo.toml` 365s = note: see for more information about checking conditional configuration 365s 365s warning: unexpected `cfg` condition value: `simd_support` 365s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/float.rs:167:7 365s | 365s 167 | #[cfg(feature = "simd_support")] 365s | ^^^^^^^^^^^^^^^^^^^^^^^^ 365s | 365s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 365s = help: consider adding `simd_support` as a feature in `Cargo.toml` 365s = note: see for more information about checking conditional configuration 365s 365s warning: unexpected `cfg` condition value: `simd_support` 365s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/float.rs:169:7 365s | 365s 169 | #[cfg(feature = "simd_support")] 365s | ^^^^^^^^^^^^^^^^^^^^^^^^ 365s | 365s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 365s = help: consider adding `simd_support` as a feature in `Cargo.toml` 365s = note: see for more information about checking conditional configuration 365s 365s warning: unexpected `cfg` condition value: `simd_support` 365s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/integer.rs:13:32 365s | 365s 13 | #[cfg(all(target_arch = "x86", feature = "simd_support"))] 365s | ^^^^^^^^^^^^^^^^^^^^^^^^ 365s | 365s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 365s = help: consider adding `simd_support` as a feature in `Cargo.toml` 365s = note: see for more information about checking conditional configuration 365s 365s warning: unexpected `cfg` condition value: `simd_support` 365s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/integer.rs:15:35 365s | 365s 15 | #[cfg(all(target_arch = "x86_64", feature = "simd_support"))] 365s | ^^^^^^^^^^^^^^^^^^^^^^^^ 365s | 365s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 365s = help: consider adding `simd_support` as a feature in `Cargo.toml` 365s = note: see for more information about checking conditional configuration 365s 365s warning: unexpected `cfg` condition value: `simd_support` 365s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/integer.rs:19:7 365s | 365s 19 | #[cfg(feature = "simd_support")] use packed_simd::*; 365s | ^^^^^^^^^^^^^^^^^^^^^^^^ 365s | 365s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 365s = help: consider adding `simd_support` as a feature in `Cargo.toml` 365s = note: see for more information about checking conditional configuration 365s 365s warning: unexpected `cfg` condition value: `simd_support` 365s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/integer.rs:112:7 365s | 365s 112 | #[cfg(feature = "simd_support")] 365s | ^^^^^^^^^^^^^^^^^^^^^^^^ 365s | 365s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 365s = help: consider adding `simd_support` as a feature in `Cargo.toml` 365s = note: see for more information about checking conditional configuration 365s 365s warning: unexpected `cfg` condition value: `simd_support` 365s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/integer.rs:142:7 365s | 365s 142 | #[cfg(feature = "simd_support")] 365s | ^^^^^^^^^^^^^^^^^^^^^^^^ 365s | 365s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 365s = help: consider adding `simd_support` as a feature in `Cargo.toml` 365s = note: see for more information about checking conditional configuration 365s 365s warning: unexpected `cfg` condition value: `simd_support` 365s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/integer.rs:144:7 365s | 365s 144 | #[cfg(feature = "simd_support")] 365s | ^^^^^^^^^^^^^^^^^^^^^^^^ 365s | 365s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 365s = help: consider adding `simd_support` as a feature in `Cargo.toml` 365s = note: see for more information about checking conditional configuration 365s 365s warning: unexpected `cfg` condition value: `simd_support` 365s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/integer.rs:146:7 365s | 365s 146 | #[cfg(feature = "simd_support")] 365s | ^^^^^^^^^^^^^^^^^^^^^^^^ 365s | 365s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 365s = help: consider adding `simd_support` as a feature in `Cargo.toml` 365s = note: see for more information about checking conditional configuration 365s 365s warning: unexpected `cfg` condition value: `simd_support` 365s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/integer.rs:148:7 365s | 365s 148 | #[cfg(feature = "simd_support")] 365s | ^^^^^^^^^^^^^^^^^^^^^^^^ 365s | 365s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 365s = help: consider adding `simd_support` as a feature in `Cargo.toml` 365s = note: see for more information about checking conditional configuration 365s 365s warning: unexpected `cfg` condition value: `simd_support` 365s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/integer.rs:150:7 365s | 365s 150 | #[cfg(feature = "simd_support")] 365s | ^^^^^^^^^^^^^^^^^^^^^^^^ 365s | 365s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 365s = help: consider adding `simd_support` as a feature in `Cargo.toml` 365s = note: see for more information about checking conditional configuration 365s 365s warning: unexpected `cfg` condition value: `simd_support` 365s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/integer.rs:152:7 365s | 365s 152 | #[cfg(feature = "simd_support")] 365s | ^^^^^^^^^^^^^^^^^^^^^^^^ 365s | 365s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 365s = help: consider adding `simd_support` as a feature in `Cargo.toml` 365s = note: see for more information about checking conditional configuration 365s 365s warning: unexpected `cfg` condition value: `simd_support` 365s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/integer.rs:155:5 365s | 365s 155 | feature = "simd_support", 365s | ^^^^^^^^^^^^^^^^^^^^^^^^ 365s | 365s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 365s = help: consider adding `simd_support` as a feature in `Cargo.toml` 365s = note: see for more information about checking conditional configuration 365s 365s warning: unexpected `cfg` condition value: `simd_support` 365s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:11:7 365s | 365s 11 | #[cfg(feature = "simd_support")] use packed_simd::*; 365s | ^^^^^^^^^^^^^^^^^^^^^^^^ 365s | 365s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 365s = help: consider adding `simd_support` as a feature in `Cargo.toml` 365s = note: see for more information about checking conditional configuration 365s 365s warning: unexpected `cfg` condition value: `simd_support` 365s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:144:7 365s | 365s 144 | #[cfg(feature = "simd_support")] 365s | ^^^^^^^^^^^^^^^^^^^^^^^^ 365s | 365s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 365s = help: consider adding `simd_support` as a feature in `Cargo.toml` 365s = note: see for more information about checking conditional configuration 365s 365s warning: unexpected `cfg` condition name: `std` 365s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:235:11 365s | 365s 235 | #[cfg(not(std))] 365s | ^^^ help: found config with similar value: `feature = "std"` 365s | 365s = help: consider using a Cargo feature instead 365s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 365s [lints.rust] 365s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(std)'] } 365s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(std)");` to the top of the `build.rs` 365s = note: see for more information about checking conditional configuration 365s 365s warning: unexpected `cfg` condition value: `simd_support` 365s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:363:7 365s | 365s 363 | #[cfg(feature = "simd_support")] 365s | ^^^^^^^^^^^^^^^^^^^^^^^^ 365s | 365s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 365s = help: consider adding `simd_support` as a feature in `Cargo.toml` 365s = note: see for more information about checking conditional configuration 365s 365s warning: unexpected `cfg` condition value: `simd_support` 365s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:423:7 365s | 365s 423 | #[cfg(feature="simd_support")] simd_impl! { f32x2, f32, m32x2, u32x2 } 365s | ^^^^^^^^^^^^^^^^^^^^^^ 365s | 365s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 365s = help: consider adding `simd_support` as a feature in `Cargo.toml` 365s = note: see for more information about checking conditional configuration 365s 365s warning: unexpected `cfg` condition value: `simd_support` 365s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:424:7 365s | 365s 424 | #[cfg(feature="simd_support")] simd_impl! { f32x4, f32, m32x4, u32x4 } 365s | ^^^^^^^^^^^^^^^^^^^^^^ 365s | 365s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 365s = help: consider adding `simd_support` as a feature in `Cargo.toml` 365s = note: see for more information about checking conditional configuration 365s 365s warning: unexpected `cfg` condition value: `simd_support` 365s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:425:7 365s | 365s 425 | #[cfg(feature="simd_support")] simd_impl! { f32x8, f32, m32x8, u32x8 } 365s | ^^^^^^^^^^^^^^^^^^^^^^ 365s | 365s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 365s = help: consider adding `simd_support` as a feature in `Cargo.toml` 365s = note: see for more information about checking conditional configuration 365s 365s warning: unexpected `cfg` condition value: `simd_support` 365s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:426:7 365s | 365s 426 | #[cfg(feature="simd_support")] simd_impl! { f32x16, f32, m32x16, u32x16 } 365s | ^^^^^^^^^^^^^^^^^^^^^^ 365s | 365s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 365s = help: consider adding `simd_support` as a feature in `Cargo.toml` 365s = note: see for more information about checking conditional configuration 365s 365s warning: unexpected `cfg` condition value: `simd_support` 365s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:427:7 365s | 365s 427 | #[cfg(feature="simd_support")] simd_impl! { f64x2, f64, m64x2, u64x2 } 365s | ^^^^^^^^^^^^^^^^^^^^^^ 365s | 365s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 365s = help: consider adding `simd_support` as a feature in `Cargo.toml` 365s = note: see for more information about checking conditional configuration 365s 365s warning: unexpected `cfg` condition value: `simd_support` 365s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:428:7 365s | 365s 428 | #[cfg(feature="simd_support")] simd_impl! { f64x4, f64, m64x4, u64x4 } 365s | ^^^^^^^^^^^^^^^^^^^^^^ 365s | 365s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 365s = help: consider adding `simd_support` as a feature in `Cargo.toml` 365s = note: see for more information about checking conditional configuration 365s 365s warning: unexpected `cfg` condition value: `simd_support` 365s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:429:7 365s | 365s 429 | #[cfg(feature="simd_support")] simd_impl! { f64x8, f64, m64x8, u64x8 } 365s | ^^^^^^^^^^^^^^^^^^^^^^ 365s | 365s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 365s = help: consider adding `simd_support` as a feature in `Cargo.toml` 365s = note: see for more information about checking conditional configuration 365s 365s warning: unexpected `cfg` condition name: `std` 365s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:291:19 365s | 365s 291 | #[cfg(not(std))] 365s | ^^^ help: found config with similar value: `feature = "std"` 365s ... 365s 359 | scalar_float_impl!(f32, u32); 365s | ---------------------------- in this macro invocation 365s | 365s = help: consider using a Cargo feature instead 365s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 365s [lints.rust] 365s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(std)'] } 365s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(std)");` to the top of the `build.rs` 365s = note: see for more information about checking conditional configuration 365s = note: this warning originates in the macro `scalar_float_impl` (in Nightly builds, run with -Z macro-backtrace for more info) 365s 365s warning: unexpected `cfg` condition name: `std` 365s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:291:19 365s | 365s 291 | #[cfg(not(std))] 365s | ^^^ help: found config with similar value: `feature = "std"` 365s ... 365s 360 | scalar_float_impl!(f64, u64); 365s | ---------------------------- in this macro invocation 365s | 365s = help: consider using a Cargo feature instead 365s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 365s [lints.rust] 365s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(std)'] } 365s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(std)");` to the top of the `build.rs` 365s = note: see for more information about checking conditional configuration 365s = note: this warning originates in the macro `scalar_float_impl` (in Nightly builds, run with -Z macro-backtrace for more info) 365s 365s warning: unexpected `cfg` condition name: `doc_cfg` 365s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/weighted_index.rs:80:12 365s | 365s 80 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 365s | ^^^^^^^ 365s | 365s = help: consider using a Cargo feature instead 365s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 365s [lints.rust] 365s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 365s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 365s = note: see for more information about checking conditional configuration 365s 365s warning: unexpected `cfg` condition name: `doc_cfg` 365s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/weighted_index.rs:429:12 365s | 365s 429 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 365s | ^^^^^^^ 365s | 365s = help: consider using a Cargo feature instead 365s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 365s [lints.rust] 365s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 365s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 365s = note: see for more information about checking conditional configuration 365s 365s warning: unexpected `cfg` condition value: `simd_support` 365s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/uniform.rs:121:7 365s | 365s 121 | #[cfg(feature = "simd_support")] use packed_simd::*; 365s | ^^^^^^^^^^^^^^^^^^^^^^^^ 365s | 365s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 365s = help: consider adding `simd_support` as a feature in `Cargo.toml` 365s = note: see for more information about checking conditional configuration 365s 365s warning: unexpected `cfg` condition value: `simd_support` 365s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/uniform.rs:572:7 365s | 365s 572 | #[cfg(feature = "simd_support")] 365s | ^^^^^^^^^^^^^^^^^^^^^^^^ 365s | 365s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 365s = help: consider adding `simd_support` as a feature in `Cargo.toml` 365s = note: see for more information about checking conditional configuration 365s 365s warning: unexpected `cfg` condition value: `simd_support` 365s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/uniform.rs:679:7 365s | 365s 679 | #[cfg(feature = "simd_support")] 365s | ^^^^^^^^^^^^^^^^^^^^^^^^ 365s | 365s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 365s = help: consider adding `simd_support` as a feature in `Cargo.toml` 365s = note: see for more information about checking conditional configuration 365s 365s warning: unexpected `cfg` condition value: `simd_support` 365s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/uniform.rs:687:7 365s | 365s 687 | #[cfg(feature = "simd_support")] 365s | ^^^^^^^^^^^^^^^^^^^^^^^^ 365s | 365s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 365s = help: consider adding `simd_support` as a feature in `Cargo.toml` 365s = note: see for more information about checking conditional configuration 365s 365s warning: unexpected `cfg` condition value: `simd_support` 365s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/uniform.rs:696:7 365s | 365s 696 | #[cfg(feature = "simd_support")] 365s | ^^^^^^^^^^^^^^^^^^^^^^^^ 365s | 365s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 365s = help: consider adding `simd_support` as a feature in `Cargo.toml` 365s = note: see for more information about checking conditional configuration 365s 365s warning: unexpected `cfg` condition value: `simd_support` 365s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/uniform.rs:706:7 365s | 365s 706 | #[cfg(feature = "simd_support")] 365s | ^^^^^^^^^^^^^^^^^^^^^^^^ 365s | 365s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 365s = help: consider adding `simd_support` as a feature in `Cargo.toml` 365s = note: see for more information about checking conditional configuration 365s 365s warning: unexpected `cfg` condition value: `simd_support` 365s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/uniform.rs:1001:7 365s | 365s 1001 | #[cfg(feature = "simd_support")] 365s | ^^^^^^^^^^^^^^^^^^^^^^^^ 365s | 365s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 365s = help: consider adding `simd_support` as a feature in `Cargo.toml` 365s = note: see for more information about checking conditional configuration 365s 365s warning: unexpected `cfg` condition value: `simd_support` 365s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/uniform.rs:1003:7 365s | 365s 1003 | #[cfg(feature = "simd_support")] 365s | ^^^^^^^^^^^^^^^^^^^^^^^^ 365s | 365s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 365s = help: consider adding `simd_support` as a feature in `Cargo.toml` 365s = note: see for more information about checking conditional configuration 365s 365s warning: unexpected `cfg` condition value: `simd_support` 365s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/uniform.rs:1005:7 365s | 365s 1005 | #[cfg(feature = "simd_support")] 365s | ^^^^^^^^^^^^^^^^^^^^^^^^ 365s | 365s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 365s = help: consider adding `simd_support` as a feature in `Cargo.toml` 365s = note: see for more information about checking conditional configuration 365s 365s warning: unexpected `cfg` condition value: `simd_support` 365s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/uniform.rs:1007:7 365s | 365s 1007 | #[cfg(feature = "simd_support")] 365s | ^^^^^^^^^^^^^^^^^^^^^^^^ 365s | 365s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 365s = help: consider adding `simd_support` as a feature in `Cargo.toml` 365s = note: see for more information about checking conditional configuration 365s 365s warning: unexpected `cfg` condition value: `simd_support` 365s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/uniform.rs:1010:7 365s | 365s 1010 | #[cfg(feature = "simd_support")] 365s | ^^^^^^^^^^^^^^^^^^^^^^^^ 365s | 365s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 365s = help: consider adding `simd_support` as a feature in `Cargo.toml` 365s = note: see for more information about checking conditional configuration 365s 365s warning: unexpected `cfg` condition value: `simd_support` 365s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/uniform.rs:1012:7 365s | 365s 1012 | #[cfg(feature = "simd_support")] 365s | ^^^^^^^^^^^^^^^^^^^^^^^^ 365s | 365s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 365s = help: consider adding `simd_support` as a feature in `Cargo.toml` 365s = note: see for more information about checking conditional configuration 365s 365s warning: unexpected `cfg` condition value: `simd_support` 365s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/uniform.rs:1014:7 365s | 365s 1014 | #[cfg(feature = "simd_support")] 365s | ^^^^^^^^^^^^^^^^^^^^^^^^ 365s | 365s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 365s = help: consider adding `simd_support` as a feature in `Cargo.toml` 365s = note: see for more information about checking conditional configuration 365s 365s warning: unexpected `cfg` condition name: `doc_cfg` 365s --> /usr/share/cargo/registry/rand-0.8.5/src/rng.rs:395:12 365s | 365s 395 | #[cfg_attr(doc_cfg, doc(cfg(feature = "min_const_gen")))] 365s | ^^^^^^^ 365s | 365s = help: consider using a Cargo feature instead 365s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 365s [lints.rust] 365s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 365s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 365s = note: see for more information about checking conditional configuration 365s 365s warning: unexpected `cfg` condition name: `doc_cfg` 365s --> /usr/share/cargo/registry/rand-0.8.5/src/rngs/mod.rs:99:12 365s | 365s 99 | #[cfg_attr(doc_cfg, doc(cfg(feature = "std")))] 365s | ^^^^^^^ 365s | 365s = help: consider using a Cargo feature instead 365s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 365s [lints.rust] 365s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 365s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 365s = note: see for more information about checking conditional configuration 365s 365s warning: unexpected `cfg` condition name: `doc_cfg` 365s --> /usr/share/cargo/registry/rand-0.8.5/src/rngs/mod.rs:118:12 365s | 365s 118 | #[cfg_attr(doc_cfg, doc(cfg(feature = "getrandom")))] 365s | ^^^^^^^ 365s | 365s = help: consider using a Cargo feature instead 365s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 365s [lints.rust] 365s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 365s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 365s = note: see for more information about checking conditional configuration 365s 365s warning: unexpected `cfg` condition name: `doc_cfg` 365s --> /usr/share/cargo/registry/rand-0.8.5/src/rngs/std.rs:32:12 365s | 365s 32 | #[cfg_attr(doc_cfg, doc(cfg(feature = "std_rng")))] 365s | ^^^^^^^ 365s | 365s = help: consider using a Cargo feature instead 365s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 365s [lints.rust] 365s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 365s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 365s = note: see for more information about checking conditional configuration 365s 365s warning: unexpected `cfg` condition name: `doc_cfg` 365s --> /usr/share/cargo/registry/rand-0.8.5/src/rngs/thread.rs:60:12 365s | 365s 60 | #[cfg_attr(doc_cfg, doc(cfg(all(feature = "std", feature = "std_rng"))))] 365s | ^^^^^^^ 365s | 365s = help: consider using a Cargo feature instead 365s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 365s [lints.rust] 365s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 365s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 365s = note: see for more information about checking conditional configuration 365s 365s warning: unexpected `cfg` condition name: `doc_cfg` 365s --> /usr/share/cargo/registry/rand-0.8.5/src/rngs/thread.rs:87:12 365s | 365s 87 | #[cfg_attr(doc_cfg, doc(cfg(all(feature = "std", feature = "std_rng"))))] 365s | ^^^^^^^ 365s | 365s = help: consider using a Cargo feature instead 365s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 365s [lints.rust] 365s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 365s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 365s = note: see for more information about checking conditional configuration 365s 365s warning: unexpected `cfg` condition name: `doc_cfg` 365s --> /usr/share/cargo/registry/rand-0.8.5/src/seq/mod.rs:29:12 365s | 365s 29 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 365s | ^^^^^^^ 365s | 365s = help: consider using a Cargo feature instead 365s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 365s [lints.rust] 365s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 365s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 365s = note: see for more information about checking conditional configuration 365s 365s warning: unexpected `cfg` condition name: `doc_cfg` 365s --> /usr/share/cargo/registry/rand-0.8.5/src/seq/mod.rs:623:12 365s | 365s 623 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 365s | ^^^^^^^ 365s | 365s = help: consider using a Cargo feature instead 365s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 365s [lints.rust] 365s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 365s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 365s = note: see for more information about checking conditional configuration 365s 365s warning: unexpected `cfg` condition name: `doc_cfg` 365s --> /usr/share/cargo/registry/rand-0.8.5/src/seq/index.rs:276:12 365s | 365s 276 | #[cfg_attr(doc_cfg, doc(cfg(feature = "std")))] 365s | ^^^^^^^ 365s | 365s = help: consider using a Cargo feature instead 365s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 365s [lints.rust] 365s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 365s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 365s = note: see for more information about checking conditional configuration 365s 365s warning: unexpected `cfg` condition name: `doc_cfg` 365s --> /usr/share/cargo/registry/rand-0.8.5/src/seq/mod.rs:114:16 365s | 365s 114 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 365s | ^^^^^^^ 365s | 365s = help: consider using a Cargo feature instead 365s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 365s [lints.rust] 365s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 365s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 365s = note: see for more information about checking conditional configuration 365s 365s warning: unexpected `cfg` condition name: `doc_cfg` 365s --> /usr/share/cargo/registry/rand-0.8.5/src/seq/mod.rs:142:16 365s | 365s 142 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 365s | ^^^^^^^ 365s | 365s = help: consider using a Cargo feature instead 365s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 365s [lints.rust] 365s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 365s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 365s = note: see for more information about checking conditional configuration 365s 365s warning: unexpected `cfg` condition name: `doc_cfg` 365s --> /usr/share/cargo/registry/rand-0.8.5/src/seq/mod.rs:170:16 365s | 365s 170 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 365s | ^^^^^^^ 365s | 365s = help: consider using a Cargo feature instead 365s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 365s [lints.rust] 365s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 365s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 365s = note: see for more information about checking conditional configuration 365s 365s warning: unexpected `cfg` condition name: `doc_cfg` 365s --> /usr/share/cargo/registry/rand-0.8.5/src/seq/mod.rs:219:16 365s | 365s 219 | #[cfg_attr(doc_cfg, doc(cfg(feature = "std")))] 365s | ^^^^^^^ 365s | 365s = help: consider using a Cargo feature instead 365s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 365s [lints.rust] 365s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 365s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 365s = note: see for more information about checking conditional configuration 365s 365s warning: unexpected `cfg` condition name: `doc_cfg` 365s --> /usr/share/cargo/registry/rand-0.8.5/src/seq/mod.rs:465:16 365s | 365s 465 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 365s | ^^^^^^^ 365s | 365s = help: consider using a Cargo feature instead 365s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 365s [lints.rust] 365s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 365s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 365s = note: see for more information about checking conditional configuration 365s 365s warning: trait `Float` is never used 365s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:238:18 365s | 365s 238 | pub(crate) trait Float: Sized { 365s | ^^^^^ 365s | 365s = note: `#[warn(dead_code)]` on by default 365s 365s warning: associated items `lanes`, `extract`, and `replace` are never used 365s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:247:8 365s | 365s 245 | pub(crate) trait FloatAsSIMD: Sized { 365s | ----------- associated items in this trait 365s 246 | #[inline(always)] 365s 247 | fn lanes() -> usize { 365s | ^^^^^ 365s ... 365s 255 | fn extract(self, index: usize) -> Self { 365s | ^^^^^^^ 365s ... 365s 260 | fn replace(self, index: usize, new_value: Self) -> Self { 365s | ^^^^^^^ 365s 365s warning: method `all` is never used 365s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:268:8 365s | 365s 266 | pub(crate) trait BoolAsSIMD: Sized { 365s | ---------- method in this trait 365s 267 | fn any(self) -> bool; 365s 268 | fn all(self) -> bool; 365s | ^^^ 365s 366s warning: `rand` (lib) generated 70 warnings (1 duplicate) 366s Compiling sha1 v0.10.6 366s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=sha1 CARGO_MANIFEST_DIR=/tmp/tmp.o8L9imxcb3/registry/sha1-0.10.6 CARGO_MANIFEST_PATH=/tmp/tmp.o8L9imxcb3/registry/sha1-0.10.6/Cargo.toml CARGO_PKG_AUTHORS='RustCrypto Developers' CARGO_PKG_DESCRIPTION='SHA-1 hash function' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=sha1 CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/RustCrypto/hashes' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.10.6 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=10 CARGO_PKG_VERSION_PATCH=6 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.o8L9imxcb3/target/debug/deps rustc --crate-name sha1 --edition=2018 /tmp/tmp.o8L9imxcb3/registry/sha1-0.10.6/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("asm", "compress", "default", "force-soft", "loongarch64_asm", "oid", "sha1-asm", "std"))' -C metadata=7a229c14a1ac9b31 -C extra-filename=-7a229c14a1ac9b31 --out-dir /tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.o8L9imxcb3/target/debug/deps --extern cfg_if=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps/libcfg_if-ff3ff84a061de73f.rmeta --extern digest=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps/libdigest-027272cf65436a63.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.o8L9imxcb3/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 366s warning: `sha1` (lib) generated 1 warning (1 duplicate) 366s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=gdk_pixbuf_sys CARGO_MANIFEST_DIR=/tmp/tmp.o8L9imxcb3/registry/gdk-pixbuf-sys-0.20.7 CARGO_MANIFEST_PATH=/tmp/tmp.o8L9imxcb3/registry/gdk-pixbuf-sys-0.20.7/Cargo.toml CARGO_PKG_AUTHORS='The gtk-rs Project Developers' CARGO_PKG_DESCRIPTION='FFI bindings to libgdk_pixbuf-2.0' CARGO_PKG_HOMEPAGE='https://gtk-rs.org/' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=gdk-pixbuf-sys CARGO_PKG_README='' CARGO_PKG_REPOSITORY='https://github.com/gtk-rs/gtk-rs-core' CARGO_PKG_RUST_VERSION=1.70 CARGO_PKG_VERSION=0.20.7 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=20 CARGO_PKG_VERSION_PATCH=7 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.o8L9imxcb3/target/debug/deps OUT_DIR=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/build/gdk-pixbuf-sys-ab4c33b0ec0f5591/out rustc --crate-name gdk_pixbuf_sys --edition=2021 /tmp/tmp.o8L9imxcb3/registry/gdk-pixbuf-sys-0.20.7/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("v2_40", "v2_42"))' -C metadata=b62cea8e49a62be1 -C extra-filename=-b62cea8e49a62be1 --out-dir /tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.o8L9imxcb3/target/debug/deps --extern gio_sys=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps/libgio_sys-1dc004e0c68c0f79.rmeta --extern glib_sys=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps/libglib_sys-53b910227b38db1a.rmeta --extern gobject_sys=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps/libgobject_sys-db6ee3adb88e406b.rmeta --extern libc=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps/liblibc-cf2521928ac070dc.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.o8L9imxcb3/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain -l gdk_pixbuf-2.0 -l gobject-2.0 -l glib-2.0 --cfg system_deps_have_gdk_pixbuf_2_0` 366s warning: `gdk-pixbuf-sys` (lib) generated 1 warning (1 duplicate) 366s Compiling zbus_names v3.0.0 366s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=zbus_names CARGO_MANIFEST_DIR=/tmp/tmp.o8L9imxcb3/registry/zbus_names-3.0.0 CARGO_MANIFEST_PATH=/tmp/tmp.o8L9imxcb3/registry/zbus_names-3.0.0/Cargo.toml CARGO_PKG_AUTHORS='Zeeshan Ali Khan ' CARGO_PKG_DESCRIPTION='A collection of D-Bus bus names types' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=zbus_names CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dbus2/zbus/' CARGO_PKG_RUST_VERSION=1.75 CARGO_PKG_VERSION=3.0.0 CARGO_PKG_VERSION_MAJOR=3 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.o8L9imxcb3/target/debug/deps rustc --crate-name zbus_names --edition=2021 /tmp/tmp.o8L9imxcb3/registry/zbus_names-3.0.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=e138813c02d4cbaa -C extra-filename=-e138813c02d4cbaa --out-dir /tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.o8L9imxcb3/target/debug/deps --extern serde=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps/libserde-0e7dff716e38da0d.rmeta --extern static_assertions=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps/libstatic_assertions-18df01cc327facaa.rmeta --extern zvariant=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps/libzvariant-7b45eb8446d33c11.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.o8L9imxcb3/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 366s warning: `zbus_names` (lib) generated 1 warning (1 duplicate) 366s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=gio CARGO_MANIFEST_DIR=/tmp/tmp.o8L9imxcb3/registry/gio-0.20.7 CARGO_MANIFEST_PATH=/tmp/tmp.o8L9imxcb3/registry/gio-0.20.7/Cargo.toml CARGO_PKG_AUTHORS='The gtk-rs Project Developers' CARGO_PKG_DESCRIPTION='Rust bindings for the Gio library' CARGO_PKG_HOMEPAGE='https://gtk-rs.org/' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=gio CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/gtk-rs/gtk-rs-core' CARGO_PKG_RUST_VERSION=1.70 CARGO_PKG_VERSION=0.20.7 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=20 CARGO_PKG_VERSION_PATCH=7 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.o8L9imxcb3/target/debug/deps OUT_DIR=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/build/gio-e547ada359b08501/out rustc --crate-name gio --edition=2021 /tmp/tmp.o8L9imxcb3/registry/gio-0.20.7/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("v2_58", "v2_60", "v2_62", "v2_64", "v2_66", "v2_68", "v2_70", "v2_72", "v2_74", "v2_76", "v2_78", "v2_80", "v2_82", "v2_84"))' -C metadata=4099a390d8130ded -C extra-filename=-4099a390d8130ded --out-dir /tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.o8L9imxcb3/target/debug/deps --extern futures_channel=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps/libfutures_channel-8ed485ea134c933c.rmeta --extern futures_core=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps/libfutures_core-8d305950da6bf5c8.rmeta --extern futures_io=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps/libfutures_io-1a4387591f8b2b95.rmeta --extern futures_util=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps/libfutures_util-23beed03671fe7d3.rmeta --extern gio_sys=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps/libgio_sys-1dc004e0c68c0f79.rmeta --extern glib=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps/libglib-1afbd60e7b499506.rmeta --extern libc=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps/liblibc-cf2521928ac070dc.rmeta --extern pin_project_lite=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps/libpin_project_lite-5dc815523e98d889.rmeta --extern smallvec=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps/libsmallvec-ef72c43926f60793.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.o8L9imxcb3/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 369s warning: `glib` (lib) generated 1 warning (1 duplicate) 369s Compiling zbus_macros v4.4.0 369s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=zbus_macros CARGO_MANIFEST_DIR=/tmp/tmp.o8L9imxcb3/registry/zbus_macros-4.4.0 CARGO_MANIFEST_PATH=/tmp/tmp.o8L9imxcb3/registry/zbus_macros-4.4.0/Cargo.toml CARGO_PKG_AUTHORS='Marc-André Lureau :Zeeshan Ali Khan ' CARGO_PKG_DESCRIPTION='proc-macros for zbus' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=zbus_macros CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dbus2/zbus/' CARGO_PKG_RUST_VERSION=1.75 CARGO_PKG_VERSION=4.4.0 CARGO_PKG_VERSION_MAJOR=4 CARGO_PKG_VERSION_MINOR=4 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.o8L9imxcb3/target/debug/deps rustc --crate-name zbus_macros --edition=2021 /tmp/tmp.o8L9imxcb3/registry/zbus_macros-4.4.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type proc-macro --emit=dep-info,link -C prefer-dynamic -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=858601daf3a85039 -C extra-filename=-858601daf3a85039 --out-dir /tmp/tmp.o8L9imxcb3/target/debug/deps -L dependency=/tmp/tmp.o8L9imxcb3/target/debug/deps --extern proc_macro_crate=/tmp/tmp.o8L9imxcb3/target/debug/deps/libproc_macro_crate-76b8c9685ffc2762.rlib --extern proc_macro2=/tmp/tmp.o8L9imxcb3/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rlib --extern quote=/tmp/tmp.o8L9imxcb3/target/debug/deps/libquote-dc92c6f25ee0f0c6.rlib --extern syn=/tmp/tmp.o8L9imxcb3/target/debug/deps/libsyn-0167beed9e699402.rlib --extern zvariant_utils=/tmp/tmp.o8L9imxcb3/target/debug/deps/libzvariant_utils-555d90bad4acf190.rlib --extern proc_macro --cap-lints warn` 373s Compiling ordered-stream v0.2.0 373s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=ordered_stream CARGO_MANIFEST_DIR=/tmp/tmp.o8L9imxcb3/registry/ordered-stream-0.2.0 CARGO_MANIFEST_PATH=/tmp/tmp.o8L9imxcb3/registry/ordered-stream-0.2.0/Cargo.toml CARGO_PKG_AUTHORS='Daniel De Graaf :Zeeshan Ali Khan ' CARGO_PKG_DESCRIPTION='Streams that are ordered relative to external events' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=ordered-stream CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/danieldg/ordered-stream' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.2.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.o8L9imxcb3/target/debug/deps rustc --crate-name ordered_stream --edition=2018 /tmp/tmp.o8L9imxcb3/registry/ordered-stream-0.2.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=5d03c0a21a4bd5e4 -C extra-filename=-5d03c0a21a4bd5e4 --out-dir /tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.o8L9imxcb3/target/debug/deps --extern futures_core=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps/libfutures_core-8d305950da6bf5c8.rmeta --extern pin_project_lite=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps/libpin_project_lite-5dc815523e98d889.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.o8L9imxcb3/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 373s warning: `ordered-stream` (lib) generated 1 warning (1 duplicate) 373s Compiling xdg-home v1.3.0 373s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=xdg_home CARGO_MANIFEST_DIR=/tmp/tmp.o8L9imxcb3/registry/xdg-home-1.3.0 CARGO_MANIFEST_PATH=/tmp/tmp.o8L9imxcb3/registry/xdg-home-1.3.0/Cargo.toml CARGO_PKG_AUTHORS='Zeeshan Ali Khan ' CARGO_PKG_DESCRIPTION='The user'\''s home directory as per XDG Specification' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=xdg-home CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/zeenix/xdg-home' CARGO_PKG_RUST_VERSION=1.60 CARGO_PKG_VERSION=1.3.0 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.o8L9imxcb3/target/debug/deps rustc --crate-name xdg_home --edition=2021 /tmp/tmp.o8L9imxcb3/registry/xdg-home-1.3.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=4230920bfa085c8c -C extra-filename=-4230920bfa085c8c --out-dir /tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.o8L9imxcb3/target/debug/deps --extern libc=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps/liblibc-cf2521928ac070dc.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.o8L9imxcb3/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 373s warning: `xdg-home` (lib) generated 1 warning (1 duplicate) 373s Compiling async-trait v0.1.83 373s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=async_trait CARGO_MANIFEST_DIR=/tmp/tmp.o8L9imxcb3/registry/async-trait-0.1.83 CARGO_MANIFEST_PATH=/tmp/tmp.o8L9imxcb3/registry/async-trait-0.1.83/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='Type erasure for async trait methods' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=async-trait CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/async-trait' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=0.1.83 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=83 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.o8L9imxcb3/target/debug/deps rustc --crate-name async_trait --edition=2021 /tmp/tmp.o8L9imxcb3/registry/async-trait-0.1.83/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=e4c90cfd514ad223 -C extra-filename=-e4c90cfd514ad223 --out-dir /tmp/tmp.o8L9imxcb3/target/debug/deps -L dependency=/tmp/tmp.o8L9imxcb3/target/debug/deps --extern proc_macro2=/tmp/tmp.o8L9imxcb3/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rlib --extern quote=/tmp/tmp.o8L9imxcb3/target/debug/deps/libquote-dc92c6f25ee0f0c6.rlib --extern syn=/tmp/tmp.o8L9imxcb3/target/debug/deps/libsyn-0167beed9e699402.rlib --extern proc_macro --cap-lints warn` 375s Compiling serde_repr v0.1.12 375s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=serde_repr CARGO_MANIFEST_DIR=/tmp/tmp.o8L9imxcb3/registry/serde_repr-0.1.12 CARGO_MANIFEST_PATH=/tmp/tmp.o8L9imxcb3/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.o8L9imxcb3/target/debug/deps rustc --crate-name serde_repr --edition=2018 /tmp/tmp.o8L9imxcb3/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=79727398b79ecac5 -C extra-filename=-79727398b79ecac5 --out-dir /tmp/tmp.o8L9imxcb3/target/debug/deps -L dependency=/tmp/tmp.o8L9imxcb3/target/debug/deps --extern proc_macro2=/tmp/tmp.o8L9imxcb3/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rlib --extern quote=/tmp/tmp.o8L9imxcb3/target/debug/deps/libquote-dc92c6f25ee0f0c6.rlib --extern syn=/tmp/tmp.o8L9imxcb3/target/debug/deps/libsyn-0167beed9e699402.rlib --extern proc_macro --cap-lints warn` 375s Compiling hex v0.4.3 375s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=hex CARGO_MANIFEST_DIR=/tmp/tmp.o8L9imxcb3/registry/hex-0.4.3 CARGO_MANIFEST_PATH=/tmp/tmp.o8L9imxcb3/registry/hex-0.4.3/Cargo.toml CARGO_PKG_AUTHORS='KokaKiwi ' CARGO_PKG_DESCRIPTION='Encoding and decoding data into/from hexadecimal representation.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=hex CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/KokaKiwi/rust-hex' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.4.3 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=4 CARGO_PKG_VERSION_PATCH=3 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.o8L9imxcb3/target/debug/deps rustc --crate-name hex --edition=2018 /tmp/tmp.o8L9imxcb3/registry/hex-0.4.3/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="alloc"' --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "default", "serde", "std"))' -C metadata=d04eec135ea2b5a3 -C extra-filename=-d04eec135ea2b5a3 --out-dir /tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.o8L9imxcb3/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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.o8L9imxcb3/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 375s warning: `hex` (lib) generated 1 warning (1 duplicate) 375s Compiling zbus v4.4.0 375s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=zbus CARGO_MANIFEST_DIR=/tmp/tmp.o8L9imxcb3/registry/zbus-4.4.0 CARGO_MANIFEST_PATH=/tmp/tmp.o8L9imxcb3/registry/zbus-4.4.0/Cargo.toml CARGO_PKG_AUTHORS='Zeeshan Ali Khan ' CARGO_PKG_DESCRIPTION='API for D-Bus communication' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=zbus CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dbus2/zbus/' CARGO_PKG_RUST_VERSION=1.75 CARGO_PKG_VERSION=4.4.0 CARGO_PKG_VERSION_MAJOR=4 CARGO_PKG_VERSION_MINOR=4 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.o8L9imxcb3/target/debug/deps rustc --crate-name zbus --edition=2021 /tmp/tmp.o8L9imxcb3/registry/zbus-4.4.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("async-executor", "async-fs", "async-io", "async-lock", "async-task", "blocking", "bus-impl", "chrono", "default", "heapless", "option-as-array", "p2p", "time", "tokio", "tokio-vsock", "url", "uuid", "vsock"))' -C metadata=27d32f1eb779b401 -C extra-filename=-27d32f1eb779b401 --out-dir /tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.o8L9imxcb3/target/debug/deps --extern async_broadcast=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps/libasync_broadcast-852b859fbdd9a4f4.rmeta --extern async_trait=/tmp/tmp.o8L9imxcb3/target/debug/deps/libasync_trait-e4c90cfd514ad223.so --extern enumflags2=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps/libenumflags2-2867d32c4b4f39e8.rmeta --extern event_listener=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps/libevent_listener-93bdad7496d4853a.rmeta --extern futures_core=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps/libfutures_core-8d305950da6bf5c8.rmeta --extern futures_sink=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps/libfutures_sink-2335bc9d806f8753.rmeta --extern futures_util=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps/libfutures_util-23beed03671fe7d3.rmeta --extern hex=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps/libhex-d04eec135ea2b5a3.rmeta --extern nix=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps/libnix-1c06771599af3024.rmeta --extern ordered_stream=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps/libordered_stream-5d03c0a21a4bd5e4.rmeta --extern rand=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps/librand-da2a195293a4eb5f.rmeta --extern serde=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps/libserde-0e7dff716e38da0d.rmeta --extern serde_repr=/tmp/tmp.o8L9imxcb3/target/debug/deps/libserde_repr-79727398b79ecac5.so --extern sha1=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps/libsha1-7a229c14a1ac9b31.rmeta --extern static_assertions=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps/libstatic_assertions-18df01cc327facaa.rmeta --extern tracing=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps/libtracing-5f8a2432d30b4ef1.rmeta --extern xdg_home=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps/libxdg_home-4230920bfa085c8c.rmeta --extern zbus_macros=/tmp/tmp.o8L9imxcb3/target/debug/deps/libzbus_macros-858601daf3a85039.so --extern zbus_names=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps/libzbus_names-e138813c02d4cbaa.rmeta --extern zvariant=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps/libzvariant-7b45eb8446d33c11.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.o8L9imxcb3/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 376s error: Either "async-io" (default) or "tokio" must be enabled. 376s --> /usr/share/cargo/registry/zbus-4.4.0/src/lib.rs:37:5 376s | 376s 37 | compile_error!("Either \"async-io\" (default) or \"tokio\" must be enabled."); 376s | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 376s 376s error[E0432]: unresolved import `async_lock` 376s --> /usr/share/cargo/registry/zbus-4.4.0/src/abstractions/async_lock.rs:2:16 376s | 376s 2 | pub(crate) use async_lock::{Mutex, RwLock, RwLockReadGuard, RwLockWriteGuard}; 376s | ^^^^^^^^^^ help: a similar path exists: `crate::async_lock` 376s | 376s = note: `use` statements changed in Rust 2018; read more at 376s 376s error[E0432]: unresolved import `async_io` 376s --> /usr/share/cargo/registry/zbus-4.4.0/src/address/transport/mod.rs:9:5 376s | 376s 9 | use async_io::Async; 376s | ^^^^^^^^ use of undeclared crate or module `async_io` 376s 376s error[E0432]: unresolved import `async_io` 376s --> /usr/share/cargo/registry/zbus-4.4.0/src/address/transport/tcp.rs:4:5 376s | 376s 4 | use async_io::Async; 376s | ^^^^^^^^ use of undeclared crate or module `async_io` 376s 376s error[E0432]: unresolved import `async_io` 376s --> /usr/share/cargo/registry/zbus-4.4.0/src/connection/builder.rs:2:5 376s | 376s 2 | use async_io::Async; 376s | ^^^^^^^^ use of undeclared crate or module `async_io` 376s 376s error[E0432]: unresolved import `async_io` 376s --> /usr/share/cargo/registry/zbus-4.4.0/src/connection/socket/tcp.rs:2:5 376s | 376s 2 | use async_io::Async; 376s | ^^^^^^^^ use of undeclared crate or module `async_io` 376s 376s error[E0432]: unresolved import `async_io` 376s --> /usr/share/cargo/registry/zbus-4.4.0/src/connection/socket/unix.rs:2:5 376s | 376s 2 | use async_io::Async; 376s | ^^^^^^^^ use of undeclared crate or module `async_io` 376s 376s error[E0432]: unresolved import `async_io` 376s --> /usr/share/cargo/registry/zbus-4.4.0/src/connection/socket/mod.rs:14:5 376s | 376s 14 | use async_io::Async; 376s | ^^^^^^^^ use of undeclared crate or module `async_io` 376s 376s error[E0432]: unresolved import `async_executor` 376s --> /usr/share/cargo/registry/zbus-4.4.0/src/abstractions/executor.rs:2:5 376s | 376s 2 | use async_executor::Executor as AsyncExecutor; 376s | ^^^^^^^^^^^^^^ use of undeclared crate or module `async_executor` 376s 376s error[E0432]: unresolved import `async_task` 376s --> /usr/share/cargo/registry/zbus-4.4.0/src/abstractions/executor.rs:4:5 376s | 376s 4 | use async_task::Task as AsyncTask; 376s | ^^^^^^^^^^ use of undeclared crate or module `async_task` 376s | 376s help: there is a crate or module with a similar name 376s | 376s 4 | use async_trait::Task as AsyncTask; 376s | ~~~~~~~~~~~ 376s 376s error[E0433]: failed to resolve: could not find `AsyncReadExt` in `futures_util` 376s --> /usr/share/cargo/registry/zbus-4.4.0/src/connection/socket/tcp.rs:17:29 376s | 376s 17 | match futures_util::AsyncReadExt::read(&mut self.as_ref(), buf).await { 376s | ^^^^^^^^^^^^ could not find `AsyncReadExt` in `futures_util` 376s | 376s note: found an item that was configured out 376s --> /usr/share/cargo/registry/futures-util-0.3.31/src/lib.rs:320:47 376s | 376s 320 | AsyncBufRead, AsyncBufReadExt, AsyncRead, AsyncReadExt, AsyncSeek, AsyncSeekExt, AsyncWrite, 376s | ^^^^^^^^^^^^ 376s note: the item is gated behind the `io` feature 376s --> /usr/share/cargo/registry/futures-util-0.3.31/src/lib.rs:316:7 376s | 376s 316 | #[cfg(feature = "io")] 376s | ^^^^^^^^^^^^^^ 376s 376s error[E0433]: failed to resolve: could not find `AsyncWriteExt` in `futures_util` 376s --> /usr/share/cargo/registry/zbus-4.4.0/src/connection/socket/tcp.rs:67:23 376s | 376s 67 | futures_util::AsyncWriteExt::write(&mut self.as_ref(), buf).await 376s | ^^^^^^^^^^^^^ could not find `AsyncWriteExt` in `futures_util` 376s | 376s note: found an item that was configured out 376s --> /usr/share/cargo/registry/futures-util-0.3.31/src/lib.rs:321:5 376s | 376s 321 | AsyncWriteExt, 376s | ^^^^^^^^^^^^^ 376s note: the item is gated behind the `io` feature 376s --> /usr/share/cargo/registry/futures-util-0.3.31/src/lib.rs:316:7 376s | 376s 316 | #[cfg(feature = "io")] 376s | ^^^^^^^^^^^^^^ 376s 376s error[E0433]: failed to resolve: use of undeclared crate or module `async_lock` 376s --> /usr/share/cargo/registry/zbus-4.4.0/src/abstractions/async_lock.rs:15:25 376s | 376s 15 | let semaphore = async_lock::Semaphore::new(permits); 376s | ^^^^^^^^^^ use of undeclared crate or module `async_lock` 376s 376s error[E0433]: failed to resolve: could not find `AsyncBufReadExt` in `futures_util` 376s --> /usr/share/cargo/registry/zbus-4.4.0/src/abstractions/file.rs:30:36 376s | 376s 30 | .map(futures_util::AsyncBufReadExt::lines) 376s | ^^^^^^^^^^^^^^^ could not find `AsyncBufReadExt` in `futures_util` 376s | 376s note: found an item that was configured out 376s --> /usr/share/cargo/registry/futures-util-0.3.31/src/lib.rs:320:19 376s | 376s 320 | AsyncBufRead, AsyncBufReadExt, AsyncRead, AsyncReadExt, AsyncSeek, AsyncSeekExt, AsyncWrite, 376s | ^^^^^^^^^^^^^^^ 376s note: the item is gated behind the `io` feature 376s --> /usr/share/cargo/registry/futures-util-0.3.31/src/lib.rs:316:7 376s | 376s 316 | #[cfg(feature = "io")] 376s | ^^^^^^^^^^^^^^ 376s 376s error[E0433]: failed to resolve: could not find `io` in `futures_util` 376s --> /usr/share/cargo/registry/zbus-4.4.0/src/abstractions/file.rs:18:36 376s | 376s 18 | pub struct FileLines(futures_util::io::Lines>); 376s | ^^ could not find `io` in `futures_util` 376s | 376s note: found an item that was configured out 376s --> /usr/share/cargo/registry/futures-util-0.3.31/src/lib.rs:315:9 376s | 376s 315 | pub mod io; 376s | ^^ 376s note: the item is gated behind the `io` feature 376s --> /usr/share/cargo/registry/futures-util-0.3.31/src/lib.rs:312:7 376s | 376s 312 | #[cfg(feature = "io")] 376s | ^^^^^^^^^^^^^^ 376s help: consider importing this module 376s | 376s 5 + use std::io; 376s | 376s help: if you import `io`, refer to it directly 376s | 376s 18 - pub struct FileLines(futures_util::io::Lines>); 376s 18 + pub struct FileLines(io::Lines>); 376s | 376s 376s error[E0433]: failed to resolve: could not find `io` in `futures_util` 376s --> /usr/share/cargo/registry/zbus-4.4.0/src/abstractions/file.rs:18:60 376s | 376s 18 | pub struct FileLines(futures_util::io::Lines>); 376s | ^^ could not find `io` in `futures_util` 376s | 376s note: found an item that was configured out 376s --> /usr/share/cargo/registry/futures-util-0.3.31/src/lib.rs:315:9 376s | 376s 315 | pub mod io; 376s | ^^ 376s note: the item is gated behind the `io` feature 376s --> /usr/share/cargo/registry/futures-util-0.3.31/src/lib.rs:312:7 376s | 376s 312 | #[cfg(feature = "io")] 376s | ^^^^^^^^^^^^^^ 376s help: consider importing this module 376s | 376s 5 + use std::io; 376s | 376s help: if you import `io`, refer to it directly 376s | 376s 18 - pub struct FileLines(futures_util::io::Lines>); 376s 18 + pub struct FileLines(futures_util::io::Lines>); 376s | 376s 376s error[E0433]: failed to resolve: use of undeclared crate or module `async_fs` 376s --> /usr/share/cargo/registry/zbus-4.4.0/src/abstractions/file.rs:27:13 376s | 376s 27 | async_fs::File::open(path) 376s | ^^^^^^^^ use of undeclared crate or module `async_fs` 376s | 376s help: consider importing this struct 376s | 376s 5 + use std::fs::File; 376s | 376s help: if you import `File`, refer to it directly 376s | 376s 27 - async_fs::File::open(path) 376s 27 + File::open(path) 376s | 376s 376s error[E0433]: failed to resolve: could not find `io` in `futures_util` 376s --> /usr/share/cargo/registry/zbus-4.4.0/src/abstractions/file.rs:29:36 376s | 376s 29 | .map(futures_util::io::BufReader::new) 376s | ^^ could not find `io` in `futures_util` 376s | 376s note: found an item that was configured out 376s --> /usr/share/cargo/registry/futures-util-0.3.31/src/lib.rs:315:9 376s | 376s 315 | pub mod io; 376s | ^^ 376s note: the item is gated behind the `io` feature 376s --> /usr/share/cargo/registry/futures-util-0.3.31/src/lib.rs:312:7 376s | 376s 312 | #[cfg(feature = "io")] 376s | ^^^^^^^^^^^^^^ 376s help: consider importing this struct 376s | 376s 5 + use std::io::BufReader; 376s | 376s help: if you import `BufReader`, refer to it directly 376s | 376s 29 - .map(futures_util::io::BufReader::new) 376s 29 + .map(BufReader::new) 376s | 376s 376s error[E0282]: type annotations needed 376s --> /usr/share/cargo/registry/zbus-4.4.0/src/connection/mod.rs:1047:49 376s | 376s 1047 | .add_match_rule(e.key().inner().clone()) 376s | ^^^^^ cannot infer type for type parameter `K` declared on the enum `Entry` 376s 376s error[E0282]: type annotations needed for `&mut (_, _)` 376s --> /usr/share/cargo/registry/zbus-4.4.0/src/connection/mod.rs:1060:21 376s | 376s 1060 | let (num_subscriptions, receiver) = e.get_mut(); 376s | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 376s ... 376s 1063 | if max_queued > receiver.capacity() { 376s | -------- type must be known at this point 376s | 376s help: consider giving this pattern a type, where the placeholders `_` are specified 376s | 376s 1060 | let (num_subscriptions, receiver): &mut (_, _) = e.get_mut(); 376s | +++++++++++++ 376s 376s error[E0282]: type annotations needed 376s --> /usr/share/cargo/registry/zbus-4.4.0/src/connection/mod.rs:1082:36 376s | 376s 1082 | let rule = e.key().inner().clone(); 376s | ^^^^^ cannot infer type for type parameter `K` declared on the enum `Entry` 376s 376s error[E0599]: the method `next` exists for struct `Enumerate`, but its trait bounds were not satisfied 376s --> /usr/share/cargo/registry/zbus-4.4.0/src/connection/handshake/cookies.rs:54:43 376s | 376s 54 | while let Some((n, line)) = lines.next().await { 376s | ^^^^ method cannot be called on `Enumerate` due to unsatisfied trait bounds 376s | 376s ::: /usr/share/cargo/registry/futures-util-0.3.31/src/stream/stream/enumerate.rs:9:1 376s | 376s 9 | / pin_project! { 376s 10 | | /// Stream for the [`enumerate`](super::StreamExt::enumerate) method. 376s 11 | | #[derive(Debug)] 376s 12 | | #[must_use = "streams do nothing unless polled"] 376s ... | 376s 17 | | } 376s 18 | | } 376s | |_- doesn't satisfy `_: StreamExt` or `_: Stream` 376s | 376s = note: the following trait bounds were not satisfied: 376s `futures_util::stream::Enumerate: futures_core::Stream` 376s which is required by `futures_util::stream::Enumerate: StreamExt` 376s 376s error[E0433]: failed to resolve: use of undeclared crate or module `async_fs` 376s --> /usr/share/cargo/registry/zbus-4.4.0/src/abstractions/file.rs:73:9 376s | 376s 73 | async_fs::metadata(path).await 376s | ^^^^^^^^ use of undeclared crate or module `async_fs` 376s 377s error[E0599]: the method `get_or_init` exists for struct `OnceLock`, but its trait bounds were not satisfied 377s --> /usr/share/cargo/registry/zbus-4.4.0/src/connection/mod.rs:917:14 377s | 377s 915 | / self.inner 377s 916 | | .object_server 377s 917 | | .get_or_init(move || self.setup_object_server(start, started_event)) 377s | | -^^^^^^^^^^^ method cannot be called on `OnceLock` due to unsatisfied trait bounds 377s | |_____________| 377s | 377s | 377s ::: /usr/share/cargo/registry/zbus-4.4.0/src/blocking/object_server.rs:126:1 377s | 377s 126 | pub struct ObjectServer { 377s | ----------------------- doesn't satisfy `blocking::object_server::ObjectServer: Sized` 377s | 377s = note: the following trait bounds were not satisfied: 377s `{type error}: Sized` 377s which is required by `blocking::object_server::ObjectServer: Sized` 377s 377s error[E0433]: failed to resolve: use of undeclared crate or module `blocking` 377s --> /usr/share/cargo/registry/zbus-4.4.0/src/abstractions/executor.rs:172:23 377s | 377s 172 | Self(Some(blocking::unblock(f))) 377s | ^^^^^^^^ use of undeclared crate or module `blocking` 377s 377s error[E0433]: failed to resolve: use of undeclared crate or module `async_io` 377s --> /usr/share/cargo/registry/zbus-4.4.0/src/utils.rs:34:5 377s | 377s 34 | async_io::block_on(future) 377s | ^^^^^^^^ use of undeclared crate or module `async_io` 377s 378s error[E0433]: failed to resolve: use of undeclared crate or module `async_fs` 378s --> /usr/share/cargo/registry/zbus-4.4.0/src/abstractions/file.rs:18:74 378s | 378s 18 | pub struct FileLines(futures_util::io::Lines>); 378s | ^^^^^^^^ use of undeclared crate or module `async_fs` 378s 378s error[E0433]: failed to resolve: use of undeclared crate or module `async_lock` 378s --> /usr/share/cargo/registry/zbus-4.4.0/src/abstractions/async_lock.rs:8:29 378s | 378s 8 | pub(crate) struct Semaphore(async_lock::Semaphore); 378s | ^^^^^^^^^^ use of undeclared crate or module `async_lock` 378s 378s error[E0433]: failed to resolve: use of undeclared crate or module `async_lock` 378s --> /usr/share/cargo/registry/zbus-4.4.0/src/abstractions/async_lock.rs:36:39 378s | 378s 36 | pub(crate) type SemaphorePermit<'a> = async_lock::SemaphoreGuard<'a>; 378s | ^^^^^^^^^^ use of undeclared crate or module `async_lock` 378s 378s Some errors have detailed explanations: E0282, E0432, E0433, E0599. 378s For more information about an error, try `rustc --explain E0282`. 378s error: could not compile `zbus` (lib) due to 29 previous errors 378s 378s Caused by: 378s process didn't exit successfully: `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=zbus CARGO_MANIFEST_DIR=/tmp/tmp.o8L9imxcb3/registry/zbus-4.4.0 CARGO_MANIFEST_PATH=/tmp/tmp.o8L9imxcb3/registry/zbus-4.4.0/Cargo.toml CARGO_PKG_AUTHORS='Zeeshan Ali Khan ' CARGO_PKG_DESCRIPTION='API for D-Bus communication' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=zbus CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dbus2/zbus/' CARGO_PKG_RUST_VERSION=1.75 CARGO_PKG_VERSION=4.4.0 CARGO_PKG_VERSION_MAJOR=4 CARGO_PKG_VERSION_MINOR=4 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.o8L9imxcb3/target/debug/deps rustc --crate-name zbus --edition=2021 /tmp/tmp.o8L9imxcb3/registry/zbus-4.4.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("async-executor", "async-fs", "async-io", "async-lock", "async-task", "blocking", "bus-impl", "chrono", "default", "heapless", "option-as-array", "p2p", "time", "tokio", "tokio-vsock", "url", "uuid", "vsock"))' -C metadata=27d32f1eb779b401 -C extra-filename=-27d32f1eb779b401 --out-dir /tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.o8L9imxcb3/target/debug/deps --extern async_broadcast=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps/libasync_broadcast-852b859fbdd9a4f4.rmeta --extern async_trait=/tmp/tmp.o8L9imxcb3/target/debug/deps/libasync_trait-e4c90cfd514ad223.so --extern enumflags2=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps/libenumflags2-2867d32c4b4f39e8.rmeta --extern event_listener=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps/libevent_listener-93bdad7496d4853a.rmeta --extern futures_core=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps/libfutures_core-8d305950da6bf5c8.rmeta --extern futures_sink=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps/libfutures_sink-2335bc9d806f8753.rmeta --extern futures_util=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps/libfutures_util-23beed03671fe7d3.rmeta --extern hex=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps/libhex-d04eec135ea2b5a3.rmeta --extern nix=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps/libnix-1c06771599af3024.rmeta --extern ordered_stream=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps/libordered_stream-5d03c0a21a4bd5e4.rmeta --extern rand=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps/librand-da2a195293a4eb5f.rmeta --extern serde=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps/libserde-0e7dff716e38da0d.rmeta --extern serde_repr=/tmp/tmp.o8L9imxcb3/target/debug/deps/libserde_repr-79727398b79ecac5.so --extern sha1=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps/libsha1-7a229c14a1ac9b31.rmeta --extern static_assertions=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps/libstatic_assertions-18df01cc327facaa.rmeta --extern tracing=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps/libtracing-5f8a2432d30b4ef1.rmeta --extern xdg_home=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps/libxdg_home-4230920bfa085c8c.rmeta --extern zbus_macros=/tmp/tmp.o8L9imxcb3/target/debug/deps/libzbus_macros-858601daf3a85039.so --extern zbus_names=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps/libzbus_names-e138813c02d4cbaa.rmeta --extern zvariant=/tmp/tmp.o8L9imxcb3/target/s390x-unknown-linux-gnu/debug/deps/libzvariant-7b45eb8446d33c11.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.o8L9imxcb3/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` (exit status: 1) 378s warning: build failed, waiting for other jobs to finish... 380s warning: `gio` (lib) generated 1 warning (1 duplicate) 380s /tmp/autopkgtest.9UAdYD/wrapper.sh: checking for leaked background processes... 380s /tmp/autopkgtest.9UAdYD/wrapper.sh: waiting for tee/cat subprocesses... 380s /tmp/autopkgtest.9UAdYD/wrapper.sh: cleaning up... 380s /tmp/autopkgtest.9UAdYD/wrapper.sh: Exit status: 101 380s autopkgtest: DBG: testbed command exited with code 101 380s autopkgtest [18:31:47]: test librust-search-provider-dev:gdk-pixbuf: -----------------------] 380s autopkgtest: DBG: testbed executing test finished with exit status 101 380s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.9UAdYD/librust-search-provider-dev%3Agdk-pixbuf-stdout /tmp/autopkgtest-work.fgzbr70j/out/librust-search-provider-dev%3Agdk-pixbuf-stdout 381s autopkgtest: DBG: got reply from testbed: ok 381s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.9UAdYD/librust-search-provider-dev%3Agdk-pixbuf-stderr /tmp/autopkgtest-work.fgzbr70j/out/librust-search-provider-dev%3Agdk-pixbuf-stderr 381s autopkgtest: DBG: got reply from testbed: ok 381s autopkgtest [18:31:48]: test librust-search-provider-dev:gdk-pixbuf: - - - - - - - - - - results - - - - - - - - - - 381s librust-search-provider-dev:gdk-pixbuf FLAKY non-zero exit status 101 381s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.9UAdYD/librust-search-provider-dev%3Agdk-pixbuf-artifacts/ /tmp/autopkgtest-work.fgzbr70j/out/artifacts/ 381s autopkgtest: DBG: got reply from testbed: ok 381s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.9UAdYD/librust-search-provider-dev:gdk-pixbuf-artifacts', '/tmp/autopkgtest.9UAdYD/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 381s autopkgtest: DBG: testbed command exited with code 0 381s autopkgtest [18:31:48]: test librust-search-provider-dev:tokio: preparing testbed 381s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['dh-cargo (>= 18)', 'librust-search-provider-dev'], deps_new=['dh-cargo (>= 18)', 'librust-search-provider-dev'] 381s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 381s autopkgtest: DBG: install_deps: deps_new=['dh-cargo (>= 18)', 'librust-search-provider-dev'] 381s autopkgtest: DBG: install-deps: satisfying dh-cargo (>= 18), librust-search-provider-dev 381s autopkgtest: DBG: can use apt-get on testbed: True 381s 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-search-provider-dev'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 382s Reading package lists... 382s Building dependency tree... 382s Reading state information... 382s Starting pkgProblemResolver with broken count: 0 382s Starting 2 pkgProblemResolver with broken count: 0 382s Done 382s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 382s autopkgtest: DBG: testbed command exited with code 0 382s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'librust-search-provider-dev'], kind short, sout pipe, serr pipe, env [] 382s autopkgtest: DBG: testbed command exited with code 0 382s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.9UAdYD/librust-search-provider-dev:tokio-packages.all"], kind short, sout raw, serr pipe, env [] 382s autopkgtest: DBG: testbed command exited with code 0 382s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.9UAdYD/librust-search-provider-dev%3Atokio-packages.all /tmp/autopkgtest-work.fgzbr70j/out/librust-search-provider-dev%3Atokio-packages.all 383s autopkgtest: DBG: got reply from testbed: ok 383s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.9UAdYD/build.JnS/src'], kind short, sout raw, serr raw, env [] 383s autopkgtest: DBG: testbed command exited with code 0 383s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.9UAdYD/build.JnS/src already exists 383s autopkgtest [18:31:50]: test librust-search-provider-dev:tokio: /usr/share/cargo/bin/cargo-auto-test search-provider 0.10.0 --all-targets --no-default-features --features tokio 383s autopkgtest [18:31:50]: test librust-search-provider-dev:tokio: [----------------------- 383s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.9UAdYD/wrapper.sh --debug --artifacts=/tmp/autopkgtest.9UAdYD/librust-search-provider-dev:tokio-artifacts --chdir=/tmp/autopkgtest.9UAdYD/build.JnS/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.9UAdYD/librust-search-provider-dev:tokio-stderr --stdout=/tmp/autopkgtest.9UAdYD/librust-search-provider-dev:tokio-stdout --tmp=/tmp/autopkgtest.9UAdYD/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 search-provider 0.10.0 --all-targets --no-default-features --features tokio'"], kind test, sout raw, serr raw, env [] 383s /tmp/autopkgtest.9UAdYD/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.9UAdYD/librust-search-provider-dev:tokio-artifacts 383s /tmp/autopkgtest.9UAdYD/wrapper.sh: changing to directory: /tmp/autopkgtest.9UAdYD/build.JnS/src 383s /tmp/autopkgtest.9UAdYD/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 383s /tmp/autopkgtest.9UAdYD/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 383s /tmp/autopkgtest.9UAdYD/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 383s /tmp/autopkgtest.9UAdYD/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 383s /tmp/autopkgtest.9UAdYD/wrapper.sh: setting environment: LANG=C.UTF-8 383s /tmp/autopkgtest.9UAdYD/wrapper.sh: unsetting environment: LANGUAGE 383s /tmp/autopkgtest.9UAdYD/wrapper.sh: unsetting environment: LC_ADDRESS 383s /tmp/autopkgtest.9UAdYD/wrapper.sh: unsetting environment: LC_ALL 383s /tmp/autopkgtest.9UAdYD/wrapper.sh: unsetting environment: LC_COLLATE 383s /tmp/autopkgtest.9UAdYD/wrapper.sh: unsetting environment: LC_CTYPE 383s /tmp/autopkgtest.9UAdYD/wrapper.sh: unsetting environment: LC_IDENTIFICATION 383s /tmp/autopkgtest.9UAdYD/wrapper.sh: unsetting environment: LC_MEASUREMENT 383s /tmp/autopkgtest.9UAdYD/wrapper.sh: unsetting environment: LC_MESSAGES 383s /tmp/autopkgtest.9UAdYD/wrapper.sh: unsetting environment: LC_MONETARY 383s /tmp/autopkgtest.9UAdYD/wrapper.sh: unsetting environment: LC_NAME 383s /tmp/autopkgtest.9UAdYD/wrapper.sh: unsetting environment: LC_NUMERIC 383s /tmp/autopkgtest.9UAdYD/wrapper.sh: unsetting environment: LC_PAPER 383s /tmp/autopkgtest.9UAdYD/wrapper.sh: unsetting environment: LC_TELEPHONE 383s /tmp/autopkgtest.9UAdYD/wrapper.sh: unsetting environment: LC_TIME 383s /tmp/autopkgtest.9UAdYD/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 383s /tmp/autopkgtest.9UAdYD/wrapper.sh: pretending to be a login shell 383s /tmp/autopkgtest.9UAdYD/wrapper.sh: will write standard error to /tmp/autopkgtest.9UAdYD/librust-search-provider-dev:tokio-stderr 383s /tmp/autopkgtest.9UAdYD/wrapper.sh: will write stdout to /tmp/autopkgtest.9UAdYD/librust-search-provider-dev:tokio-stdout 383s /tmp/autopkgtest.9UAdYD/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.9UAdYD/autopkgtest_tmp 383s /tmp/autopkgtest.9UAdYD/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 383s /tmp/autopkgtest.9UAdYD/wrapper.sh: command to run: bash -ec /usr/share/cargo/bin/cargo-auto-test search-provider 0.10.0 --all-targets --no-default-features --features tokio 383s /tmp/autopkgtest.9UAdYD/wrapper.sh: copying /tmp/tmp.Pq95vTZ7kF/out to stdout and file: /tmp/autopkgtest.9UAdYD/librust-search-provider-dev:tokio-stdout 383s /tmp/autopkgtest.9UAdYD/wrapper.sh: copying /tmp/tmp.Pq95vTZ7kF/err to standard error and file: /tmp/autopkgtest.9UAdYD/librust-search-provider-dev:tokio-stdout 383s /tmp/autopkgtest.9UAdYD/wrapper.sh: writing script pid 13489 to /tmp/autopkgtest_script_pid 383s debian cargo wrapper: options, profiles, parallel, lto: ['parallel=2'] [] ['-j2'] 0 383s debian cargo wrapper: rust_type, gnu_type: s390x-unknown-linux-gnu, s390x-linux-gnu 383s debian cargo wrapper: unsetting RUSTFLAGS and assuming it will be (or already was) added to $CARGO_HOME/config.toml 383s debian cargo wrapper: linking /usr/share/cargo/registry/* into /tmp/tmp.WgXbjyKfA6/registry/ 383s debian cargo wrapper: options, profiles, parallel, lto: ['parallel=2'] [] ['-j2'] 0 383s debian cargo wrapper: rust_type, gnu_type: s390x-unknown-linux-gnu, s390x-linux-gnu 383s debian cargo wrapper: unsetting RUSTFLAGS and assuming it will be (or already was) added to $CARGO_HOME/config.toml 383s 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', '--features', 'tokio'],) {} 383s Compiling proc-macro2 v1.0.92 383s Compiling unicode-ident v1.0.13 383s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.WgXbjyKfA6/registry/proc-macro2-1.0.92 CARGO_MANIFEST_PATH=/tmp/tmp.WgXbjyKfA6/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.WgXbjyKfA6/target/debug/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.WgXbjyKfA6/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.WgXbjyKfA6/target/debug/build/proc-macro2-3832f39696f3f5db -L dependency=/tmp/tmp.WgXbjyKfA6/target/debug/deps --cap-lints warn` 383s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=unicode_ident CARGO_MANIFEST_DIR=/tmp/tmp.WgXbjyKfA6/registry/unicode-ident-1.0.13 CARGO_MANIFEST_PATH=/tmp/tmp.WgXbjyKfA6/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.WgXbjyKfA6/target/debug/deps rustc --crate-name unicode_ident --edition=2018 /tmp/tmp.WgXbjyKfA6/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.WgXbjyKfA6/target/debug/deps -L dependency=/tmp/tmp.WgXbjyKfA6/target/debug/deps --cap-lints warn` 383s Compiling libc v0.2.169 383s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.WgXbjyKfA6/registry/libc-0.2.169 CARGO_MANIFEST_PATH=/tmp/tmp.WgXbjyKfA6/registry/libc-0.2.169/Cargo.toml CARGO_PKG_AUTHORS='The Rust Project Developers' CARGO_PKG_DESCRIPTION='Raw FFI bindings to platform libraries like libc. 383s ' CARGO_PKG_HOMEPAGE='https://github.com/rust-lang/libc' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=libc CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/libc' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=0.2.169 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=169 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.WgXbjyKfA6/target/debug/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.WgXbjyKfA6/registry/libc-0.2.169/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="extra_traits"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("align", "const-extern-fn", "default", "extra_traits", "rustc-dep-of-std", "rustc-std-workspace-core", "std", "use_std"))' -C metadata=dc781cb7c1ee5a21 -C extra-filename=-dc781cb7c1ee5a21 --out-dir /tmp/tmp.WgXbjyKfA6/target/debug/build/libc-dc781cb7c1ee5a21 -L dependency=/tmp/tmp.WgXbjyKfA6/target/debug/deps --cap-lints warn` 384s 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.WgXbjyKfA6/registry/proc-macro2-1.0.92 CARGO_MANIFEST_PATH=/tmp/tmp.WgXbjyKfA6/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.WgXbjyKfA6/target/debug/deps:/tmp/tmp.WgXbjyKfA6/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.WgXbjyKfA6/target/debug/build/proc-macro2-b8c68c67c59c8657/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.WgXbjyKfA6/target/debug/build/proc-macro2-3832f39696f3f5db/build-script-build` 384s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(fuzzing) 384s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(no_is_available) 384s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(no_literal_byte_character) 384s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(no_literal_c_string) 384s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(no_source_text) 384s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(proc_macro_span) 384s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(procmacro2_backtrace) 384s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(procmacro2_nightly_testing) 384s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(procmacro2_semver_exempt) 384s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(randomize_layout) 384s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(span_locations) 384s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(super_unstable) 384s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(wrap_proc_macro) 384s [proc-macro2 1.0.92] cargo:rerun-if-changed=build/probe.rs 384s [proc-macro2 1.0.92] cargo:rustc-cfg=wrap_proc_macro 384s [proc-macro2 1.0.92] cargo:rerun-if-env-changed=RUSTC_BOOTSTRAP 384s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=proc_macro2 CARGO_MANIFEST_DIR=/tmp/tmp.WgXbjyKfA6/registry/proc-macro2-1.0.92 CARGO_MANIFEST_PATH=/tmp/tmp.WgXbjyKfA6/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.WgXbjyKfA6/target/debug/deps OUT_DIR=/tmp/tmp.WgXbjyKfA6/target/debug/build/proc-macro2-b8c68c67c59c8657/out rustc --crate-name proc_macro2 --edition=2021 /tmp/tmp.WgXbjyKfA6/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.WgXbjyKfA6/target/debug/deps -L dependency=/tmp/tmp.WgXbjyKfA6/target/debug/deps --extern unicode_ident=/tmp/tmp.WgXbjyKfA6/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)'` 384s 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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0--remap-path-prefix/tmp/tmp.WgXbjyKfA6/registry=/usr/share/cargo/registry-Ctarget-feature=+backchain' CARGO_FEATURE_DEFAULT=1 CARGO_FEATURE_EXTRA_TRAITS=1 CARGO_FEATURE_STD=1 CARGO_MANIFEST_DIR=/tmp/tmp.WgXbjyKfA6/registry/libc-0.2.169 CARGO_MANIFEST_PATH=/tmp/tmp.WgXbjyKfA6/registry/libc-0.2.169/Cargo.toml CARGO_PKG_AUTHORS='The Rust Project Developers' CARGO_PKG_DESCRIPTION='Raw FFI bindings to platform libraries like libc. 384s ' CARGO_PKG_HOMEPAGE='https://github.com/rust-lang/libc' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=libc CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/libc' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=0.2.169 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=169 CARGO_PKG_VERSION_PRE='' DEBUG=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.WgXbjyKfA6/target/debug/deps:/tmp/tmp.WgXbjyKfA6/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/build/libc-bd02b9c7a9cce7ac/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.WgXbjyKfA6/target/debug/build/libc-dc781cb7c1ee5a21/build-script-build` 384s [libc 0.2.169] cargo:rerun-if-changed=build.rs 384s [libc 0.2.169] cargo:rerun-if-env-changed=RUST_LIBC_UNSTABLE_FREEBSD_VERSION 384s [libc 0.2.169] cargo:rustc-cfg=freebsd11 384s [libc 0.2.169] cargo:rustc-cfg=libc_const_extern_fn 384s [libc 0.2.169] cargo:rustc-check-cfg=cfg(emscripten_new_stat_abi) 384s [libc 0.2.169] cargo:rustc-check-cfg=cfg(espidf_time32) 384s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd10) 384s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd11) 384s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd12) 384s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd13) 384s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd14) 384s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd15) 384s [libc 0.2.169] cargo:rustc-check-cfg=cfg(gnu_time64_abi) 384s [libc 0.2.169] cargo:rustc-check-cfg=cfg(libc_const_extern_fn) 384s [libc 0.2.169] cargo:rustc-check-cfg=cfg(libc_deny_warnings) 384s [libc 0.2.169] cargo:rustc-check-cfg=cfg(libc_thread_local) 384s [libc 0.2.169] cargo:rustc-check-cfg=cfg(libc_ctest) 384s [libc 0.2.169] cargo:rustc-check-cfg=cfg(target_os,values("switch","aix","ohos","hurd","rtems","visionos","nuttx")) 384s [libc 0.2.169] cargo:rustc-check-cfg=cfg(target_env,values("illumos","wasi","aix","ohos")) 384s [libc 0.2.169] cargo:rustc-check-cfg=cfg(target_arch,values("loongarch64","mips32r6","mips64r6","csky")) 384s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=libc CARGO_MANIFEST_DIR=/tmp/tmp.WgXbjyKfA6/registry/libc-0.2.169 CARGO_MANIFEST_PATH=/tmp/tmp.WgXbjyKfA6/registry/libc-0.2.169/Cargo.toml CARGO_PKG_AUTHORS='The Rust Project Developers' CARGO_PKG_DESCRIPTION='Raw FFI bindings to platform libraries like libc. 384s ' CARGO_PKG_HOMEPAGE='https://github.com/rust-lang/libc' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=libc CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/libc' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=0.2.169 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=169 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.WgXbjyKfA6/target/debug/deps OUT_DIR=/tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/build/libc-bd02b9c7a9cce7ac/out rustc --crate-name libc --edition=2021 /tmp/tmp.WgXbjyKfA6/registry/libc-0.2.169/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="extra_traits"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("align", "const-extern-fn", "default", "extra_traits", "rustc-dep-of-std", "rustc-std-workspace-core", "std", "use_std"))' -C metadata=cf2521928ac070dc -C extra-filename=-cf2521928ac070dc --out-dir /tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.WgXbjyKfA6/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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.WgXbjyKfA6/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain --cfg freebsd11 --cfg libc_const_extern_fn --check-cfg 'cfg(emscripten_new_stat_abi)' --check-cfg 'cfg(espidf_time32)' --check-cfg 'cfg(freebsd10)' --check-cfg 'cfg(freebsd11)' --check-cfg 'cfg(freebsd12)' --check-cfg 'cfg(freebsd13)' --check-cfg 'cfg(freebsd14)' --check-cfg 'cfg(freebsd15)' --check-cfg 'cfg(gnu_time64_abi)' --check-cfg 'cfg(libc_const_extern_fn)' --check-cfg 'cfg(libc_deny_warnings)' --check-cfg 'cfg(libc_thread_local)' --check-cfg 'cfg(libc_ctest)' --check-cfg 'cfg(target_os,values("switch","aix","ohos","hurd","rtems","visionos","nuttx"))' --check-cfg 'cfg(target_env,values("illumos","wasi","aix","ohos"))' --check-cfg 'cfg(target_arch,values("loongarch64","mips32r6","mips64r6","csky"))'` 384s warning: unused import: `crate::ntptimeval` 384s --> /usr/share/cargo/registry/libc-0.2.169/src/unix/linux_like/linux/gnu/b64/mod.rs:5:5 384s | 384s 5 | use crate::ntptimeval; 384s | ^^^^^^^^^^^^^^^^^ 384s | 384s = note: `#[warn(unused_imports)]` on by default 384s 384s Compiling quote v1.0.37 384s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=quote CARGO_MANIFEST_DIR=/tmp/tmp.WgXbjyKfA6/registry/quote-1.0.37 CARGO_MANIFEST_PATH=/tmp/tmp.WgXbjyKfA6/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.WgXbjyKfA6/target/debug/deps rustc --crate-name quote --edition=2018 /tmp/tmp.WgXbjyKfA6/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.WgXbjyKfA6/target/debug/deps -L dependency=/tmp/tmp.WgXbjyKfA6/target/debug/deps --extern proc_macro2=/tmp/tmp.WgXbjyKfA6/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rmeta --cap-lints warn` 385s Compiling syn v2.0.96 385s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=syn CARGO_MANIFEST_DIR=/tmp/tmp.WgXbjyKfA6/registry/syn-2.0.96 CARGO_MANIFEST_PATH=/tmp/tmp.WgXbjyKfA6/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.WgXbjyKfA6/target/debug/deps rustc --crate-name syn --edition=2021 /tmp/tmp.WgXbjyKfA6/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="fold"' --cfg 'feature="full"' --cfg 'feature="parsing"' --cfg 'feature="printing"' --cfg 'feature="proc-macro"' --cfg 'feature="visit-mut"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("clone-impls", "default", "derive", "extra-traits", "fold", "full", "parsing", "printing", "proc-macro", "visit", "visit-mut"))' -C metadata=0167beed9e699402 -C extra-filename=-0167beed9e699402 --out-dir /tmp/tmp.WgXbjyKfA6/target/debug/deps -L dependency=/tmp/tmp.WgXbjyKfA6/target/debug/deps --extern proc_macro2=/tmp/tmp.WgXbjyKfA6/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rmeta --extern quote=/tmp/tmp.WgXbjyKfA6/target/debug/deps/libquote-dc92c6f25ee0f0c6.rmeta --extern unicode_ident=/tmp/tmp.WgXbjyKfA6/target/debug/deps/libunicode_ident-5d182fe9243248fe.rmeta --cap-lints warn` 385s warning: unstable feature specified for `-Ctarget-feature`: `backchain` 385s | 385s = note: this feature is not stably supported; its behavior can change in the future 385s 385s warning: `libc` (lib) generated 2 warnings 385s Compiling autocfg v1.1.0 385s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=autocfg CARGO_MANIFEST_DIR=/tmp/tmp.WgXbjyKfA6/registry/autocfg-1.1.0 CARGO_MANIFEST_PATH=/tmp/tmp.WgXbjyKfA6/registry/autocfg-1.1.0/Cargo.toml CARGO_PKG_AUTHORS='Josh Stone ' CARGO_PKG_DESCRIPTION='Automatic cfg for Rust compiler features' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=autocfg CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/cuviper/autocfg' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=1.1.0 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.WgXbjyKfA6/target/debug/deps rustc --crate-name autocfg --edition=2015 /tmp/tmp.WgXbjyKfA6/registry/autocfg-1.1.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=9ebcd9511383083c -C extra-filename=-9ebcd9511383083c --out-dir /tmp/tmp.WgXbjyKfA6/target/debug/deps -L dependency=/tmp/tmp.WgXbjyKfA6/target/debug/deps --cap-lints warn` 385s Compiling hashbrown v0.14.5 385s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=hashbrown CARGO_MANIFEST_DIR=/tmp/tmp.WgXbjyKfA6/registry/hashbrown-0.14.5 CARGO_MANIFEST_PATH=/tmp/tmp.WgXbjyKfA6/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.WgXbjyKfA6/target/debug/deps rustc --crate-name hashbrown --edition=2021 /tmp/tmp.WgXbjyKfA6/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.WgXbjyKfA6/target/debug/deps -L dependency=/tmp/tmp.WgXbjyKfA6/target/debug/deps --cap-lints warn` 385s warning: unexpected `cfg` condition value: `nightly` 385s --> /tmp/tmp.WgXbjyKfA6/registry/hashbrown-0.14.5/src/lib.rs:14:5 385s | 385s 14 | feature = "nightly", 385s | ^^^^^^^^^^^^^^^^^^^ 385s | 385s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 385s = help: consider adding `nightly` as a feature in `Cargo.toml` 385s = note: see for more information about checking conditional configuration 385s = note: `#[warn(unexpected_cfgs)]` on by default 385s 385s warning: unexpected `cfg` condition value: `nightly` 385s --> /tmp/tmp.WgXbjyKfA6/registry/hashbrown-0.14.5/src/lib.rs:39:13 385s | 385s 39 | #![cfg_attr(feature = "nightly", warn(fuzzy_provenance_casts))] 385s | ^^^^^^^^^^^^^^^^^^^ 385s | 385s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 385s = help: consider adding `nightly` as a feature in `Cargo.toml` 385s = note: see for more information about checking conditional configuration 385s 385s warning: unexpected `cfg` condition value: `nightly` 385s --> /tmp/tmp.WgXbjyKfA6/registry/hashbrown-0.14.5/src/lib.rs:40:13 385s | 385s 40 | #![cfg_attr(feature = "nightly", allow(internal_features))] 385s | ^^^^^^^^^^^^^^^^^^^ 385s | 385s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 385s = help: consider adding `nightly` as a feature in `Cargo.toml` 385s = note: see for more information about checking conditional configuration 385s 385s warning: unexpected `cfg` condition value: `nightly` 385s --> /tmp/tmp.WgXbjyKfA6/registry/hashbrown-0.14.5/src/lib.rs:49:7 385s | 385s 49 | #[cfg(feature = "nightly")] 385s | ^^^^^^^^^^^^^^^^^^^ 385s | 385s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 385s = help: consider adding `nightly` as a feature in `Cargo.toml` 385s = note: see for more information about checking conditional configuration 385s 385s warning: unexpected `cfg` condition value: `nightly` 385s --> /tmp/tmp.WgXbjyKfA6/registry/hashbrown-0.14.5/src/macros.rs:59:7 385s | 385s 59 | #[cfg(feature = "nightly")] 385s | ^^^^^^^^^^^^^^^^^^^ 385s | 385s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 385s = help: consider adding `nightly` as a feature in `Cargo.toml` 385s = note: see for more information about checking conditional configuration 385s 385s warning: unexpected `cfg` condition value: `nightly` 385s --> /tmp/tmp.WgXbjyKfA6/registry/hashbrown-0.14.5/src/macros.rs:65:11 385s | 385s 65 | #[cfg(not(feature = "nightly"))] 385s | ^^^^^^^^^^^^^^^^^^^ 385s | 385s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 385s = help: consider adding `nightly` as a feature in `Cargo.toml` 385s = note: see for more information about checking conditional configuration 385s 385s warning: unexpected `cfg` condition value: `nightly` 385s --> /tmp/tmp.WgXbjyKfA6/registry/hashbrown-0.14.5/src/raw/mod.rs:53:11 385s | 385s 53 | #[cfg(not(feature = "nightly"))] 385s | ^^^^^^^^^^^^^^^^^^^ 385s | 385s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 385s = help: consider adding `nightly` as a feature in `Cargo.toml` 385s = note: see for more information about checking conditional configuration 385s 385s warning: unexpected `cfg` condition value: `nightly` 385s --> /tmp/tmp.WgXbjyKfA6/registry/hashbrown-0.14.5/src/raw/mod.rs:55:11 385s | 385s 55 | #[cfg(not(feature = "nightly"))] 385s | ^^^^^^^^^^^^^^^^^^^ 385s | 385s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 385s = help: consider adding `nightly` as a feature in `Cargo.toml` 385s = note: see for more information about checking conditional configuration 385s 385s warning: unexpected `cfg` condition value: `nightly` 385s --> /tmp/tmp.WgXbjyKfA6/registry/hashbrown-0.14.5/src/raw/mod.rs:57:7 385s | 385s 57 | #[cfg(feature = "nightly")] 385s | ^^^^^^^^^^^^^^^^^^^ 385s | 385s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 385s = help: consider adding `nightly` as a feature in `Cargo.toml` 385s = note: see for more information about checking conditional configuration 385s 385s warning: unexpected `cfg` condition value: `nightly` 385s --> /tmp/tmp.WgXbjyKfA6/registry/hashbrown-0.14.5/src/raw/mod.rs:3549:7 385s | 385s 3549 | #[cfg(feature = "nightly")] 385s | ^^^^^^^^^^^^^^^^^^^ 385s | 385s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 385s = help: consider adding `nightly` as a feature in `Cargo.toml` 385s = note: see for more information about checking conditional configuration 385s 385s warning: unexpected `cfg` condition value: `nightly` 385s --> /tmp/tmp.WgXbjyKfA6/registry/hashbrown-0.14.5/src/raw/mod.rs:3661:7 385s | 385s 3661 | #[cfg(feature = "nightly")] 385s | ^^^^^^^^^^^^^^^^^^^ 385s | 385s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 385s = help: consider adding `nightly` as a feature in `Cargo.toml` 385s = note: see for more information about checking conditional configuration 385s 385s warning: unexpected `cfg` condition value: `nightly` 385s --> /tmp/tmp.WgXbjyKfA6/registry/hashbrown-0.14.5/src/raw/mod.rs:3678:11 385s | 385s 3678 | #[cfg(not(feature = "nightly"))] 385s | ^^^^^^^^^^^^^^^^^^^ 385s | 385s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 385s = help: consider adding `nightly` as a feature in `Cargo.toml` 385s = note: see for more information about checking conditional configuration 385s 385s warning: unexpected `cfg` condition value: `nightly` 385s --> /tmp/tmp.WgXbjyKfA6/registry/hashbrown-0.14.5/src/raw/mod.rs:4304:7 385s | 385s 4304 | #[cfg(feature = "nightly")] 385s | ^^^^^^^^^^^^^^^^^^^ 385s | 385s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 385s = help: consider adding `nightly` as a feature in `Cargo.toml` 385s = note: see for more information about checking conditional configuration 385s 385s warning: unexpected `cfg` condition value: `nightly` 385s --> /tmp/tmp.WgXbjyKfA6/registry/hashbrown-0.14.5/src/raw/mod.rs:4319:11 385s | 385s 4319 | #[cfg(not(feature = "nightly"))] 385s | ^^^^^^^^^^^^^^^^^^^ 385s | 385s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 385s = help: consider adding `nightly` as a feature in `Cargo.toml` 385s = note: see for more information about checking conditional configuration 385s 385s warning: unexpected `cfg` condition value: `nightly` 385s --> /tmp/tmp.WgXbjyKfA6/registry/hashbrown-0.14.5/src/raw/alloc.rs:7:7 385s | 385s 7 | #[cfg(feature = "nightly")] 385s | ^^^^^^^^^^^^^^^^^^^ 385s | 385s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 385s = help: consider adding `nightly` as a feature in `Cargo.toml` 385s = note: see for more information about checking conditional configuration 385s 385s warning: unexpected `cfg` condition value: `nightly` 385s --> /tmp/tmp.WgXbjyKfA6/registry/hashbrown-0.14.5/src/raw/alloc.rs:28:15 385s | 385s 28 | #[cfg(all(not(feature = "nightly"), feature = "allocator-api2"))] 385s | ^^^^^^^^^^^^^^^^^^^ 385s | 385s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 385s = help: consider adding `nightly` as a feature in `Cargo.toml` 385s = note: see for more information about checking conditional configuration 385s 385s warning: unexpected `cfg` condition value: `nightly` 385s --> /tmp/tmp.WgXbjyKfA6/registry/hashbrown-0.14.5/src/raw/alloc.rs:51:15 385s | 385s 51 | #[cfg(not(any(feature = "nightly", feature = "allocator-api2")))] 385s | ^^^^^^^^^^^^^^^^^^^ 385s | 385s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 385s = help: consider adding `nightly` as a feature in `Cargo.toml` 385s = note: see for more information about checking conditional configuration 385s 385s warning: unexpected `cfg` condition value: `nightly` 385s --> /tmp/tmp.WgXbjyKfA6/registry/hashbrown-0.14.5/src/raw/mod.rs:944:32 385s | 385s 944 | #[cfg(any(feature = "raw", feature = "nightly"))] 385s | ^^^^^^^^^^^^^^^^^^^ 385s | 385s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 385s = help: consider adding `nightly` as a feature in `Cargo.toml` 385s = note: see for more information about checking conditional configuration 385s 385s warning: unexpected `cfg` condition value: `rkyv` 385s --> /tmp/tmp.WgXbjyKfA6/registry/hashbrown-0.14.5/src/external_trait_impls/mod.rs:3:7 385s | 385s 3 | #[cfg(feature = "rkyv")] 385s | ^^^^^^^^^^^^^^^^ 385s | 385s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 385s = help: consider adding `rkyv` as a feature in `Cargo.toml` 385s = note: see for more information about checking conditional configuration 385s 385s warning: unexpected `cfg` condition value: `nightly` 385s --> /tmp/tmp.WgXbjyKfA6/registry/hashbrown-0.14.5/src/map.rs:242:11 385s | 385s 242 | #[cfg(not(feature = "nightly"))] 385s | ^^^^^^^^^^^^^^^^^^^ 385s | 385s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 385s = help: consider adding `nightly` as a feature in `Cargo.toml` 385s = note: see for more information about checking conditional configuration 385s 385s warning: unexpected `cfg` condition value: `nightly` 385s --> /tmp/tmp.WgXbjyKfA6/registry/hashbrown-0.14.5/src/map.rs:255:7 385s | 385s 255 | #[cfg(feature = "nightly")] 385s | ^^^^^^^^^^^^^^^^^^^ 385s | 385s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 385s = help: consider adding `nightly` as a feature in `Cargo.toml` 385s = note: see for more information about checking conditional configuration 385s 385s warning: unexpected `cfg` condition value: `nightly` 385s --> /tmp/tmp.WgXbjyKfA6/registry/hashbrown-0.14.5/src/map.rs:6517:11 385s | 385s 6517 | #[cfg(feature = "nightly")] 385s | ^^^^^^^^^^^^^^^^^^^ 385s | 385s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 385s = help: consider adding `nightly` as a feature in `Cargo.toml` 385s = note: see for more information about checking conditional configuration 385s 385s warning: unexpected `cfg` condition value: `nightly` 385s --> /tmp/tmp.WgXbjyKfA6/registry/hashbrown-0.14.5/src/map.rs:6523:11 385s | 385s 6523 | #[cfg(feature = "nightly")] 385s | ^^^^^^^^^^^^^^^^^^^ 385s | 385s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 385s = help: consider adding `nightly` as a feature in `Cargo.toml` 385s = note: see for more information about checking conditional configuration 385s 385s warning: unexpected `cfg` condition value: `nightly` 385s --> /tmp/tmp.WgXbjyKfA6/registry/hashbrown-0.14.5/src/map.rs:6591:11 385s | 385s 6591 | #[cfg(feature = "nightly")] 385s | ^^^^^^^^^^^^^^^^^^^ 385s | 385s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 385s = help: consider adding `nightly` as a feature in `Cargo.toml` 385s = note: see for more information about checking conditional configuration 385s 385s warning: unexpected `cfg` condition value: `nightly` 385s --> /tmp/tmp.WgXbjyKfA6/registry/hashbrown-0.14.5/src/map.rs:6597:11 385s | 385s 6597 | #[cfg(feature = "nightly")] 385s | ^^^^^^^^^^^^^^^^^^^ 385s | 385s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 385s = help: consider adding `nightly` as a feature in `Cargo.toml` 385s = note: see for more information about checking conditional configuration 385s 385s warning: unexpected `cfg` condition value: `nightly` 385s --> /tmp/tmp.WgXbjyKfA6/registry/hashbrown-0.14.5/src/map.rs:6651:11 385s | 385s 6651 | #[cfg(feature = "nightly")] 385s | ^^^^^^^^^^^^^^^^^^^ 385s | 385s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 385s = help: consider adding `nightly` as a feature in `Cargo.toml` 385s = note: see for more information about checking conditional configuration 385s 385s warning: unexpected `cfg` condition value: `nightly` 385s --> /tmp/tmp.WgXbjyKfA6/registry/hashbrown-0.14.5/src/map.rs:6657:11 385s | 385s 6657 | #[cfg(feature = "nightly")] 385s | ^^^^^^^^^^^^^^^^^^^ 385s | 385s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 385s = help: consider adding `nightly` as a feature in `Cargo.toml` 385s = note: see for more information about checking conditional configuration 385s 385s warning: unexpected `cfg` condition value: `nightly` 385s --> /tmp/tmp.WgXbjyKfA6/registry/hashbrown-0.14.5/src/set.rs:1359:11 385s | 385s 1359 | #[cfg(feature = "nightly")] 385s | ^^^^^^^^^^^^^^^^^^^ 385s | 385s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 385s = help: consider adding `nightly` as a feature in `Cargo.toml` 385s = note: see for more information about checking conditional configuration 385s 385s warning: unexpected `cfg` condition value: `nightly` 385s --> /tmp/tmp.WgXbjyKfA6/registry/hashbrown-0.14.5/src/set.rs:1365:11 385s | 385s 1365 | #[cfg(feature = "nightly")] 385s | ^^^^^^^^^^^^^^^^^^^ 385s | 385s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 385s = help: consider adding `nightly` as a feature in `Cargo.toml` 385s = note: see for more information about checking conditional configuration 385s 385s warning: unexpected `cfg` condition value: `nightly` 385s --> /tmp/tmp.WgXbjyKfA6/registry/hashbrown-0.14.5/src/set.rs:1383:11 385s | 385s 1383 | #[cfg(feature = "nightly")] 385s | ^^^^^^^^^^^^^^^^^^^ 385s | 385s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 385s = help: consider adding `nightly` as a feature in `Cargo.toml` 385s = note: see for more information about checking conditional configuration 385s 385s warning: unexpected `cfg` condition value: `nightly` 385s --> /tmp/tmp.WgXbjyKfA6/registry/hashbrown-0.14.5/src/set.rs:1389:11 385s | 385s 1389 | #[cfg(feature = "nightly")] 385s | ^^^^^^^^^^^^^^^^^^^ 385s | 385s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 385s = help: consider adding `nightly` as a feature in `Cargo.toml` 385s = note: see for more information about checking conditional configuration 385s 386s warning: `hashbrown` (lib) generated 31 warnings 386s Compiling version_check v0.9.5 386s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=version_check CARGO_MANIFEST_DIR=/tmp/tmp.WgXbjyKfA6/registry/version_check-0.9.5 CARGO_MANIFEST_PATH=/tmp/tmp.WgXbjyKfA6/registry/version_check-0.9.5/Cargo.toml CARGO_PKG_AUTHORS='Sergio Benitez ' CARGO_PKG_DESCRIPTION='Tiny crate to check the version of the installed/running rustc.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=version_check CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/SergioBenitez/version_check' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.9.5 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=9 CARGO_PKG_VERSION_PATCH=5 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.WgXbjyKfA6/target/debug/deps rustc --crate-name version_check --edition=2015 /tmp/tmp.WgXbjyKfA6/registry/version_check-0.9.5/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=20e83cdf64ec3211 -C extra-filename=-20e83cdf64ec3211 --out-dir /tmp/tmp.WgXbjyKfA6/target/debug/deps -L dependency=/tmp/tmp.WgXbjyKfA6/target/debug/deps --cap-lints warn` 386s Compiling typenum v1.17.0 386s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_main CARGO_MANIFEST_DIR=/tmp/tmp.WgXbjyKfA6/registry/typenum-1.17.0 CARGO_MANIFEST_PATH=/tmp/tmp.WgXbjyKfA6/registry/typenum-1.17.0/Cargo.toml CARGO_PKG_AUTHORS='Paho Lurie-Gregg :Andre Bogus ' CARGO_PKG_DESCRIPTION='Typenum is a Rust library for type-level numbers evaluated at 386s compile time. It currently supports bits, unsigned integers, and signed 386s integers. It also provides a type-level array of type-level numbers, but its 386s implementation is incomplete.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=typenum CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/paholg/typenum' CARGO_PKG_RUST_VERSION=1.37.0 CARGO_PKG_VERSION=1.17.0 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=17 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.WgXbjyKfA6/target/debug/deps rustc --crate-name build_script_main --edition=2018 /tmp/tmp.WgXbjyKfA6/registry/typenum-1.17.0/build/main.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("const-generics", "force_unix_path_separator", "i128", "no_std", "strict"))' -C metadata=ef2812a6bded5202 -C extra-filename=-ef2812a6bded5202 --out-dir /tmp/tmp.WgXbjyKfA6/target/debug/build/typenum-ef2812a6bded5202 -L dependency=/tmp/tmp.WgXbjyKfA6/target/debug/deps --cap-lints warn` 387s Compiling equivalent v1.0.1 387s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=equivalent CARGO_MANIFEST_DIR=/tmp/tmp.WgXbjyKfA6/registry/equivalent-1.0.1 CARGO_MANIFEST_PATH=/tmp/tmp.WgXbjyKfA6/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.WgXbjyKfA6/target/debug/deps rustc --crate-name equivalent --edition=2015 /tmp/tmp.WgXbjyKfA6/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.WgXbjyKfA6/target/debug/deps -L dependency=/tmp/tmp.WgXbjyKfA6/target/debug/deps --cap-lints warn` 387s Compiling pin-project-lite v0.2.13 387s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=pin_project_lite CARGO_MANIFEST_DIR=/tmp/tmp.WgXbjyKfA6/registry/pin-project-lite-0.2.13 CARGO_MANIFEST_PATH=/tmp/tmp.WgXbjyKfA6/registry/pin-project-lite-0.2.13/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='A lightweight version of pin-project written with declarative macros. 387s ' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=pin-project-lite CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/taiki-e/pin-project-lite' CARGO_PKG_RUST_VERSION=1.37 CARGO_PKG_VERSION=0.2.13 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=13 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.WgXbjyKfA6/target/debug/deps rustc --crate-name pin_project_lite --edition=2018 /tmp/tmp.WgXbjyKfA6/registry/pin-project-lite-0.2.13/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=5dc815523e98d889 -C extra-filename=-5dc815523e98d889 --out-dir /tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.WgXbjyKfA6/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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.WgXbjyKfA6/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 387s warning: `pin-project-lite` (lib) generated 1 warning (1 duplicate) 387s Compiling indexmap v2.7.0 387s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=indexmap CARGO_MANIFEST_DIR=/tmp/tmp.WgXbjyKfA6/registry/indexmap-2.7.0 CARGO_MANIFEST_PATH=/tmp/tmp.WgXbjyKfA6/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.WgXbjyKfA6/target/debug/deps rustc --crate-name indexmap --edition=2021 /tmp/tmp.WgXbjyKfA6/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.WgXbjyKfA6/target/debug/deps -L dependency=/tmp/tmp.WgXbjyKfA6/target/debug/deps --extern equivalent=/tmp/tmp.WgXbjyKfA6/target/debug/deps/libequivalent-a11b0a19a3bf2c19.rmeta --extern hashbrown=/tmp/tmp.WgXbjyKfA6/target/debug/deps/libhashbrown-e14e27c8ff208110.rmeta --cap-lints warn` 387s warning: unexpected `cfg` condition value: `borsh` 387s --> /tmp/tmp.WgXbjyKfA6/registry/indexmap-2.7.0/src/lib.rs:117:7 387s | 387s 117 | #[cfg(feature = "borsh")] 387s | ^^^^^^^^^^^^^^^^^ 387s | 387s = note: expected values for `feature` are: `arbitrary`, `default`, `rayon`, `serde`, `std`, and `test_debug` 387s = help: consider adding `borsh` as a feature in `Cargo.toml` 387s = note: see for more information about checking conditional configuration 387s = note: `#[warn(unexpected_cfgs)]` on by default 387s 387s warning: unexpected `cfg` condition value: `rustc-rayon` 387s --> /tmp/tmp.WgXbjyKfA6/registry/indexmap-2.7.0/src/lib.rs:131:7 387s | 387s 131 | #[cfg(feature = "rustc-rayon")] 387s | ^^^^^^^^^^^^^^^^^^^^^^^ 387s | 387s = note: expected values for `feature` are: `arbitrary`, `default`, `rayon`, `serde`, `std`, and `test_debug` 387s = help: consider adding `rustc-rayon` as a feature in `Cargo.toml` 387s = note: see for more information about checking conditional configuration 387s 387s warning: unexpected `cfg` condition value: `quickcheck` 387s --> /tmp/tmp.WgXbjyKfA6/registry/indexmap-2.7.0/src/arbitrary.rs:38:7 387s | 387s 38 | #[cfg(feature = "quickcheck")] 387s | ^^^^^^^^^^^^^^^^^^^^^^ 387s | 387s = note: expected values for `feature` are: `arbitrary`, `default`, `rayon`, `serde`, `std`, and `test_debug` 387s = help: consider adding `quickcheck` as a feature in `Cargo.toml` 387s = note: see for more information about checking conditional configuration 387s 387s warning: unexpected `cfg` condition value: `rustc-rayon` 387s --> /tmp/tmp.WgXbjyKfA6/registry/indexmap-2.7.0/src/macros.rs:128:30 387s | 387s 128 | #[cfg(any(feature = "rayon", feature = "rustc-rayon"))] 387s | ^^^^^^^^^^^^^^^^^^^^^^^ 387s | 387s = note: expected values for `feature` are: `arbitrary`, `default`, `rayon`, `serde`, `std`, and `test_debug` 387s = help: consider adding `rustc-rayon` as a feature in `Cargo.toml` 387s = note: see for more information about checking conditional configuration 387s 387s warning: unexpected `cfg` condition value: `rustc-rayon` 387s --> /tmp/tmp.WgXbjyKfA6/registry/indexmap-2.7.0/src/macros.rs:153:30 387s | 387s 153 | #[cfg(any(feature = "rayon", feature = "rustc-rayon"))] 387s | ^^^^^^^^^^^^^^^^^^^^^^^ 387s | 387s = note: expected values for `feature` are: `arbitrary`, `default`, `rayon`, `serde`, `std`, and `test_debug` 387s = help: consider adding `rustc-rayon` as a feature in `Cargo.toml` 387s = note: see for more information about checking conditional configuration 387s 387s warning: `indexmap` (lib) generated 5 warnings 387s 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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0--remap-path-prefix/tmp/tmp.WgXbjyKfA6/registry=/usr/share/cargo/registry-Ctarget-feature=+backchain' CARGO_MANIFEST_DIR=/tmp/tmp.WgXbjyKfA6/registry/typenum-1.17.0 CARGO_MANIFEST_PATH=/tmp/tmp.WgXbjyKfA6/registry/typenum-1.17.0/Cargo.toml CARGO_PKG_AUTHORS='Paho Lurie-Gregg :Andre Bogus ' CARGO_PKG_DESCRIPTION='Typenum is a Rust library for type-level numbers evaluated at 387s compile time. It currently supports bits, unsigned integers, and signed 387s integers. It also provides a type-level array of type-level numbers, but its 387s implementation is incomplete.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=typenum CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/paholg/typenum' CARGO_PKG_RUST_VERSION=1.37.0 CARGO_PKG_VERSION=1.17.0 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=17 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' DEBUG=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.WgXbjyKfA6/target/debug/deps:/tmp/tmp.WgXbjyKfA6/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/build/typenum-b1daa52c37018028/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.WgXbjyKfA6/target/debug/build/typenum-ef2812a6bded5202/build-script-main` 387s [typenum 1.17.0] cargo:rerun-if-changed=build/main.rs 387s Compiling generic-array v0.14.7 387s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.WgXbjyKfA6/registry/generic-array-0.14.7 CARGO_MANIFEST_PATH=/tmp/tmp.WgXbjyKfA6/registry/generic-array-0.14.7/Cargo.toml CARGO_PKG_AUTHORS='Bartłomiej Kamiński :Aaron Trent ' CARGO_PKG_DESCRIPTION='Generic types implementing functionality of arrays' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=generic-array CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/fizyk20/generic-array.git' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.14.7 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=14 CARGO_PKG_VERSION_PATCH=7 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.WgXbjyKfA6/target/debug/deps rustc --crate-name build_script_build --edition=2015 /tmp/tmp.WgXbjyKfA6/registry/generic-array-0.14.7/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="more_lengths"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("more_lengths", "serde", "zeroize"))' -C metadata=160edb9b35222b14 -C extra-filename=-160edb9b35222b14 --out-dir /tmp/tmp.WgXbjyKfA6/target/debug/build/generic-array-160edb9b35222b14 -L dependency=/tmp/tmp.WgXbjyKfA6/target/debug/deps --extern version_check=/tmp/tmp.WgXbjyKfA6/target/debug/deps/libversion_check-20e83cdf64ec3211.rlib --cap-lints warn` 387s Compiling cfg-if v1.0.0 387s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=cfg_if CARGO_MANIFEST_DIR=/tmp/tmp.WgXbjyKfA6/registry/cfg-if-1.0.0 CARGO_MANIFEST_PATH=/tmp/tmp.WgXbjyKfA6/registry/cfg-if-1.0.0/Cargo.toml CARGO_PKG_AUTHORS='Alex Crichton ' CARGO_PKG_DESCRIPTION='A macro to ergonomically define an item depending on a large number of #[cfg] 387s parameters. Structured like an if-else chain, the first matching branch is the 387s item that gets emitted. 387s ' CARGO_PKG_HOMEPAGE='https://github.com/alexcrichton/cfg-if' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=cfg-if CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/alexcrichton/cfg-if' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=1.0.0 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.WgXbjyKfA6/target/debug/deps rustc --crate-name cfg_if --edition=2018 /tmp/tmp.WgXbjyKfA6/registry/cfg-if-1.0.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("core"))' -C metadata=ff3ff84a061de73f -C extra-filename=-ff3ff84a061de73f --out-dir /tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.WgXbjyKfA6/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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.WgXbjyKfA6/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 387s warning: `cfg-if` (lib) generated 1 warning (1 duplicate) 387s Compiling winnow v0.6.18 387s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=winnow CARGO_MANIFEST_DIR=/tmp/tmp.WgXbjyKfA6/registry/winnow-0.6.18 CARGO_MANIFEST_PATH=/tmp/tmp.WgXbjyKfA6/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.WgXbjyKfA6/target/debug/deps rustc --crate-name winnow --edition=2021 /tmp/tmp.WgXbjyKfA6/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.WgXbjyKfA6/target/debug/deps -L dependency=/tmp/tmp.WgXbjyKfA6/target/debug/deps --cap-lints warn` 388s warning: unexpected `cfg` condition value: `debug` 388s --> /tmp/tmp.WgXbjyKfA6/registry/winnow-0.6.18/src/combinator/debug/mod.rs:1:13 388s | 388s 1 | #![cfg_attr(feature = "debug", allow(clippy::std_instead_of_core))] 388s | ^^^^^^^^^^^^^^^^^ 388s | 388s = note: expected values for `feature` are: `alloc`, `default`, `simd`, `std`, `unstable-doc`, and `unstable-recover` 388s = help: consider adding `debug` as a feature in `Cargo.toml` 388s = note: see for more information about checking conditional configuration 388s = note: `#[warn(unexpected_cfgs)]` on by default 388s 388s warning: unexpected `cfg` condition value: `debug` 388s --> /tmp/tmp.WgXbjyKfA6/registry/winnow-0.6.18/src/combinator/debug/mod.rs:3:7 388s | 388s 3 | #[cfg(feature = "debug")] 388s | ^^^^^^^^^^^^^^^^^ 388s | 388s = note: expected values for `feature` are: `alloc`, `default`, `simd`, `std`, `unstable-doc`, and `unstable-recover` 388s = help: consider adding `debug` as a feature in `Cargo.toml` 388s = note: see for more information about checking conditional configuration 388s 388s warning: unexpected `cfg` condition value: `debug` 388s --> /tmp/tmp.WgXbjyKfA6/registry/winnow-0.6.18/src/combinator/debug/mod.rs:37:16 388s | 388s 37 | #[cfg_attr(not(feature = "debug"), allow(unused_variables))] 388s | ^^^^^^^^^^^^^^^^^ 388s | 388s = note: expected values for `feature` are: `alloc`, `default`, `simd`, `std`, `unstable-doc`, and `unstable-recover` 388s = help: consider adding `debug` as a feature in `Cargo.toml` 388s = note: see for more information about checking conditional configuration 388s 388s warning: unexpected `cfg` condition value: `debug` 388s --> /tmp/tmp.WgXbjyKfA6/registry/winnow-0.6.18/src/combinator/debug/mod.rs:38:16 388s | 388s 38 | #[cfg_attr(not(feature = "debug"), allow(unused_mut))] 388s | ^^^^^^^^^^^^^^^^^ 388s | 388s = note: expected values for `feature` are: `alloc`, `default`, `simd`, `std`, `unstable-doc`, and `unstable-recover` 388s = help: consider adding `debug` as a feature in `Cargo.toml` 388s = note: see for more information about checking conditional configuration 388s 388s warning: unexpected `cfg` condition value: `debug` 388s --> /tmp/tmp.WgXbjyKfA6/registry/winnow-0.6.18/src/combinator/debug/mod.rs:39:16 388s | 388s 39 | #[cfg_attr(not(feature = "debug"), inline(always))] 388s | ^^^^^^^^^^^^^^^^^ 388s | 388s = note: expected values for `feature` are: `alloc`, `default`, `simd`, `std`, `unstable-doc`, and `unstable-recover` 388s = help: consider adding `debug` as a feature in `Cargo.toml` 388s = note: see for more information about checking conditional configuration 388s 388s warning: unexpected `cfg` condition value: `debug` 388s --> /tmp/tmp.WgXbjyKfA6/registry/winnow-0.6.18/src/combinator/debug/mod.rs:54:16 388s | 388s 54 | #[cfg_attr(not(feature = "debug"), allow(unused_variables))] 388s | ^^^^^^^^^^^^^^^^^ 388s | 388s = note: expected values for `feature` are: `alloc`, `default`, `simd`, `std`, `unstable-doc`, and `unstable-recover` 388s = help: consider adding `debug` as a feature in `Cargo.toml` 388s = note: see for more information about checking conditional configuration 388s 388s warning: unexpected `cfg` condition value: `debug` 388s --> /tmp/tmp.WgXbjyKfA6/registry/winnow-0.6.18/src/combinator/debug/mod.rs:79:7 388s | 388s 79 | #[cfg(feature = "debug")] 388s | ^^^^^^^^^^^^^^^^^ 388s | 388s = note: expected values for `feature` are: `alloc`, `default`, `simd`, `std`, `unstable-doc`, and `unstable-recover` 388s = help: consider adding `debug` as a feature in `Cargo.toml` 388s = note: see for more information about checking conditional configuration 388s 388s warning: unexpected `cfg` condition value: `debug` 388s --> /tmp/tmp.WgXbjyKfA6/registry/winnow-0.6.18/src/combinator/debug/mod.rs:44:11 388s | 388s 44 | #[cfg(feature = "debug")] 388s | ^^^^^^^^^^^^^^^^^ 388s | 388s = note: expected values for `feature` are: `alloc`, `default`, `simd`, `std`, `unstable-doc`, and `unstable-recover` 388s = help: consider adding `debug` as a feature in `Cargo.toml` 388s = note: see for more information about checking conditional configuration 388s 388s warning: unexpected `cfg` condition value: `debug` 388s --> /tmp/tmp.WgXbjyKfA6/registry/winnow-0.6.18/src/combinator/debug/mod.rs:48:15 388s | 388s 48 | #[cfg(not(feature = "debug"))] 388s | ^^^^^^^^^^^^^^^^^ 388s | 388s = note: expected values for `feature` are: `alloc`, `default`, `simd`, `std`, `unstable-doc`, and `unstable-recover` 388s = help: consider adding `debug` as a feature in `Cargo.toml` 388s = note: see for more information about checking conditional configuration 388s 388s warning: unexpected `cfg` condition value: `debug` 388s --> /tmp/tmp.WgXbjyKfA6/registry/winnow-0.6.18/src/combinator/debug/mod.rs:59:11 388s | 388s 59 | #[cfg(feature = "debug")] 388s | ^^^^^^^^^^^^^^^^^ 388s | 388s = note: expected values for `feature` are: `alloc`, `default`, `simd`, `std`, `unstable-doc`, and `unstable-recover` 388s = help: consider adding `debug` as a feature in `Cargo.toml` 388s = note: see for more information about checking conditional configuration 388s 389s warning: `winnow` (lib) generated 10 warnings 389s Compiling toml_datetime v0.6.8 389s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=toml_datetime CARGO_MANIFEST_DIR=/tmp/tmp.WgXbjyKfA6/registry/toml_datetime-0.6.8 CARGO_MANIFEST_PATH=/tmp/tmp.WgXbjyKfA6/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.WgXbjyKfA6/target/debug/deps rustc --crate-name toml_datetime --edition=2021 /tmp/tmp.WgXbjyKfA6/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.WgXbjyKfA6/target/debug/deps -L dependency=/tmp/tmp.WgXbjyKfA6/target/debug/deps --cap-lints warn` 389s Compiling crossbeam-utils v0.8.19 389s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.WgXbjyKfA6/registry/crossbeam-utils-0.8.19 CARGO_MANIFEST_PATH=/tmp/tmp.WgXbjyKfA6/registry/crossbeam-utils-0.8.19/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='Utilities for concurrent programming' CARGO_PKG_HOMEPAGE='https://github.com/crossbeam-rs/crossbeam/tree/master/crossbeam-utils' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=crossbeam-utils CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/crossbeam-rs/crossbeam' CARGO_PKG_RUST_VERSION=1.60 CARGO_PKG_VERSION=0.8.19 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=8 CARGO_PKG_VERSION_PATCH=19 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.WgXbjyKfA6/target/debug/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.WgXbjyKfA6/registry/crossbeam-utils-0.8.19/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "nightly", "std"))' -C metadata=481d5baddd087d3b -C extra-filename=-481d5baddd087d3b --out-dir /tmp/tmp.WgXbjyKfA6/target/debug/build/crossbeam-utils-481d5baddd087d3b -L dependency=/tmp/tmp.WgXbjyKfA6/target/debug/deps --cap-lints warn` 390s 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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0--remap-path-prefix/tmp/tmp.WgXbjyKfA6/registry=/usr/share/cargo/registry-Ctarget-feature=+backchain' CARGO_MANIFEST_DIR=/tmp/tmp.WgXbjyKfA6/registry/crossbeam-utils-0.8.19 CARGO_MANIFEST_PATH=/tmp/tmp.WgXbjyKfA6/registry/crossbeam-utils-0.8.19/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='Utilities for concurrent programming' CARGO_PKG_HOMEPAGE='https://github.com/crossbeam-rs/crossbeam/tree/master/crossbeam-utils' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=crossbeam-utils CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/crossbeam-rs/crossbeam' CARGO_PKG_RUST_VERSION=1.60 CARGO_PKG_VERSION=0.8.19 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=8 CARGO_PKG_VERSION_PATCH=19 CARGO_PKG_VERSION_PRE='' DEBUG=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.WgXbjyKfA6/target/debug/deps:/tmp/tmp.WgXbjyKfA6/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/build/crossbeam-utils-41ced09745ce2d1e/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.WgXbjyKfA6/target/debug/build/crossbeam-utils-481d5baddd087d3b/build-script-build` 390s [crossbeam-utils 0.8.19] cargo:rerun-if-changed=no_atomic.rs 390s Compiling toml_edit v0.22.20 390s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=toml_edit CARGO_MANIFEST_DIR=/tmp/tmp.WgXbjyKfA6/registry/toml_edit-0.22.20 CARGO_MANIFEST_PATH=/tmp/tmp.WgXbjyKfA6/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.WgXbjyKfA6/target/debug/deps rustc --crate-name toml_edit --edition=2021 /tmp/tmp.WgXbjyKfA6/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.WgXbjyKfA6/target/debug/deps -L dependency=/tmp/tmp.WgXbjyKfA6/target/debug/deps --extern indexmap=/tmp/tmp.WgXbjyKfA6/target/debug/deps/libindexmap-1e18ac9265fbd6ac.rmeta --extern toml_datetime=/tmp/tmp.WgXbjyKfA6/target/debug/deps/libtoml_datetime-df29d6121930b5d6.rmeta --extern winnow=/tmp/tmp.WgXbjyKfA6/target/debug/deps/libwinnow-0f17435733cfc3dc.rmeta --cap-lints warn` 391s 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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0--remap-path-prefix/tmp/tmp.WgXbjyKfA6/registry=/usr/share/cargo/registry-Ctarget-feature=+backchain' CARGO_FEATURE_MORE_LENGTHS=1 CARGO_MANIFEST_DIR=/tmp/tmp.WgXbjyKfA6/registry/generic-array-0.14.7 CARGO_MANIFEST_PATH=/tmp/tmp.WgXbjyKfA6/registry/generic-array-0.14.7/Cargo.toml CARGO_PKG_AUTHORS='Bartłomiej Kamiński :Aaron Trent ' CARGO_PKG_DESCRIPTION='Generic types implementing functionality of arrays' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=generic-array CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/fizyk20/generic-array.git' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.14.7 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=14 CARGO_PKG_VERSION_PATCH=7 CARGO_PKG_VERSION_PRE='' DEBUG=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.WgXbjyKfA6/target/debug/deps:/tmp/tmp.WgXbjyKfA6/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/build/generic-array-da8fba9a25807be8/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.WgXbjyKfA6/target/debug/build/generic-array-160edb9b35222b14/build-script-build` 391s [generic-array 0.14.7] cargo:rustc-cfg=relaxed_coherence 391s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=typenum CARGO_MANIFEST_DIR=/tmp/tmp.WgXbjyKfA6/registry/typenum-1.17.0 CARGO_MANIFEST_PATH=/tmp/tmp.WgXbjyKfA6/registry/typenum-1.17.0/Cargo.toml CARGO_PKG_AUTHORS='Paho Lurie-Gregg :Andre Bogus ' CARGO_PKG_DESCRIPTION='Typenum is a Rust library for type-level numbers evaluated at 391s compile time. It currently supports bits, unsigned integers, and signed 391s integers. It also provides a type-level array of type-level numbers, but its 391s implementation is incomplete.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=typenum CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/paholg/typenum' CARGO_PKG_RUST_VERSION=1.37.0 CARGO_PKG_VERSION=1.17.0 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=17 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.WgXbjyKfA6/target/debug/deps OUT_DIR=/tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/build/typenum-b1daa52c37018028/out rustc --crate-name typenum --edition=2018 /tmp/tmp.WgXbjyKfA6/registry/typenum-1.17.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("const-generics", "force_unix_path_separator", "i128", "no_std", "strict"))' -C metadata=c66037e8139405ff -C extra-filename=-c66037e8139405ff --out-dir /tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.WgXbjyKfA6/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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.WgXbjyKfA6/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 391s warning: unexpected `cfg` condition value: `cargo-clippy` 391s --> /usr/share/cargo/registry/typenum-1.17.0/src/lib.rs:50:5 391s | 391s 50 | feature = "cargo-clippy", 391s | ^^^^^^^^^^^^^^^^^^^^^^^^ 391s | 391s = note: expected values for `feature` are: `const-generics`, `force_unix_path_separator`, `i128`, `no_std`, and `strict` 391s = help: consider adding `cargo-clippy` as a feature in `Cargo.toml` 391s = note: see for more information about checking conditional configuration 391s = note: `#[warn(unexpected_cfgs)]` on by default 391s 391s warning: unexpected `cfg` condition value: `cargo-clippy` 391s --> /usr/share/cargo/registry/typenum-1.17.0/src/lib.rs:60:13 391s | 391s 60 | #![cfg_attr(feature = "cargo-clippy", deny(clippy::missing_inline_in_public_items))] 391s | ^^^^^^^^^^^^^^^^^^^^^^^^ 391s | 391s = note: expected values for `feature` are: `const-generics`, `force_unix_path_separator`, `i128`, `no_std`, and `strict` 391s = help: consider adding `cargo-clippy` as a feature in `Cargo.toml` 391s = note: see for more information about checking conditional configuration 391s 391s warning: unexpected `cfg` condition value: `scale_info` 391s --> /usr/share/cargo/registry/typenum-1.17.0/src/lib.rs:119:12 391s | 391s 119 | #[cfg_attr(feature = "scale_info", derive(scale_info::TypeInfo))] 391s | ^^^^^^^^^^^^^^^^^^^^^^ 391s | 391s = note: expected values for `feature` are: `const-generics`, `force_unix_path_separator`, `i128`, `no_std`, and `strict` 391s = help: consider adding `scale_info` as a feature in `Cargo.toml` 391s = note: see for more information about checking conditional configuration 391s 391s warning: unexpected `cfg` condition value: `scale_info` 391s --> /usr/share/cargo/registry/typenum-1.17.0/src/lib.rs:125:12 391s | 391s 125 | #[cfg_attr(feature = "scale_info", derive(scale_info::TypeInfo))] 391s | ^^^^^^^^^^^^^^^^^^^^^^ 391s | 391s = note: expected values for `feature` are: `const-generics`, `force_unix_path_separator`, `i128`, `no_std`, and `strict` 391s = help: consider adding `scale_info` as a feature in `Cargo.toml` 391s = note: see for more information about checking conditional configuration 391s 391s warning: unexpected `cfg` condition value: `scale_info` 391s --> /usr/share/cargo/registry/typenum-1.17.0/src/lib.rs:131:12 391s | 391s 131 | #[cfg_attr(feature = "scale_info", derive(scale_info::TypeInfo))] 391s | ^^^^^^^^^^^^^^^^^^^^^^ 391s | 391s = note: expected values for `feature` are: `const-generics`, `force_unix_path_separator`, `i128`, `no_std`, and `strict` 391s = help: consider adding `scale_info` as a feature in `Cargo.toml` 391s = note: see for more information about checking conditional configuration 391s 391s warning: unexpected `cfg` condition value: `scale_info` 391s --> /usr/share/cargo/registry/typenum-1.17.0/src/bit.rs:19:12 391s | 391s 19 | #[cfg_attr(feature = "scale_info", derive(scale_info::TypeInfo))] 391s | ^^^^^^^^^^^^^^^^^^^^^^ 391s | 391s = note: expected values for `feature` are: `const-generics`, `force_unix_path_separator`, `i128`, `no_std`, and `strict` 391s = help: consider adding `scale_info` as a feature in `Cargo.toml` 391s = note: see for more information about checking conditional configuration 391s 391s warning: unexpected `cfg` condition value: `scale_info` 391s --> /usr/share/cargo/registry/typenum-1.17.0/src/bit.rs:32:12 391s | 391s 32 | #[cfg_attr(feature = "scale_info", derive(scale_info::TypeInfo))] 391s | ^^^^^^^^^^^^^^^^^^^^^^ 391s | 391s = note: expected values for `feature` are: `const-generics`, `force_unix_path_separator`, `i128`, `no_std`, and `strict` 391s = help: consider adding `scale_info` as a feature in `Cargo.toml` 391s = note: see for more information about checking conditional configuration 391s 391s warning: unexpected `cfg` condition name: `tests` 391s --> /usr/share/cargo/registry/typenum-1.17.0/src/bit.rs:187:7 391s | 391s 187 | #[cfg(tests)] 391s | ^^^^^ help: there is a config with a similar name: `test` 391s | 391s = help: consider using a Cargo feature instead 391s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 391s [lints.rust] 391s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tests)'] } 391s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tests)");` to the top of the `build.rs` 391s = note: see for more information about checking conditional configuration 391s 391s warning: unexpected `cfg` condition value: `scale_info` 391s --> /usr/share/cargo/registry/typenum-1.17.0/src/int.rs:41:12 391s | 391s 41 | #[cfg_attr(feature = "scale_info", derive(scale_info::TypeInfo))] 391s | ^^^^^^^^^^^^^^^^^^^^^^ 391s | 391s = note: expected values for `feature` are: `const-generics`, `force_unix_path_separator`, `i128`, `no_std`, and `strict` 391s = help: consider adding `scale_info` as a feature in `Cargo.toml` 391s = note: see for more information about checking conditional configuration 391s 391s warning: unexpected `cfg` condition value: `scale_info` 391s --> /usr/share/cargo/registry/typenum-1.17.0/src/int.rs:48:12 391s | 391s 48 | #[cfg_attr(feature = "scale_info", derive(scale_info::TypeInfo))] 391s | ^^^^^^^^^^^^^^^^^^^^^^ 391s | 391s = note: expected values for `feature` are: `const-generics`, `force_unix_path_separator`, `i128`, `no_std`, and `strict` 391s = help: consider adding `scale_info` as a feature in `Cargo.toml` 391s = note: see for more information about checking conditional configuration 391s 391s warning: unexpected `cfg` condition value: `scale_info` 391s --> /usr/share/cargo/registry/typenum-1.17.0/src/int.rs:71:12 391s | 391s 71 | #[cfg_attr(feature = "scale_info", derive(scale_info::TypeInfo))] 391s | ^^^^^^^^^^^^^^^^^^^^^^ 391s | 391s = note: expected values for `feature` are: `const-generics`, `force_unix_path_separator`, `i128`, `no_std`, and `strict` 391s = help: consider adding `scale_info` as a feature in `Cargo.toml` 391s = note: see for more information about checking conditional configuration 391s 391s warning: unexpected `cfg` condition value: `scale_info` 391s --> /usr/share/cargo/registry/typenum-1.17.0/src/uint.rs:49:12 391s | 391s 49 | #[cfg_attr(feature = "scale_info", derive(scale_info::TypeInfo))] 391s | ^^^^^^^^^^^^^^^^^^^^^^ 391s | 391s = note: expected values for `feature` are: `const-generics`, `force_unix_path_separator`, `i128`, `no_std`, and `strict` 391s = help: consider adding `scale_info` as a feature in `Cargo.toml` 391s = note: see for more information about checking conditional configuration 391s 391s warning: unexpected `cfg` condition value: `scale_info` 391s --> /usr/share/cargo/registry/typenum-1.17.0/src/uint.rs:147:12 391s | 391s 147 | #[cfg_attr(feature = "scale_info", derive(scale_info::TypeInfo))] 391s | ^^^^^^^^^^^^^^^^^^^^^^ 391s | 391s = note: expected values for `feature` are: `const-generics`, `force_unix_path_separator`, `i128`, `no_std`, and `strict` 391s = help: consider adding `scale_info` as a feature in `Cargo.toml` 391s = note: see for more information about checking conditional configuration 391s 391s warning: unexpected `cfg` condition name: `tests` 391s --> /usr/share/cargo/registry/typenum-1.17.0/src/uint.rs:1656:7 391s | 391s 1656 | #[cfg(tests)] 391s | ^^^^^ help: there is a config with a similar name: `test` 391s | 391s = help: consider using a Cargo feature instead 391s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 391s [lints.rust] 391s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tests)'] } 391s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tests)");` to the top of the `build.rs` 391s = note: see for more information about checking conditional configuration 391s 391s warning: unexpected `cfg` condition value: `cargo-clippy` 391s --> /usr/share/cargo/registry/typenum-1.17.0/src/uint.rs:1709:16 391s | 391s 1709 | #[cfg_attr(feature = "cargo-clippy", allow(clippy::suspicious_arithmetic_impl))] 391s | ^^^^^^^^^^^^^^^^^^^^^^^^ 391s | 391s = note: expected values for `feature` are: `const-generics`, `force_unix_path_separator`, `i128`, `no_std`, and `strict` 391s = help: consider adding `cargo-clippy` as a feature in `Cargo.toml` 391s = note: see for more information about checking conditional configuration 391s 391s warning: unexpected `cfg` condition value: `scale_info` 391s --> /usr/share/cargo/registry/typenum-1.17.0/src/array.rs:11:12 391s | 391s 11 | #[cfg_attr(feature = "scale_info", derive(scale_info::TypeInfo))] 391s | ^^^^^^^^^^^^^^^^^^^^^^ 391s | 391s = note: expected values for `feature` are: `const-generics`, `force_unix_path_separator`, `i128`, `no_std`, and `strict` 391s = help: consider adding `scale_info` as a feature in `Cargo.toml` 391s = note: see for more information about checking conditional configuration 391s 391s warning: unexpected `cfg` condition value: `scale_info` 391s --> /usr/share/cargo/registry/typenum-1.17.0/src/array.rs:23:12 391s | 391s 23 | #[cfg_attr(feature = "scale_info", derive(scale_info::TypeInfo))] 391s | ^^^^^^^^^^^^^^^^^^^^^^ 391s | 391s = note: expected values for `feature` are: `const-generics`, `force_unix_path_separator`, `i128`, `no_std`, and `strict` 391s = help: consider adding `scale_info` as a feature in `Cargo.toml` 391s = note: see for more information about checking conditional configuration 391s 391s warning: unused import: `*` 391s --> /usr/share/cargo/registry/typenum-1.17.0/src/lib.rs:106:25 391s | 391s 106 | N1, N2, Z0, P1, P2, *, 391s | ^ 391s | 391s = note: `#[warn(unused_imports)]` on by default 391s 391s warning: `typenum` (lib) generated 19 warnings (1 duplicate) 391s Compiling serde v1.0.217 391s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.WgXbjyKfA6/registry/serde-1.0.217 CARGO_MANIFEST_PATH=/tmp/tmp.WgXbjyKfA6/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.WgXbjyKfA6/target/debug/deps rustc --crate-name build_script_build --edition=2018 /tmp/tmp.WgXbjyKfA6/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.WgXbjyKfA6/target/debug/build/serde-c22c8603f1f999ec -L dependency=/tmp/tmp.WgXbjyKfA6/target/debug/deps --cap-lints warn` 391s 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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0--remap-path-prefix/tmp/tmp.WgXbjyKfA6/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.WgXbjyKfA6/registry/serde-1.0.217 CARGO_MANIFEST_PATH=/tmp/tmp.WgXbjyKfA6/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.WgXbjyKfA6/target/debug/deps:/tmp/tmp.WgXbjyKfA6/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/build/serde-c08ea6899e623ec6/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.WgXbjyKfA6/target/debug/build/serde-c22c8603f1f999ec/build-script-build` 391s [serde 1.0.217] cargo:rerun-if-changed=build.rs 391s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_core_cstr) 391s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_core_error) 391s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_core_net) 391s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_core_num_saturating) 391s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_core_try_from) 391s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_diagnostic_namespace) 391s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_float_copysign) 391s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_num_nonzero_signed) 391s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_relaxed_trait_bounds) 391s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_serde_derive) 391s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_std_atomic) 391s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_std_atomic64) 391s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_systemtime_checked_add) 391s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_target_has_atomic) 391s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=generic_array CARGO_MANIFEST_DIR=/tmp/tmp.WgXbjyKfA6/registry/generic-array-0.14.7 CARGO_MANIFEST_PATH=/tmp/tmp.WgXbjyKfA6/registry/generic-array-0.14.7/Cargo.toml CARGO_PKG_AUTHORS='Bartłomiej Kamiński :Aaron Trent ' CARGO_PKG_DESCRIPTION='Generic types implementing functionality of arrays' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=generic-array CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/fizyk20/generic-array.git' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.14.7 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=14 CARGO_PKG_VERSION_PATCH=7 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.WgXbjyKfA6/target/debug/deps OUT_DIR=/tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/build/generic-array-da8fba9a25807be8/out rustc --crate-name generic_array --edition=2015 /tmp/tmp.WgXbjyKfA6/registry/generic-array-0.14.7/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="more_lengths"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("more_lengths", "serde", "zeroize"))' -C metadata=d02d059964c7aee0 -C extra-filename=-d02d059964c7aee0 --out-dir /tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.WgXbjyKfA6/target/debug/deps --extern typenum=/tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/deps/libtypenum-c66037e8139405ff.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.WgXbjyKfA6/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain --cfg relaxed_coherence` 391s warning: unexpected `cfg` condition name: `relaxed_coherence` 391s --> /usr/share/cargo/registry/generic-array-0.14.7/src/impls.rs:136:19 391s | 391s 136 | #[cfg(relaxed_coherence)] 391s | ^^^^^^^^^^^^^^^^^ 391s ... 391s 183 | / impl_from! { 391s 184 | | 1 => ::typenum::U1, 391s 185 | | 2 => ::typenum::U2, 391s 186 | | 3 => ::typenum::U3, 391s ... | 391s 215 | | 32 => ::typenum::U32 391s 216 | | } 391s | |_- in this macro invocation 391s | 391s = help: expected names are: `clippy`, `debug_assertions`, `doc`, `docsrs`, `doctest`, `feature`, `fmt_debug`, `miri`, `overflow_checks`, `panic`, `proc_macro`, `relocation_model`, `rustfmt`, `sanitize`, `sanitizer_cfi_generalize_pointers`, `sanitizer_cfi_normalize_integers`, `target_abi`, `target_arch`, `target_endian`, `target_env`, `target_family`, `target_feature`, `target_has_atomic`, `target_has_atomic_equal_alignment`, `target_has_atomic_load_store`, `target_os`, `target_pointer_width`, `target_thread_local`, `target_vendor`, `test`, `ub_checks`, `unix`, and `windows` 391s = help: consider using a Cargo feature instead 391s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 391s [lints.rust] 391s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(relaxed_coherence)'] } 391s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(relaxed_coherence)");` to the top of the `build.rs` 391s = note: see for more information about checking conditional configuration 391s = note: `#[warn(unexpected_cfgs)]` on by default 391s = note: this warning originates in the macro `impl_from` (in Nightly builds, run with -Z macro-backtrace for more info) 391s 391s warning: unexpected `cfg` condition name: `relaxed_coherence` 391s --> /usr/share/cargo/registry/generic-array-0.14.7/src/impls.rs:158:23 391s | 391s 158 | #[cfg(not(relaxed_coherence))] 391s | ^^^^^^^^^^^^^^^^^ 391s ... 391s 183 | / impl_from! { 391s 184 | | 1 => ::typenum::U1, 391s 185 | | 2 => ::typenum::U2, 391s 186 | | 3 => ::typenum::U3, 391s ... | 391s 215 | | 32 => ::typenum::U32 391s 216 | | } 391s | |_- in this macro invocation 391s | 391s = help: consider using a Cargo feature instead 391s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 391s [lints.rust] 391s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(relaxed_coherence)'] } 391s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(relaxed_coherence)");` to the top of the `build.rs` 391s = note: see for more information about checking conditional configuration 391s = note: this warning originates in the macro `impl_from` (in Nightly builds, run with -Z macro-backtrace for more info) 391s 391s warning: unexpected `cfg` condition name: `relaxed_coherence` 391s --> /usr/share/cargo/registry/generic-array-0.14.7/src/impls.rs:136:19 391s | 391s 136 | #[cfg(relaxed_coherence)] 391s | ^^^^^^^^^^^^^^^^^ 391s ... 391s 219 | / impl_from! { 391s 220 | | 33 => ::typenum::U33, 391s 221 | | 34 => ::typenum::U34, 391s 222 | | 35 => ::typenum::U35, 391s ... | 391s 268 | | 1024 => ::typenum::U1024 391s 269 | | } 391s | |_- in this macro invocation 391s | 391s = help: consider using a Cargo feature instead 391s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 391s [lints.rust] 391s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(relaxed_coherence)'] } 391s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(relaxed_coherence)");` to the top of the `build.rs` 391s = note: see for more information about checking conditional configuration 391s = note: this warning originates in the macro `impl_from` (in Nightly builds, run with -Z macro-backtrace for more info) 391s 392s warning: unexpected `cfg` condition name: `relaxed_coherence` 392s --> /usr/share/cargo/registry/generic-array-0.14.7/src/impls.rs:158:23 392s | 392s 158 | #[cfg(not(relaxed_coherence))] 392s | ^^^^^^^^^^^^^^^^^ 392s ... 392s 219 | / impl_from! { 392s 220 | | 33 => ::typenum::U33, 392s 221 | | 34 => ::typenum::U34, 392s 222 | | 35 => ::typenum::U35, 392s ... | 392s 268 | | 1024 => ::typenum::U1024 392s 269 | | } 392s | |_- in this macro invocation 392s | 392s = help: consider using a Cargo feature instead 392s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 392s [lints.rust] 392s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(relaxed_coherence)'] } 392s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(relaxed_coherence)");` to the top of the `build.rs` 392s = note: see for more information about checking conditional configuration 392s = note: this warning originates in the macro `impl_from` (in Nightly builds, run with -Z macro-backtrace for more info) 392s 392s warning: `generic-array` (lib) generated 5 warnings (1 duplicate) 392s Compiling zerocopy-derive v0.7.34 392s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=zerocopy_derive CARGO_MANIFEST_DIR=/tmp/tmp.WgXbjyKfA6/registry/zerocopy-derive-0.7.34 CARGO_MANIFEST_PATH=/tmp/tmp.WgXbjyKfA6/registry/zerocopy-derive-0.7.34/Cargo.toml CARGO_PKG_AUTHORS='Joshua Liebow-Feeser ' CARGO_PKG_DESCRIPTION='Custom derive for traits from the zerocopy crate' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='BSD-2-Clause OR Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=zerocopy-derive CARGO_PKG_README='' CARGO_PKG_REPOSITORY='https://github.com/google/zerocopy' CARGO_PKG_RUST_VERSION=1.60.0 CARGO_PKG_VERSION=0.7.34 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=7 CARGO_PKG_VERSION_PATCH=34 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.WgXbjyKfA6/target/debug/deps rustc --crate-name zerocopy_derive --edition=2018 /tmp/tmp.WgXbjyKfA6/registry/zerocopy-derive-0.7.34/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type proc-macro --emit=dep-info,link -C prefer-dynamic -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=676bad9287e184ca -C extra-filename=-676bad9287e184ca --out-dir /tmp/tmp.WgXbjyKfA6/target/debug/deps -L dependency=/tmp/tmp.WgXbjyKfA6/target/debug/deps --extern proc_macro2=/tmp/tmp.WgXbjyKfA6/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rlib --extern quote=/tmp/tmp.WgXbjyKfA6/target/debug/deps/libquote-dc92c6f25ee0f0c6.rlib --extern syn=/tmp/tmp.WgXbjyKfA6/target/debug/deps/libsyn-0167beed9e699402.rlib --extern proc_macro --cap-lints warn` 393s Compiling serde_derive v1.0.217 393s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=serde_derive CARGO_MANIFEST_DIR=/tmp/tmp.WgXbjyKfA6/registry/serde_derive-1.0.217 CARGO_MANIFEST_PATH=/tmp/tmp.WgXbjyKfA6/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.WgXbjyKfA6/target/debug/deps rustc --crate-name serde_derive --edition=2015 /tmp/tmp.WgXbjyKfA6/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=85fb19fec9ccb150 -C extra-filename=-85fb19fec9ccb150 --out-dir /tmp/tmp.WgXbjyKfA6/target/debug/deps -L dependency=/tmp/tmp.WgXbjyKfA6/target/debug/deps --extern proc_macro2=/tmp/tmp.WgXbjyKfA6/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rlib --extern quote=/tmp/tmp.WgXbjyKfA6/target/debug/deps/libquote-dc92c6f25ee0f0c6.rlib --extern syn=/tmp/tmp.WgXbjyKfA6/target/debug/deps/libsyn-0167beed9e699402.rlib --extern proc_macro --cap-lints warn` 393s Compiling proc-macro-crate v3.2.0 393s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=proc_macro_crate CARGO_MANIFEST_DIR=/tmp/tmp.WgXbjyKfA6/registry/proc-macro-crate-3.2.0 CARGO_MANIFEST_PATH=/tmp/tmp.WgXbjyKfA6/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 393s ' 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.WgXbjyKfA6/target/debug/deps rustc --crate-name proc_macro_crate --edition=2021 /tmp/tmp.WgXbjyKfA6/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.WgXbjyKfA6/target/debug/deps -L dependency=/tmp/tmp.WgXbjyKfA6/target/debug/deps --extern toml_edit=/tmp/tmp.WgXbjyKfA6/target/debug/deps/libtoml_edit-89b547630831cc85.rmeta --cap-lints warn` 394s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=crossbeam_utils CARGO_MANIFEST_DIR=/tmp/tmp.WgXbjyKfA6/registry/crossbeam-utils-0.8.19 CARGO_MANIFEST_PATH=/tmp/tmp.WgXbjyKfA6/registry/crossbeam-utils-0.8.19/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='Utilities for concurrent programming' CARGO_PKG_HOMEPAGE='https://github.com/crossbeam-rs/crossbeam/tree/master/crossbeam-utils' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=crossbeam-utils CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/crossbeam-rs/crossbeam' CARGO_PKG_RUST_VERSION=1.60 CARGO_PKG_VERSION=0.8.19 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=8 CARGO_PKG_VERSION_PATCH=19 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.WgXbjyKfA6/target/debug/deps OUT_DIR=/tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/build/crossbeam-utils-41ced09745ce2d1e/out rustc --crate-name crossbeam_utils --edition=2021 /tmp/tmp.WgXbjyKfA6/registry/crossbeam-utils-0.8.19/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "nightly", "std"))' -C metadata=bcaf20eecaf4c1fc -C extra-filename=-bcaf20eecaf4c1fc --out-dir /tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.WgXbjyKfA6/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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.WgXbjyKfA6/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 394s warning: unexpected `cfg` condition name: `crossbeam_loom` 394s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/lib.rs:42:7 394s | 394s 42 | #[cfg(crossbeam_loom)] 394s | ^^^^^^^^^^^^^^ 394s | 394s = help: expected names are: `clippy`, `debug_assertions`, `doc`, `docsrs`, `doctest`, `feature`, `fmt_debug`, `miri`, `overflow_checks`, `panic`, `proc_macro`, `relocation_model`, `rustfmt`, `sanitize`, `sanitizer_cfi_generalize_pointers`, `sanitizer_cfi_normalize_integers`, `target_abi`, `target_arch`, `target_endian`, `target_env`, `target_family`, `target_feature`, `target_has_atomic`, `target_has_atomic_equal_alignment`, `target_has_atomic_load_store`, `target_os`, `target_pointer_width`, `target_thread_local`, `target_vendor`, `test`, `ub_checks`, `unix`, and `windows` 394s = help: consider using a Cargo feature instead 394s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 394s [lints.rust] 394s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 394s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 394s = note: see for more information about checking conditional configuration 394s = note: `#[warn(unexpected_cfgs)]` on by default 394s 394s warning: unexpected `cfg` condition name: `crossbeam_loom` 394s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/lib.rs:65:11 394s | 394s 65 | #[cfg(not(crossbeam_loom))] 394s | ^^^^^^^^^^^^^^ 394s | 394s = help: consider using a Cargo feature instead 394s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 394s [lints.rust] 394s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 394s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 394s = note: see for more information about checking conditional configuration 394s 394s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 394s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/lib.rs:74:23 394s | 394s 74 | #[cfg(not(crossbeam_no_atomic))] 394s | ^^^^^^^^^^^^^^^^^^^ 394s | 394s = help: consider using a Cargo feature instead 394s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 394s [lints.rust] 394s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 394s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 394s = note: see for more information about checking conditional configuration 394s 394s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 394s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/lib.rs:78:23 394s | 394s 78 | #[cfg(not(crossbeam_no_atomic))] 394s | ^^^^^^^^^^^^^^^^^^^ 394s | 394s = help: consider using a Cargo feature instead 394s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 394s [lints.rust] 394s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 394s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 394s = note: see for more information about checking conditional configuration 394s 394s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 394s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/lib.rs:81:23 394s | 394s 81 | #[cfg(not(crossbeam_no_atomic))] 394s | ^^^^^^^^^^^^^^^^^^^ 394s | 394s = help: consider using a Cargo feature instead 394s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 394s [lints.rust] 394s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 394s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 394s = note: see for more information about checking conditional configuration 394s 394s warning: unexpected `cfg` condition name: `crossbeam_loom` 394s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/mod.rs:7:11 394s | 394s 7 | #[cfg(not(crossbeam_loom))] 394s | ^^^^^^^^^^^^^^ 394s | 394s = help: consider using a Cargo feature instead 394s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 394s [lints.rust] 394s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 394s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 394s = note: see for more information about checking conditional configuration 394s 394s warning: unexpected `cfg` condition name: `crossbeam_loom` 394s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/mod.rs:25:11 394s | 394s 25 | #[cfg(not(crossbeam_loom))] 394s | ^^^^^^^^^^^^^^ 394s | 394s = help: consider using a Cargo feature instead 394s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 394s [lints.rust] 394s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 394s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 394s = note: see for more information about checking conditional configuration 394s 394s warning: unexpected `cfg` condition name: `crossbeam_loom` 394s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/mod.rs:28:11 394s | 394s 28 | #[cfg(not(crossbeam_loom))] 394s | ^^^^^^^^^^^^^^ 394s | 394s = help: consider using a Cargo feature instead 394s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 394s [lints.rust] 394s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 394s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 394s = note: see for more information about checking conditional configuration 394s 394s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 394s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:1:11 394s | 394s 1 | #[cfg(not(crossbeam_no_atomic))] 394s | ^^^^^^^^^^^^^^^^^^^ 394s | 394s = help: consider using a Cargo feature instead 394s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 394s [lints.rust] 394s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 394s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 394s = note: see for more information about checking conditional configuration 394s 394s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 394s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:27:11 394s | 394s 27 | #[cfg(not(crossbeam_no_atomic))] 394s | ^^^^^^^^^^^^^^^^^^^ 394s | 394s = help: consider using a Cargo feature instead 394s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 394s [lints.rust] 394s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 394s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 394s = note: see for more information about checking conditional configuration 394s 394s warning: unexpected `cfg` condition name: `crossbeam_loom` 394s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:36:19 394s | 394s 36 | not(any(miri, crossbeam_loom, crossbeam_sanitize_thread)), 394s | ^^^^^^^^^^^^^^ 394s | 394s = help: consider using a Cargo feature instead 394s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 394s [lints.rust] 394s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 394s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 394s = note: see for more information about checking conditional configuration 394s 394s warning: unexpected `cfg` condition name: `crossbeam_sanitize_thread` 394s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:36:35 394s | 394s 36 | not(any(miri, crossbeam_loom, crossbeam_sanitize_thread)), 394s | ^^^^^^^^^^^^^^^^^^^^^^^^^ 394s | 394s = help: consider using a Cargo feature instead 394s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 394s [lints.rust] 394s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_sanitize_thread)'] } 394s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_sanitize_thread)");` to the top of the `build.rs` 394s = note: see for more information about checking conditional configuration 394s 394s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 394s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:50:11 394s | 394s 50 | #[cfg(not(crossbeam_no_atomic))] 394s | ^^^^^^^^^^^^^^^^^^^ 394s | 394s = help: consider using a Cargo feature instead 394s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 394s [lints.rust] 394s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 394s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 394s = note: see for more information about checking conditional configuration 394s 394s warning: unexpected `cfg` condition name: `crossbeam_loom` 394s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:53:19 394s | 394s 53 | not(any(miri, crossbeam_loom, crossbeam_sanitize_thread)), 394s | ^^^^^^^^^^^^^^ 394s | 394s = help: consider using a Cargo feature instead 394s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 394s [lints.rust] 394s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 394s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 394s = note: see for more information about checking conditional configuration 394s 394s warning: unexpected `cfg` condition name: `crossbeam_sanitize_thread` 394s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:53:35 394s | 394s 53 | not(any(miri, crossbeam_loom, crossbeam_sanitize_thread)), 394s | ^^^^^^^^^^^^^^^^^^^^^^^^^ 394s | 394s = help: consider using a Cargo feature instead 394s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 394s [lints.rust] 394s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_sanitize_thread)'] } 394s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_sanitize_thread)");` to the top of the `build.rs` 394s = note: see for more information about checking conditional configuration 394s 394s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 394s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:101:11 394s | 394s 101 | #[cfg(not(crossbeam_no_atomic))] 394s | ^^^^^^^^^^^^^^^^^^^ 394s | 394s = help: consider using a Cargo feature instead 394s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 394s [lints.rust] 394s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 394s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 394s = note: see for more information about checking conditional configuration 394s 394s warning: unexpected `cfg` condition name: `crossbeam_loom` 394s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:107:7 394s | 394s 107 | #[cfg(crossbeam_loom)] 394s | ^^^^^^^^^^^^^^ 394s | 394s = help: consider using a Cargo feature instead 394s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 394s [lints.rust] 394s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 394s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 394s = note: see for more information about checking conditional configuration 394s 394s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 394s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:66:19 394s | 394s 66 | #[cfg(not(crossbeam_no_atomic))] 394s | ^^^^^^^^^^^^^^^^^^^ 394s ... 394s 79 | impl_atomic!(AtomicBool, bool); 394s | ------------------------------ in this macro invocation 394s | 394s = help: consider using a Cargo feature instead 394s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 394s [lints.rust] 394s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 394s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 394s = note: see for more information about checking conditional configuration 394s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 394s 394s warning: unexpected `cfg` condition name: `crossbeam_loom` 394s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:71:15 394s | 394s 71 | #[cfg(crossbeam_loom)] 394s | ^^^^^^^^^^^^^^ 394s ... 394s 79 | impl_atomic!(AtomicBool, bool); 394s | ------------------------------ in this macro invocation 394s | 394s = help: consider using a Cargo feature instead 394s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 394s [lints.rust] 394s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 394s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 394s = note: see for more information about checking conditional configuration 394s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 394s 394s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 394s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:66:19 394s | 394s 66 | #[cfg(not(crossbeam_no_atomic))] 394s | ^^^^^^^^^^^^^^^^^^^ 394s ... 394s 80 | impl_atomic!(AtomicUsize, usize); 394s | -------------------------------- in this macro invocation 394s | 394s = help: consider using a Cargo feature instead 394s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 394s [lints.rust] 394s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 394s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 394s = note: see for more information about checking conditional configuration 394s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 394s 394s warning: unexpected `cfg` condition name: `crossbeam_loom` 394s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:71:15 394s | 394s 71 | #[cfg(crossbeam_loom)] 394s | ^^^^^^^^^^^^^^ 394s ... 394s 80 | impl_atomic!(AtomicUsize, usize); 394s | -------------------------------- in this macro invocation 394s | 394s = help: consider using a Cargo feature instead 394s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 394s [lints.rust] 394s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 394s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 394s = note: see for more information about checking conditional configuration 394s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 394s 394s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 394s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:66:19 394s | 394s 66 | #[cfg(not(crossbeam_no_atomic))] 394s | ^^^^^^^^^^^^^^^^^^^ 394s ... 394s 81 | impl_atomic!(AtomicIsize, isize); 394s | -------------------------------- in this macro invocation 394s | 394s = help: consider using a Cargo feature instead 394s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 394s [lints.rust] 394s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 394s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 394s = note: see for more information about checking conditional configuration 394s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 394s 394s warning: unexpected `cfg` condition name: `crossbeam_loom` 394s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:71:15 394s | 394s 71 | #[cfg(crossbeam_loom)] 394s | ^^^^^^^^^^^^^^ 394s ... 394s 81 | impl_atomic!(AtomicIsize, isize); 394s | -------------------------------- in this macro invocation 394s | 394s = help: consider using a Cargo feature instead 394s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 394s [lints.rust] 394s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 394s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 394s = note: see for more information about checking conditional configuration 394s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 394s 394s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 394s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:66:19 394s | 394s 66 | #[cfg(not(crossbeam_no_atomic))] 394s | ^^^^^^^^^^^^^^^^^^^ 394s ... 394s 82 | impl_atomic!(AtomicU8, u8); 394s | -------------------------- in this macro invocation 394s | 394s = help: consider using a Cargo feature instead 394s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 394s [lints.rust] 394s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 394s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 394s = note: see for more information about checking conditional configuration 394s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 394s 394s warning: unexpected `cfg` condition name: `crossbeam_loom` 394s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:71:15 394s | 394s 71 | #[cfg(crossbeam_loom)] 394s | ^^^^^^^^^^^^^^ 394s ... 394s 82 | impl_atomic!(AtomicU8, u8); 394s | -------------------------- in this macro invocation 394s | 394s = help: consider using a Cargo feature instead 394s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 394s [lints.rust] 394s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 394s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 394s = note: see for more information about checking conditional configuration 394s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 394s 394s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 394s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:66:19 394s | 394s 66 | #[cfg(not(crossbeam_no_atomic))] 394s | ^^^^^^^^^^^^^^^^^^^ 394s ... 394s 83 | impl_atomic!(AtomicI8, i8); 394s | -------------------------- in this macro invocation 394s | 394s = help: consider using a Cargo feature instead 394s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 394s [lints.rust] 394s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 394s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 394s = note: see for more information about checking conditional configuration 394s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 394s 394s warning: unexpected `cfg` condition name: `crossbeam_loom` 394s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:71:15 394s | 394s 71 | #[cfg(crossbeam_loom)] 394s | ^^^^^^^^^^^^^^ 394s ... 394s 83 | impl_atomic!(AtomicI8, i8); 394s | -------------------------- in this macro invocation 394s | 394s = help: consider using a Cargo feature instead 394s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 394s [lints.rust] 394s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 394s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 394s = note: see for more information about checking conditional configuration 394s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 394s 394s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 394s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:66:19 394s | 394s 66 | #[cfg(not(crossbeam_no_atomic))] 394s | ^^^^^^^^^^^^^^^^^^^ 394s ... 394s 84 | impl_atomic!(AtomicU16, u16); 394s | ---------------------------- in this macro invocation 394s | 394s = help: consider using a Cargo feature instead 394s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 394s [lints.rust] 394s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 394s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 394s = note: see for more information about checking conditional configuration 394s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 394s 394s warning: unexpected `cfg` condition name: `crossbeam_loom` 394s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:71:15 394s | 394s 71 | #[cfg(crossbeam_loom)] 394s | ^^^^^^^^^^^^^^ 394s ... 394s 84 | impl_atomic!(AtomicU16, u16); 394s | ---------------------------- in this macro invocation 394s | 394s = help: consider using a Cargo feature instead 394s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 394s [lints.rust] 394s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 394s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 394s = note: see for more information about checking conditional configuration 394s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 394s 394s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 394s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:66:19 394s | 394s 66 | #[cfg(not(crossbeam_no_atomic))] 394s | ^^^^^^^^^^^^^^^^^^^ 394s ... 394s 85 | impl_atomic!(AtomicI16, i16); 394s | ---------------------------- in this macro invocation 394s | 394s = help: consider using a Cargo feature instead 394s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 394s [lints.rust] 394s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 394s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 394s = note: see for more information about checking conditional configuration 394s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 394s 394s warning: unexpected `cfg` condition name: `crossbeam_loom` 394s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:71:15 394s | 394s 71 | #[cfg(crossbeam_loom)] 394s | ^^^^^^^^^^^^^^ 394s ... 394s 85 | impl_atomic!(AtomicI16, i16); 394s | ---------------------------- in this macro invocation 394s | 394s = help: consider using a Cargo feature instead 394s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 394s [lints.rust] 394s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 394s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 394s = note: see for more information about checking conditional configuration 394s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 394s 394s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 394s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:66:19 394s | 394s 66 | #[cfg(not(crossbeam_no_atomic))] 394s | ^^^^^^^^^^^^^^^^^^^ 394s ... 394s 87 | impl_atomic!(AtomicU32, u32); 394s | ---------------------------- in this macro invocation 394s | 394s = help: consider using a Cargo feature instead 394s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 394s [lints.rust] 394s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 394s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 394s = note: see for more information about checking conditional configuration 394s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 394s 394s warning: unexpected `cfg` condition name: `crossbeam_loom` 394s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:71:15 394s | 394s 71 | #[cfg(crossbeam_loom)] 394s | ^^^^^^^^^^^^^^ 394s ... 394s 87 | impl_atomic!(AtomicU32, u32); 394s | ---------------------------- in this macro invocation 394s | 394s = help: consider using a Cargo feature instead 394s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 394s [lints.rust] 394s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 394s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 394s = note: see for more information about checking conditional configuration 394s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 394s 394s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 394s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:66:19 394s | 394s 66 | #[cfg(not(crossbeam_no_atomic))] 394s | ^^^^^^^^^^^^^^^^^^^ 394s ... 394s 89 | impl_atomic!(AtomicI32, i32); 394s | ---------------------------- in this macro invocation 394s | 394s = help: consider using a Cargo feature instead 394s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 394s [lints.rust] 394s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 394s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 394s = note: see for more information about checking conditional configuration 394s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 394s 394s warning: unexpected `cfg` condition name: `crossbeam_loom` 394s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:71:15 394s | 394s 71 | #[cfg(crossbeam_loom)] 394s | ^^^^^^^^^^^^^^ 394s ... 394s 89 | impl_atomic!(AtomicI32, i32); 394s | ---------------------------- in this macro invocation 394s | 394s = help: consider using a Cargo feature instead 394s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 394s [lints.rust] 394s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 394s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 394s = note: see for more information about checking conditional configuration 394s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 394s 394s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 394s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:66:19 394s | 394s 66 | #[cfg(not(crossbeam_no_atomic))] 394s | ^^^^^^^^^^^^^^^^^^^ 394s ... 394s 94 | impl_atomic!(AtomicU64, u64); 394s | ---------------------------- in this macro invocation 394s | 394s = help: consider using a Cargo feature instead 394s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 394s [lints.rust] 394s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 394s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 394s = note: see for more information about checking conditional configuration 394s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 394s 394s warning: unexpected `cfg` condition name: `crossbeam_loom` 394s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:71:15 394s | 394s 71 | #[cfg(crossbeam_loom)] 394s | ^^^^^^^^^^^^^^ 394s ... 394s 94 | impl_atomic!(AtomicU64, u64); 394s | ---------------------------- in this macro invocation 394s | 394s = help: consider using a Cargo feature instead 394s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 394s [lints.rust] 394s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 394s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 394s = note: see for more information about checking conditional configuration 394s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 394s 394s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 394s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:66:19 394s | 394s 66 | #[cfg(not(crossbeam_no_atomic))] 394s | ^^^^^^^^^^^^^^^^^^^ 394s ... 394s 99 | impl_atomic!(AtomicI64, i64); 394s | ---------------------------- in this macro invocation 394s | 394s = help: consider using a Cargo feature instead 394s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 394s [lints.rust] 394s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 394s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 394s = note: see for more information about checking conditional configuration 394s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 394s 394s warning: unexpected `cfg` condition name: `crossbeam_loom` 394s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:71:15 394s | 394s 71 | #[cfg(crossbeam_loom)] 394s | ^^^^^^^^^^^^^^ 394s ... 394s 99 | impl_atomic!(AtomicI64, i64); 394s | ---------------------------- in this macro invocation 394s | 394s = help: consider using a Cargo feature instead 394s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 394s [lints.rust] 394s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 394s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 394s = note: see for more information about checking conditional configuration 394s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 394s 394s warning: `crossbeam-utils` (lib) generated 40 warnings (1 duplicate) 394s Compiling zvariant_utils v2.1.0 394s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=zvariant_utils CARGO_MANIFEST_DIR=/tmp/tmp.WgXbjyKfA6/registry/zvariant_utils-2.1.0 CARGO_MANIFEST_PATH=/tmp/tmp.WgXbjyKfA6/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.WgXbjyKfA6/target/debug/deps rustc --crate-name zvariant_utils --edition=2021 /tmp/tmp.WgXbjyKfA6/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=555d90bad4acf190 -C extra-filename=-555d90bad4acf190 --out-dir /tmp/tmp.WgXbjyKfA6/target/debug/deps -L dependency=/tmp/tmp.WgXbjyKfA6/target/debug/deps --extern proc_macro2=/tmp/tmp.WgXbjyKfA6/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rmeta --extern quote=/tmp/tmp.WgXbjyKfA6/target/debug/deps/libquote-dc92c6f25ee0f0c6.rmeta --extern syn=/tmp/tmp.WgXbjyKfA6/target/debug/deps/libsyn-0167beed9e699402.rmeta --cap-lints warn` 394s Compiling byteorder v1.5.0 394s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=byteorder CARGO_MANIFEST_DIR=/tmp/tmp.WgXbjyKfA6/registry/byteorder-1.5.0 CARGO_MANIFEST_PATH=/tmp/tmp.WgXbjyKfA6/registry/byteorder-1.5.0/Cargo.toml CARGO_PKG_AUTHORS='Andrew Gallant ' CARGO_PKG_DESCRIPTION='Library for reading/writing numbers in big-endian and little-endian.' CARGO_PKG_HOMEPAGE='https://github.com/BurntSushi/byteorder' CARGO_PKG_LICENSE='Unlicense OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=byteorder CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/BurntSushi/byteorder' CARGO_PKG_RUST_VERSION=1.60 CARGO_PKG_VERSION=1.5.0 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=5 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.WgXbjyKfA6/target/debug/deps rustc --crate-name byteorder --edition=2021 /tmp/tmp.WgXbjyKfA6/registry/byteorder-1.5.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "i128", "std"))' -C metadata=89ebf31d1f97ee77 -C extra-filename=-89ebf31d1f97ee77 --out-dir /tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.WgXbjyKfA6/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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.WgXbjyKfA6/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 394s warning: `byteorder` (lib) generated 1 warning (1 duplicate) 394s Compiling futures-core v0.3.31 394s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=futures_core CARGO_MANIFEST_DIR=/tmp/tmp.WgXbjyKfA6/registry/futures-core-0.3.31 CARGO_MANIFEST_PATH=/tmp/tmp.WgXbjyKfA6/registry/futures-core-0.3.31/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='The core traits and types in for the `futures` library. 394s ' CARGO_PKG_HOMEPAGE='https://rust-lang.github.io/futures-rs' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=futures-core CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/futures-rs' CARGO_PKG_RUST_VERSION=1.36 CARGO_PKG_VERSION=0.3.31 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=31 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.WgXbjyKfA6/target/debug/deps rustc --crate-name futures_core --edition=2018 /tmp/tmp.WgXbjyKfA6/registry/futures-core-0.3.31/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --warn=unreachable_pub --warn=unexpected_cfgs --warn=single_use_lifetimes --warn=rust_2018_idioms --warn=missing_debug_implementations --check-cfg 'cfg(futures_sanitizer)' --cfg 'feature="alloc"' --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "cfg-target-has-atomic", "default", "portable-atomic", "std", "unstable"))' -C metadata=8d305950da6bf5c8 -C extra-filename=-8d305950da6bf5c8 --out-dir /tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.WgXbjyKfA6/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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.WgXbjyKfA6/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 395s warning: `futures-core` (lib) generated 1 warning (1 duplicate) 395s Compiling zerocopy v0.7.34 395s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=zerocopy CARGO_MANIFEST_DIR=/tmp/tmp.WgXbjyKfA6/registry/zerocopy-0.7.34 CARGO_MANIFEST_PATH=/tmp/tmp.WgXbjyKfA6/registry/zerocopy-0.7.34/Cargo.toml CARGO_PKG_AUTHORS='Joshua Liebow-Feeser ' CARGO_PKG_DESCRIPTION='Utilities for zero-copy parsing and serialization' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='BSD-2-Clause OR Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=zerocopy CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/google/zerocopy' CARGO_PKG_RUST_VERSION=1.60.0 CARGO_PKG_VERSION=0.7.34 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=7 CARGO_PKG_VERSION_PATCH=34 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.WgXbjyKfA6/target/debug/deps rustc --crate-name zerocopy --edition=2018 /tmp/tmp.WgXbjyKfA6/registry/zerocopy-0.7.34/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="byteorder"' --cfg 'feature="default"' --cfg 'feature="derive"' --cfg 'feature="simd"' --cfg 'feature="zerocopy-derive"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("__internal_use_only_features_that_work_on_stable", "alloc", "byteorder", "default", "derive", "simd", "simd-nightly", "zerocopy-derive"))' -C metadata=777d8c6c10ffcfc6 -C extra-filename=-777d8c6c10ffcfc6 --out-dir /tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.WgXbjyKfA6/target/debug/deps --extern byteorder=/tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/deps/libbyteorder-89ebf31d1f97ee77.rmeta --extern zerocopy_derive=/tmp/tmp.WgXbjyKfA6/target/debug/deps/libzerocopy_derive-676bad9287e184ca.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.WgXbjyKfA6/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 395s warning: unnecessary qualification 395s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/util.rs:597:32 395s | 395s 597 | let remainder = t.addr() % mem::align_of::(); 395s | ^^^^^^^^^^^^^^^^^^ 395s | 395s note: the lint level is defined here 395s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:174:5 395s | 395s 174 | unused_qualifications, 395s | ^^^^^^^^^^^^^^^^^^^^^ 395s help: remove the unnecessary path segments 395s | 395s 597 - let remainder = t.addr() % mem::align_of::(); 395s 597 + let remainder = t.addr() % align_of::(); 395s | 395s 395s warning: unnecessary qualification 395s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:333:35 395s | 395s 333 | const POINTER_WIDTH_BITS: usize = mem::size_of::() * 8; 395s | ^^^^^^^^^^^^^^^^^^^^^ 395s | 395s help: remove the unnecessary path segments 395s | 395s 333 - const POINTER_WIDTH_BITS: usize = mem::size_of::() * 8; 395s 333 + const POINTER_WIDTH_BITS: usize = size_of::() * 8; 395s | 395s 395s warning: unnecessary qualification 395s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:488:44 395s | 395s 488 | align: match NonZeroUsize::new(mem::align_of::()) { 395s | ^^^^^^^^^^^^^^^^^^ 395s | 395s help: remove the unnecessary path segments 395s | 395s 488 - align: match NonZeroUsize::new(mem::align_of::()) { 395s 488 + align: match NonZeroUsize::new(align_of::()) { 395s | 395s 395s warning: unnecessary qualification 395s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:492:49 395s | 395s 492 | size_info: SizeInfo::Sized { _size: mem::size_of::() }, 395s | ^^^^^^^^^^^^^^^^^ 395s | 395s help: remove the unnecessary path segments 395s | 395s 492 - size_info: SizeInfo::Sized { _size: mem::size_of::() }, 395s 492 + size_info: SizeInfo::Sized { _size: size_of::() }, 395s | 395s 395s warning: unnecessary qualification 395s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:511:44 395s | 395s 511 | align: match NonZeroUsize::new(mem::align_of::()) { 395s | ^^^^^^^^^^^^^^^^^^ 395s | 395s help: remove the unnecessary path segments 395s | 395s 511 - align: match NonZeroUsize::new(mem::align_of::()) { 395s 511 + align: match NonZeroUsize::new(align_of::()) { 395s | 395s 395s warning: unnecessary qualification 395s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:517:29 395s | 395s 517 | _elem_size: mem::size_of::(), 395s | ^^^^^^^^^^^^^^^^^ 395s | 395s help: remove the unnecessary path segments 395s | 395s 517 - _elem_size: mem::size_of::(), 395s 517 + _elem_size: size_of::(), 395s | 395s 395s warning: unnecessary qualification 395s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:1418:19 395s | 395s 1418 | let len = mem::size_of_val(self); 395s | ^^^^^^^^^^^^^^^^ 395s | 395s help: remove the unnecessary path segments 395s | 395s 1418 - let len = mem::size_of_val(self); 395s 1418 + let len = size_of_val(self); 395s | 395s 395s warning: unnecessary qualification 395s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:2714:19 395s | 395s 2714 | let len = mem::size_of_val(self); 395s | ^^^^^^^^^^^^^^^^ 395s | 395s help: remove the unnecessary path segments 395s | 395s 2714 - let len = mem::size_of_val(self); 395s 2714 + let len = size_of_val(self); 395s | 395s 395s warning: unnecessary qualification 395s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:2789:19 395s | 395s 2789 | let len = mem::size_of_val(self); 395s | ^^^^^^^^^^^^^^^^ 395s | 395s help: remove the unnecessary path segments 395s | 395s 2789 - let len = mem::size_of_val(self); 395s 2789 + let len = size_of_val(self); 395s | 395s 395s warning: unnecessary qualification 395s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:2863:27 395s | 395s 2863 | if bytes.len() != mem::size_of_val(self) { 395s | ^^^^^^^^^^^^^^^^ 395s | 395s help: remove the unnecessary path segments 395s | 395s 2863 - if bytes.len() != mem::size_of_val(self) { 395s 2863 + if bytes.len() != size_of_val(self) { 395s | 395s 395s warning: unnecessary qualification 395s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:2920:20 395s | 395s 2920 | let size = mem::size_of_val(self); 395s | ^^^^^^^^^^^^^^^^ 395s | 395s help: remove the unnecessary path segments 395s | 395s 2920 - let size = mem::size_of_val(self); 395s 2920 + let size = size_of_val(self); 395s | 395s 395s warning: unnecessary qualification 395s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:2981:45 395s | 395s 2981 | let start = bytes.len().checked_sub(mem::size_of_val(self))?; 395s | ^^^^^^^^^^^^^^^^ 395s | 395s help: remove the unnecessary path segments 395s | 395s 2981 - let start = bytes.len().checked_sub(mem::size_of_val(self))?; 395s 2981 + let start = bytes.len().checked_sub(size_of_val(self))?; 395s | 395s 395s warning: unnecessary qualification 395s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:4161:27 395s | 395s 4161 | if bytes.len() != mem::size_of::() || !util::aligned_to::<_, T>(bytes.deref()) { 395s | ^^^^^^^^^^^^^^^^^ 395s | 395s help: remove the unnecessary path segments 395s | 395s 4161 - if bytes.len() != mem::size_of::() || !util::aligned_to::<_, T>(bytes.deref()) { 395s 4161 + if bytes.len() != size_of::() || !util::aligned_to::<_, T>(bytes.deref()) { 395s | 395s 395s warning: unnecessary qualification 395s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:4176:26 395s | 395s 4176 | if bytes.len() < mem::size_of::() || !util::aligned_to::<_, T>(bytes.deref()) { 395s | ^^^^^^^^^^^^^^^^^ 395s | 395s help: remove the unnecessary path segments 395s | 395s 4176 - if bytes.len() < mem::size_of::() || !util::aligned_to::<_, T>(bytes.deref()) { 395s 4176 + if bytes.len() < size_of::() || !util::aligned_to::<_, T>(bytes.deref()) { 395s | 395s 395s warning: unnecessary qualification 395s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:4179:46 395s | 395s 4179 | let (bytes, suffix) = bytes.split_at(mem::size_of::()); 395s | ^^^^^^^^^^^^^^^^^ 395s | 395s help: remove the unnecessary path segments 395s | 395s 4179 - let (bytes, suffix) = bytes.split_at(mem::size_of::()); 395s 4179 + let (bytes, suffix) = bytes.split_at(size_of::()); 395s | 395s 395s warning: unnecessary qualification 395s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:4194:46 395s | 395s 4194 | let split_at = bytes_len.checked_sub(mem::size_of::())?; 395s | ^^^^^^^^^^^^^^^^^ 395s | 395s help: remove the unnecessary path segments 395s | 395s 4194 - let split_at = bytes_len.checked_sub(mem::size_of::())?; 395s 4194 + let split_at = bytes_len.checked_sub(size_of::())?; 395s | 395s 395s warning: unnecessary qualification 395s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:4221:26 395s | 395s 4221 | .checked_rem(mem::size_of::()) 395s | ^^^^^^^^^^^^^^^^^ 395s | 395s help: remove the unnecessary path segments 395s | 395s 4221 - .checked_rem(mem::size_of::()) 395s 4221 + .checked_rem(size_of::()) 395s | 395s 395s warning: unnecessary qualification 395s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:4243:34 395s | 395s 4243 | let expected_len = match mem::size_of::().checked_mul(count) { 395s | ^^^^^^^^^^^^^^^^^ 395s | 395s help: remove the unnecessary path segments 395s | 395s 4243 - let expected_len = match mem::size_of::().checked_mul(count) { 395s 4243 + let expected_len = match size_of::().checked_mul(count) { 395s | 395s 395s warning: unnecessary qualification 395s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:4268:34 395s | 395s 4268 | let expected_len = match mem::size_of::().checked_mul(count) { 395s | ^^^^^^^^^^^^^^^^^ 395s | 395s help: remove the unnecessary path segments 395s | 395s 4268 - let expected_len = match mem::size_of::().checked_mul(count) { 395s 4268 + let expected_len = match size_of::().checked_mul(count) { 395s | 395s 395s warning: unnecessary qualification 395s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:4795:25 395s | 395s 4795 | let elem_size = mem::size_of::(); 395s | ^^^^^^^^^^^^^^^^^ 395s | 395s help: remove the unnecessary path segments 395s | 395s 4795 - let elem_size = mem::size_of::(); 395s 4795 + let elem_size = size_of::(); 395s | 395s 395s warning: unnecessary qualification 395s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:4825:25 395s | 395s 4825 | let elem_size = mem::size_of::(); 395s | ^^^^^^^^^^^^^^^^^ 395s | 395s help: remove the unnecessary path segments 395s | 395s 4825 - let elem_size = mem::size_of::(); 395s 4825 + let elem_size = size_of::(); 395s | 395s 395s warning: `zerocopy` (lib) generated 22 warnings (1 duplicate) 395s Compiling concurrent-queue v2.5.0 395s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=concurrent_queue CARGO_MANIFEST_DIR=/tmp/tmp.WgXbjyKfA6/registry/concurrent-queue-2.5.0 CARGO_MANIFEST_PATH=/tmp/tmp.WgXbjyKfA6/registry/concurrent-queue-2.5.0/Cargo.toml CARGO_PKG_AUTHORS='Stjepan Glavina :Taiki Endo :John Nunley ' CARGO_PKG_DESCRIPTION='Concurrent multi-producer multi-consumer queue' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=concurrent-queue CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/smol-rs/concurrent-queue' CARGO_PKG_RUST_VERSION=1.60 CARGO_PKG_VERSION=2.5.0 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=5 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.WgXbjyKfA6/target/debug/deps rustc --crate-name concurrent_queue --edition=2021 /tmp/tmp.WgXbjyKfA6/registry/concurrent-queue-2.5.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "portable-atomic", "std"))' -C metadata=9bda17a56537581e -C extra-filename=-9bda17a56537581e --out-dir /tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.WgXbjyKfA6/target/debug/deps --extern crossbeam_utils=/tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/deps/libcrossbeam_utils-bcaf20eecaf4c1fc.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.WgXbjyKfA6/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 395s warning: unexpected `cfg` condition name: `loom` 395s --> /usr/share/cargo/registry/concurrent-queue-2.5.0/src/bounded.rs:209:23 395s | 395s 209 | #[cfg(loom)] 395s | ^^^^ 395s | 395s = help: expected names are: `clippy`, `debug_assertions`, `doc`, `docsrs`, `doctest`, `feature`, `fmt_debug`, `miri`, `overflow_checks`, `panic`, `proc_macro`, `relocation_model`, `rustfmt`, `sanitize`, `sanitizer_cfi_generalize_pointers`, `sanitizer_cfi_normalize_integers`, `target_abi`, `target_arch`, `target_endian`, `target_env`, `target_family`, `target_feature`, `target_has_atomic`, `target_has_atomic_equal_alignment`, `target_has_atomic_load_store`, `target_os`, `target_pointer_width`, `target_thread_local`, `target_vendor`, `test`, `ub_checks`, `unix`, and `windows` 395s = help: consider using a Cargo feature instead 395s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 395s [lints.rust] 395s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(loom)'] } 395s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(loom)");` to the top of the `build.rs` 395s = note: see for more information about checking conditional configuration 395s = note: `#[warn(unexpected_cfgs)]` on by default 395s 395s warning: unexpected `cfg` condition name: `loom` 395s --> /usr/share/cargo/registry/concurrent-queue-2.5.0/src/bounded.rs:281:23 395s | 395s 281 | #[cfg(loom)] 395s | ^^^^ 395s | 395s = help: consider using a Cargo feature instead 395s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 395s [lints.rust] 395s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(loom)'] } 395s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(loom)");` to the top of the `build.rs` 395s = note: see for more information about checking conditional configuration 395s 395s warning: unexpected `cfg` condition name: `loom` 395s --> /usr/share/cargo/registry/concurrent-queue-2.5.0/src/unbounded.rs:43:15 395s | 395s 43 | #[cfg(not(loom))] 395s | ^^^^ 395s | 395s = help: consider using a Cargo feature instead 395s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 395s [lints.rust] 395s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(loom)'] } 395s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(loom)");` to the top of the `build.rs` 395s = note: see for more information about checking conditional configuration 395s 395s warning: unexpected `cfg` condition name: `loom` 395s --> /usr/share/cargo/registry/concurrent-queue-2.5.0/src/unbounded.rs:49:15 395s | 395s 49 | #[cfg(not(loom))] 395s | ^^^^ 395s | 395s = help: consider using a Cargo feature instead 395s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 395s [lints.rust] 395s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(loom)'] } 395s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(loom)");` to the top of the `build.rs` 395s = note: see for more information about checking conditional configuration 395s 395s warning: unexpected `cfg` condition name: `loom` 395s --> /usr/share/cargo/registry/concurrent-queue-2.5.0/src/unbounded.rs:54:11 395s | 395s 54 | #[cfg(loom)] 395s | ^^^^ 395s | 395s = help: consider using a Cargo feature instead 395s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 395s [lints.rust] 395s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(loom)'] } 395s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(loom)");` to the top of the `build.rs` 395s = note: see for more information about checking conditional configuration 395s 395s warning: unexpected `cfg` condition name: `loom` 395s --> /usr/share/cargo/registry/concurrent-queue-2.5.0/src/unbounded.rs:153:29 395s | 395s 153 | const_if: #[cfg(not(loom))]; 395s | ^^^^ 395s | 395s = help: consider using a Cargo feature instead 395s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 395s [lints.rust] 395s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(loom)'] } 395s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(loom)");` to the top of the `build.rs` 395s = note: see for more information about checking conditional configuration 395s 395s warning: unexpected `cfg` condition name: `loom` 395s --> /usr/share/cargo/registry/concurrent-queue-2.5.0/src/sync.rs:3:44 395s | 395s 3 | #[cfg(all(feature = "portable-atomic", not(loom)))] 395s | ^^^^ 395s | 395s = help: consider using a Cargo feature instead 395s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 395s [lints.rust] 395s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(loom)'] } 395s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(loom)");` to the top of the `build.rs` 395s = note: see for more information about checking conditional configuration 395s 395s warning: unexpected `cfg` condition name: `loom` 395s --> /usr/share/cargo/registry/concurrent-queue-2.5.0/src/sync.rs:15:49 395s | 395s 15 | #[cfg(all(not(feature = "portable-atomic"), not(loom)))] 395s | ^^^^ 395s | 395s = help: consider using a Cargo feature instead 395s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 395s [lints.rust] 395s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(loom)'] } 395s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(loom)");` to the top of the `build.rs` 395s = note: see for more information about checking conditional configuration 395s 395s warning: unexpected `cfg` condition name: `loom` 395s --> /usr/share/cargo/registry/concurrent-queue-2.5.0/src/sync.rs:31:7 395s | 395s 31 | #[cfg(loom)] 395s | ^^^^ 395s | 395s = help: consider using a Cargo feature instead 395s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 395s [lints.rust] 395s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(loom)'] } 395s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(loom)");` to the top of the `build.rs` 395s = note: see for more information about checking conditional configuration 395s 395s warning: unexpected `cfg` condition name: `loom` 395s --> /usr/share/cargo/registry/concurrent-queue-2.5.0/src/sync.rs:57:7 395s | 395s 57 | #[cfg(loom)] 395s | ^^^^ 395s | 395s = help: consider using a Cargo feature instead 395s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 395s [lints.rust] 395s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(loom)'] } 395s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(loom)");` to the top of the `build.rs` 395s = note: see for more information about checking conditional configuration 395s 395s warning: unexpected `cfg` condition name: `loom` 395s --> /usr/share/cargo/registry/concurrent-queue-2.5.0/src/sync.rs:60:11 395s | 395s 60 | #[cfg(not(loom))] 395s | ^^^^ 395s | 395s = help: consider using a Cargo feature instead 395s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 395s [lints.rust] 395s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(loom)'] } 395s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(loom)");` to the top of the `build.rs` 395s = note: see for more information about checking conditional configuration 395s 395s warning: unexpected `cfg` condition name: `loom` 395s --> /usr/share/cargo/registry/concurrent-queue-2.5.0/src/lib.rs:153:29 395s | 395s 153 | const_if: #[cfg(not(loom))]; 395s | ^^^^ 395s | 395s = help: consider using a Cargo feature instead 395s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 395s [lints.rust] 395s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(loom)'] } 395s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(loom)");` to the top of the `build.rs` 395s = note: see for more information about checking conditional configuration 395s 395s warning: unexpected `cfg` condition name: `loom` 395s --> /usr/share/cargo/registry/concurrent-queue-2.5.0/src/lib.rs:633:80 395s | 395s 633 | #[cfg(all(any(target_arch = "x86", target_arch = "x86_64"), not(miri), not(loom)))] 395s | ^^^^ 395s | 395s = help: consider using a Cargo feature instead 395s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 395s [lints.rust] 395s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(loom)'] } 395s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(loom)");` to the top of the `build.rs` 395s = note: see for more information about checking conditional configuration 395s 395s warning: `concurrent-queue` (lib) generated 14 warnings (1 duplicate) 395s Compiling enumflags2_derive v0.7.10 395s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=enumflags2_derive CARGO_MANIFEST_DIR=/tmp/tmp.WgXbjyKfA6/registry/enumflags2_derive-0.7.10 CARGO_MANIFEST_PATH=/tmp/tmp.WgXbjyKfA6/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.WgXbjyKfA6/target/debug/deps rustc --crate-name enumflags2_derive --edition=2018 /tmp/tmp.WgXbjyKfA6/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=588090abb48fd7e4 -C extra-filename=-588090abb48fd7e4 --out-dir /tmp/tmp.WgXbjyKfA6/target/debug/deps -L dependency=/tmp/tmp.WgXbjyKfA6/target/debug/deps --extern proc_macro2=/tmp/tmp.WgXbjyKfA6/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rlib --extern quote=/tmp/tmp.WgXbjyKfA6/target/debug/deps/libquote-dc92c6f25ee0f0c6.rlib --extern syn=/tmp/tmp.WgXbjyKfA6/target/debug/deps/libsyn-0167beed9e699402.rlib --extern proc_macro --cap-lints warn` 396s Compiling getrandom v0.2.15 396s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=getrandom CARGO_MANIFEST_DIR=/tmp/tmp.WgXbjyKfA6/registry/getrandom-0.2.15 CARGO_MANIFEST_PATH=/tmp/tmp.WgXbjyKfA6/registry/getrandom-0.2.15/Cargo.toml CARGO_PKG_AUTHORS='The Rand Project Developers' CARGO_PKG_DESCRIPTION='A small cross-platform library for retrieving random data from system source' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=getrandom CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-random/getrandom' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.2.15 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=15 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.WgXbjyKfA6/target/debug/deps rustc --crate-name getrandom --edition=2018 /tmp/tmp.WgXbjyKfA6/registry/getrandom-0.2.15/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("compiler_builtins", "core", "custom", "linux_disable_fallback", "rdrand", "rustc-dep-of-std", "std", "test-in-browser"))' -C metadata=ed47f71499f7e17d -C extra-filename=-ed47f71499f7e17d --out-dir /tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.WgXbjyKfA6/target/debug/deps --extern cfg_if=/tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/deps/libcfg_if-ff3ff84a061de73f.rmeta --extern libc=/tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/deps/liblibc-cf2521928ac070dc.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.WgXbjyKfA6/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 396s warning: unexpected `cfg` condition value: `js` 396s --> /usr/share/cargo/registry/getrandom-0.2.15/src/lib.rs:334:25 396s | 396s 334 | } else if #[cfg(all(feature = "js", 396s | ^^^^^^^^^^^^^^ 396s | 396s = note: expected values for `feature` are: `compiler_builtins`, `core`, `custom`, `linux_disable_fallback`, `rdrand`, `rustc-dep-of-std`, `std`, and `test-in-browser` 396s = help: consider adding `js` as a feature in `Cargo.toml` 396s = note: see for more information about checking conditional configuration 396s = note: `#[warn(unexpected_cfgs)]` on by default 396s 396s warning: `getrandom` (lib) generated 2 warnings (1 duplicate) 396s Compiling memoffset v0.8.0 396s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.WgXbjyKfA6/registry/memoffset-0.8.0 CARGO_MANIFEST_PATH=/tmp/tmp.WgXbjyKfA6/registry/memoffset-0.8.0/Cargo.toml CARGO_PKG_AUTHORS='Gilad Naaman ' CARGO_PKG_DESCRIPTION='offset_of functionality for Rust structs.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=memoffset CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/Gilnaa/memoffset' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.8.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=8 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.WgXbjyKfA6/target/debug/deps rustc --crate-name build_script_build --edition=2015 /tmp/tmp.WgXbjyKfA6/registry/memoffset-0.8.0/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "unstable_const"))' -C metadata=b637076bbed49000 -C extra-filename=-b637076bbed49000 --out-dir /tmp/tmp.WgXbjyKfA6/target/debug/build/memoffset-b637076bbed49000 -L dependency=/tmp/tmp.WgXbjyKfA6/target/debug/deps --extern autocfg=/tmp/tmp.WgXbjyKfA6/target/debug/deps/libautocfg-9ebcd9511383083c.rlib --cap-lints warn` 396s Compiling slab v0.4.9 396s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.WgXbjyKfA6/registry/slab-0.4.9 CARGO_MANIFEST_PATH=/tmp/tmp.WgXbjyKfA6/registry/slab-0.4.9/Cargo.toml CARGO_PKG_AUTHORS='Carl Lerche ' CARGO_PKG_DESCRIPTION='Pre-allocated storage for a uniform data type' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=slab CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/tokio-rs/slab' CARGO_PKG_RUST_VERSION=1.31 CARGO_PKG_VERSION=0.4.9 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=4 CARGO_PKG_VERSION_PATCH=9 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.WgXbjyKfA6/target/debug/deps rustc --crate-name build_script_build --edition=2018 /tmp/tmp.WgXbjyKfA6/registry/slab-0.4.9/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "serde", "std"))' -C metadata=95cba3e02497b263 -C extra-filename=-95cba3e02497b263 --out-dir /tmp/tmp.WgXbjyKfA6/target/debug/build/slab-95cba3e02497b263 -L dependency=/tmp/tmp.WgXbjyKfA6/target/debug/deps --extern autocfg=/tmp/tmp.WgXbjyKfA6/target/debug/deps/libautocfg-9ebcd9511383083c.rlib --cap-lints warn` 396s Compiling parking v2.2.0 396s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=parking CARGO_MANIFEST_DIR=/tmp/tmp.WgXbjyKfA6/registry/parking-2.2.0 CARGO_MANIFEST_PATH=/tmp/tmp.WgXbjyKfA6/registry/parking-2.2.0/Cargo.toml CARGO_PKG_AUTHORS='Stjepan Glavina :The Rust Project Developers' CARGO_PKG_DESCRIPTION='Thread parking and unparking' CARGO_PKG_HOMEPAGE='https://github.com/smol-rs/parking' CARGO_PKG_LICENSE='Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=parking CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/smol-rs/parking' CARGO_PKG_RUST_VERSION=1.51 CARGO_PKG_VERSION=2.2.0 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.WgXbjyKfA6/target/debug/deps rustc --crate-name parking --edition=2018 /tmp/tmp.WgXbjyKfA6/registry/parking-2.2.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=0a38dc17b1bc33e2 -C extra-filename=-0a38dc17b1bc33e2 --out-dir /tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.WgXbjyKfA6/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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.WgXbjyKfA6/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 397s warning: unexpected `cfg` condition name: `loom` 397s --> /usr/share/cargo/registry/parking-2.2.0/src/lib.rs:41:15 397s | 397s 41 | #[cfg(not(all(loom, feature = "loom")))] 397s | ^^^^ 397s | 397s = help: expected names are: `clippy`, `debug_assertions`, `doc`, `docsrs`, `doctest`, `feature`, `fmt_debug`, `miri`, `overflow_checks`, `panic`, `proc_macro`, `relocation_model`, `rustfmt`, `sanitize`, `sanitizer_cfi_generalize_pointers`, `sanitizer_cfi_normalize_integers`, `target_abi`, `target_arch`, `target_endian`, `target_env`, `target_family`, `target_feature`, `target_has_atomic`, `target_has_atomic_equal_alignment`, `target_has_atomic_load_store`, `target_os`, `target_pointer_width`, `target_thread_local`, `target_vendor`, `test`, `ub_checks`, `unix`, and `windows` 397s = help: consider using a Cargo feature instead 397s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 397s [lints.rust] 397s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(loom)'] } 397s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(loom)");` to the top of the `build.rs` 397s = note: see for more information about checking conditional configuration 397s = note: `#[warn(unexpected_cfgs)]` on by default 397s 397s warning: unexpected `cfg` condition value: `loom` 397s --> /usr/share/cargo/registry/parking-2.2.0/src/lib.rs:41:21 397s | 397s 41 | #[cfg(not(all(loom, feature = "loom")))] 397s | ^^^^^^^^^^^^^^^^ help: remove the condition 397s | 397s = note: no expected values for `feature` 397s = help: consider adding `loom` as a feature in `Cargo.toml` 397s = note: see for more information about checking conditional configuration 397s 397s warning: unexpected `cfg` condition name: `loom` 397s --> /usr/share/cargo/registry/parking-2.2.0/src/lib.rs:44:11 397s | 397s 44 | #[cfg(all(loom, feature = "loom"))] 397s | ^^^^ 397s | 397s = help: consider using a Cargo feature instead 397s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 397s [lints.rust] 397s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(loom)'] } 397s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(loom)");` to the top of the `build.rs` 397s = note: see for more information about checking conditional configuration 397s 397s warning: unexpected `cfg` condition value: `loom` 397s --> /usr/share/cargo/registry/parking-2.2.0/src/lib.rs:44:17 397s | 397s 44 | #[cfg(all(loom, feature = "loom"))] 397s | ^^^^^^^^^^^^^^^^ help: remove the condition 397s | 397s = note: no expected values for `feature` 397s = help: consider adding `loom` as a feature in `Cargo.toml` 397s = note: see for more information about checking conditional configuration 397s 397s warning: unexpected `cfg` condition name: `loom` 397s --> /usr/share/cargo/registry/parking-2.2.0/src/lib.rs:54:15 397s | 397s 54 | #[cfg(not(all(loom, feature = "loom")))] 397s | ^^^^ 397s | 397s = help: consider using a Cargo feature instead 397s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 397s [lints.rust] 397s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(loom)'] } 397s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(loom)");` to the top of the `build.rs` 397s = note: see for more information about checking conditional configuration 397s 397s warning: unexpected `cfg` condition value: `loom` 397s --> /usr/share/cargo/registry/parking-2.2.0/src/lib.rs:54:21 397s | 397s 54 | #[cfg(not(all(loom, feature = "loom")))] 397s | ^^^^^^^^^^^^^^^^ help: remove the condition 397s | 397s = note: no expected values for `feature` 397s = help: consider adding `loom` as a feature in `Cargo.toml` 397s = note: see for more information about checking conditional configuration 397s 397s warning: unexpected `cfg` condition name: `loom` 397s --> /usr/share/cargo/registry/parking-2.2.0/src/lib.rs:140:15 397s | 397s 140 | #[cfg(not(loom))] 397s | ^^^^ 397s | 397s = help: consider using a Cargo feature instead 397s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 397s [lints.rust] 397s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(loom)'] } 397s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(loom)");` to the top of the `build.rs` 397s = note: see for more information about checking conditional configuration 397s 397s warning: unexpected `cfg` condition name: `loom` 397s --> /usr/share/cargo/registry/parking-2.2.0/src/lib.rs:160:15 397s | 397s 160 | #[cfg(not(loom))] 397s | ^^^^ 397s | 397s = help: consider using a Cargo feature instead 397s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 397s [lints.rust] 397s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(loom)'] } 397s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(loom)");` to the top of the `build.rs` 397s = note: see for more information about checking conditional configuration 397s 397s warning: unexpected `cfg` condition name: `loom` 397s --> /usr/share/cargo/registry/parking-2.2.0/src/lib.rs:379:27 397s | 397s 379 | #[cfg(not(loom))] 397s | ^^^^ 397s | 397s = help: consider using a Cargo feature instead 397s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 397s [lints.rust] 397s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(loom)'] } 397s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(loom)");` to the top of the `build.rs` 397s = note: see for more information about checking conditional configuration 397s 397s warning: unexpected `cfg` condition name: `loom` 397s --> /usr/share/cargo/registry/parking-2.2.0/src/lib.rs:393:23 397s | 397s 393 | #[cfg(loom)] 397s | ^^^^ 397s | 397s = help: consider using a Cargo feature instead 397s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 397s [lints.rust] 397s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(loom)'] } 397s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(loom)");` to the top of the `build.rs` 397s = note: see for more information about checking conditional configuration 397s 397s warning: `parking` (lib) generated 11 warnings (1 duplicate) 397s Compiling cfg_aliases v0.2.1 397s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=cfg_aliases CARGO_MANIFEST_DIR=/tmp/tmp.WgXbjyKfA6/registry/cfg_aliases-0.2.1 CARGO_MANIFEST_PATH=/tmp/tmp.WgXbjyKfA6/registry/cfg_aliases-0.2.1/Cargo.toml CARGO_PKG_AUTHORS='Zicklag ' CARGO_PKG_DESCRIPTION='A tiny utility to help save you a lot of effort with long winded `#[cfg()]` checks.' CARGO_PKG_HOMEPAGE='https://github.com/katharostech/cfg_aliases' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=cfg_aliases CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/katharostech/cfg_aliases' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.2.1 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.WgXbjyKfA6/target/debug/deps rustc --crate-name cfg_aliases --edition=2018 /tmp/tmp.WgXbjyKfA6/registry/cfg_aliases-0.2.1/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 '--deny=clippy::str_to_string' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=8701cbe9ff8ee006 -C extra-filename=-8701cbe9ff8ee006 --out-dir /tmp/tmp.WgXbjyKfA6/target/debug/deps -L dependency=/tmp/tmp.WgXbjyKfA6/target/debug/deps --cap-lints warn` 397s Compiling nix v0.29.0 397s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.WgXbjyKfA6/registry/nix-0.29.0 CARGO_MANIFEST_PATH=/tmp/tmp.WgXbjyKfA6/registry/nix-0.29.0/Cargo.toml CARGO_PKG_AUTHORS='The nix-rust Project Developers' CARGO_PKG_DESCRIPTION='Rust friendly bindings to *nix APIs' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=nix CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/nix-rust/nix' CARGO_PKG_RUST_VERSION=1.69 CARGO_PKG_VERSION=0.29.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=29 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.WgXbjyKfA6/target/debug/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.WgXbjyKfA6/registry/nix-0.29.0/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="feature"' --cfg 'feature="memoffset"' --cfg 'feature="socket"' --cfg 'feature="uio"' --cfg 'feature="user"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("acct", "aio", "default", "dir", "env", "event", "fanotify", "feature", "fs", "hostname", "inotify", "ioctl", "kmod", "memoffset", "mman", "mount", "mqueue", "net", "personality", "pin-utils", "poll", "process", "pthread", "ptrace", "quota", "reboot", "resource", "sched", "signal", "socket", "term", "time", "ucontext", "uio", "user", "zerocopy"))' -C metadata=9cc97a3a2fcb749b -C extra-filename=-9cc97a3a2fcb749b --out-dir /tmp/tmp.WgXbjyKfA6/target/debug/build/nix-9cc97a3a2fcb749b -L dependency=/tmp/tmp.WgXbjyKfA6/target/debug/deps --extern cfg_aliases=/tmp/tmp.WgXbjyKfA6/target/debug/deps/libcfg_aliases-8701cbe9ff8ee006.rlib --cap-lints warn` 397s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=serde CARGO_MANIFEST_DIR=/tmp/tmp.WgXbjyKfA6/registry/serde-1.0.217 CARGO_MANIFEST_PATH=/tmp/tmp.WgXbjyKfA6/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.WgXbjyKfA6/target/debug/deps OUT_DIR=/tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/build/serde-c08ea6899e623ec6/out rustc --crate-name serde --edition=2018 /tmp/tmp.WgXbjyKfA6/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=0e7dff716e38da0d -C extra-filename=-0e7dff716e38da0d --out-dir /tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.WgXbjyKfA6/target/debug/deps --extern serde_derive=/tmp/tmp.WgXbjyKfA6/target/debug/deps/libserde_derive-85fb19fec9ccb150.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.WgXbjyKfA6/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)'` 397s Compiling event-listener v5.4.0 397s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=event_listener CARGO_MANIFEST_DIR=/tmp/tmp.WgXbjyKfA6/registry/event-listener-5.4.0 CARGO_MANIFEST_PATH=/tmp/tmp.WgXbjyKfA6/registry/event-listener-5.4.0/Cargo.toml CARGO_PKG_AUTHORS='Stjepan Glavina :John Nunley ' CARGO_PKG_DESCRIPTION='Notify async tasks or threads' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=event-listener CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/smol-rs/event-listener' CARGO_PKG_RUST_VERSION=1.60 CARGO_PKG_VERSION=5.4.0 CARGO_PKG_VERSION_MAJOR=5 CARGO_PKG_VERSION_MINOR=4 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.WgXbjyKfA6/target/debug/deps rustc --crate-name event_listener --edition=2021 /tmp/tmp.WgXbjyKfA6/registry/event-listener-5.4.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --warn=unexpected_cfgs --check-cfg 'cfg(loom)' --cfg 'feature="default"' --cfg 'feature="parking"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("critical-section", "default", "parking", "std"))' -C metadata=93bdad7496d4853a -C extra-filename=-93bdad7496d4853a --out-dir /tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.WgXbjyKfA6/target/debug/deps --extern concurrent_queue=/tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/deps/libconcurrent_queue-9bda17a56537581e.rmeta --extern parking=/tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/deps/libparking-0a38dc17b1bc33e2.rmeta --extern pin_project_lite=/tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/deps/libpin_project_lite-5dc815523e98d889.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.WgXbjyKfA6/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 397s warning: unexpected `cfg` condition value: `portable-atomic` 397s --> /usr/share/cargo/registry/event-listener-5.4.0/src/lib.rs:1362:15 397s | 397s 1362 | #[cfg(not(feature = "portable-atomic"))] 397s | ^^^^^^^^^^^^^^^^^^^^^^^^^^^ 397s | 397s = note: expected values for `feature` are: `critical-section`, `default`, `parking`, and `std` 397s = help: consider adding `portable-atomic` as a feature in `Cargo.toml` 397s = note: see for more information about checking conditional configuration 397s = note: requested on the command line with `-W unexpected-cfgs` 397s 397s warning: unexpected `cfg` condition value: `portable-atomic` 397s --> /usr/share/cargo/registry/event-listener-5.4.0/src/lib.rs:1364:15 397s | 397s 1364 | #[cfg(not(feature = "portable-atomic"))] 397s | ^^^^^^^^^^^^^^^^^^^^^^^^^^^ 397s | 397s = note: expected values for `feature` are: `critical-section`, `default`, `parking`, and `std` 397s = help: consider adding `portable-atomic` as a feature in `Cargo.toml` 397s = note: see for more information about checking conditional configuration 397s 397s warning: unexpected `cfg` condition value: `portable-atomic` 397s --> /usr/share/cargo/registry/event-listener-5.4.0/src/lib.rs:1367:11 397s | 397s 1367 | #[cfg(feature = "portable-atomic")] 397s | ^^^^^^^^^^^^^^^^^^^^^^^^^^^ 397s | 397s = note: expected values for `feature` are: `critical-section`, `default`, `parking`, and `std` 397s = help: consider adding `portable-atomic` as a feature in `Cargo.toml` 397s = note: see for more information about checking conditional configuration 397s 397s warning: unexpected `cfg` condition value: `portable-atomic` 397s --> /usr/share/cargo/registry/event-listener-5.4.0/src/lib.rs:1369:11 397s | 397s 1369 | #[cfg(feature = "portable-atomic")] 397s | ^^^^^^^^^^^^^^^^^^^^^^^^^^^ 397s | 397s = note: expected values for `feature` are: `critical-section`, `default`, `parking`, and `std` 397s = help: consider adding `portable-atomic` as a feature in `Cargo.toml` 397s = note: see for more information about checking conditional configuration 397s 397s warning: `event-listener` (lib) generated 5 warnings (1 duplicate) 397s 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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0--remap-path-prefix/tmp/tmp.WgXbjyKfA6/registry=/usr/share/cargo/registry-Ctarget-feature=+backchain' CARGO_FEATURE_DEFAULT=1 CARGO_FEATURE_STD=1 CARGO_MANIFEST_DIR=/tmp/tmp.WgXbjyKfA6/registry/slab-0.4.9 CARGO_MANIFEST_PATH=/tmp/tmp.WgXbjyKfA6/registry/slab-0.4.9/Cargo.toml CARGO_PKG_AUTHORS='Carl Lerche ' CARGO_PKG_DESCRIPTION='Pre-allocated storage for a uniform data type' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=slab CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/tokio-rs/slab' CARGO_PKG_RUST_VERSION=1.31 CARGO_PKG_VERSION=0.4.9 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=4 CARGO_PKG_VERSION_PATCH=9 CARGO_PKG_VERSION_PRE='' DEBUG=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.WgXbjyKfA6/target/debug/deps:/tmp/tmp.WgXbjyKfA6/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/build/slab-2c89ee66d35953a1/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.WgXbjyKfA6/target/debug/build/slab-95cba3e02497b263/build-script-build` 397s [slab 0.4.9] warning: unstable feature specified for `-Ctarget-feature`: `backchain` 397s [slab 0.4.9] | 397s [slab 0.4.9] = note: this feature is not stably supported; its behavior can change in the future 397s [slab 0.4.9] 397s [slab 0.4.9] warning: 1 warning emitted 397s [slab 0.4.9] 397s 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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0--remap-path-prefix/tmp/tmp.WgXbjyKfA6/registry=/usr/share/cargo/registry-Ctarget-feature=+backchain' CARGO_FEATURE_DEFAULT=1 CARGO_MANIFEST_DIR=/tmp/tmp.WgXbjyKfA6/registry/memoffset-0.8.0 CARGO_MANIFEST_PATH=/tmp/tmp.WgXbjyKfA6/registry/memoffset-0.8.0/Cargo.toml CARGO_PKG_AUTHORS='Gilad Naaman ' CARGO_PKG_DESCRIPTION='offset_of functionality for Rust structs.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=memoffset CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/Gilnaa/memoffset' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.8.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=8 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' DEBUG=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.WgXbjyKfA6/target/debug/deps:/tmp/tmp.WgXbjyKfA6/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/build/memoffset-b32fed70cf81e31f/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.WgXbjyKfA6/target/debug/build/memoffset-b637076bbed49000/build-script-build` 397s [memoffset 0.8.0] warning: unstable feature specified for `-Ctarget-feature`: `backchain` 397s [memoffset 0.8.0] | 397s [memoffset 0.8.0] = note: this feature is not stably supported; its behavior can change in the future 397s [memoffset 0.8.0] 397s [memoffset 0.8.0] warning: 1 warning emitted 397s [memoffset 0.8.0] 397s [memoffset 0.8.0] cargo:rustc-cfg=tuple_ty 397s [memoffset 0.8.0] cargo:rustc-cfg=allow_clippy 397s [memoffset 0.8.0] cargo:rustc-cfg=maybe_uninit 397s [memoffset 0.8.0] cargo:rustc-cfg=doctests 397s [memoffset 0.8.0] cargo:rustc-cfg=raw_ref_macros 397s [memoffset 0.8.0] cargo:rustc-cfg=stable_const 397s Compiling rand_core v0.6.4 397s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=rand_core CARGO_MANIFEST_DIR=/tmp/tmp.WgXbjyKfA6/registry/rand_core-0.6.4 CARGO_MANIFEST_PATH=/tmp/tmp.WgXbjyKfA6/registry/rand_core-0.6.4/Cargo.toml CARGO_PKG_AUTHORS='The Rand Project Developers:The Rust Project Developers' CARGO_PKG_DESCRIPTION='Core random number generator traits and tools for implementation. 397s ' CARGO_PKG_HOMEPAGE='https://rust-random.github.io/book' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=rand_core CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-random/rand' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.6.4 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=6 CARGO_PKG_VERSION_PATCH=4 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.WgXbjyKfA6/target/debug/deps rustc --crate-name rand_core --edition=2018 /tmp/tmp.WgXbjyKfA6/registry/rand_core-0.6.4/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="alloc"' --cfg 'feature="getrandom"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "getrandom", "serde", "serde1", "std"))' -C metadata=3c7246ca3f419bbc -C extra-filename=-3c7246ca3f419bbc --out-dir /tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.WgXbjyKfA6/target/debug/deps --extern getrandom=/tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/deps/libgetrandom-ed47f71499f7e17d.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.WgXbjyKfA6/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 397s warning: unexpected `cfg` condition name: `doc_cfg` 397s --> /usr/share/cargo/registry/rand_core-0.6.4/src/lib.rs:38:13 397s | 397s 38 | #![cfg_attr(doc_cfg, feature(doc_cfg))] 397s | ^^^^^^^ 397s | 397s = help: expected names are: `clippy`, `debug_assertions`, `doc`, `docsrs`, `doctest`, `feature`, `fmt_debug`, `miri`, `overflow_checks`, `panic`, `proc_macro`, `relocation_model`, `rustfmt`, `sanitize`, `sanitizer_cfi_generalize_pointers`, `sanitizer_cfi_normalize_integers`, `target_abi`, `target_arch`, `target_endian`, `target_env`, `target_family`, `target_feature`, `target_has_atomic`, `target_has_atomic_equal_alignment`, `target_has_atomic_load_store`, `target_os`, `target_pointer_width`, `target_thread_local`, `target_vendor`, `test`, `ub_checks`, `unix`, and `windows` 397s = help: consider using a Cargo feature instead 397s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 397s [lints.rust] 397s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 397s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 397s = note: see for more information about checking conditional configuration 397s = note: `#[warn(unexpected_cfgs)]` on by default 397s 397s warning: unexpected `cfg` condition name: `doc_cfg` 397s --> /usr/share/cargo/registry/rand_core-0.6.4/src/error.rs:50:16 397s | 397s 50 | #[cfg_attr(doc_cfg, doc(cfg(feature = "std")))] 397s | ^^^^^^^ 397s | 397s = help: consider using a Cargo feature instead 397s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 397s [lints.rust] 397s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 397s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 397s = note: see for more information about checking conditional configuration 397s 397s warning: unexpected `cfg` condition name: `doc_cfg` 397s --> /usr/share/cargo/registry/rand_core-0.6.4/src/error.rs:64:16 397s | 397s 64 | #[cfg_attr(doc_cfg, doc(cfg(feature = "std")))] 397s | ^^^^^^^ 397s | 397s = help: consider using a Cargo feature instead 397s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 397s [lints.rust] 397s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 397s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 397s = note: see for more information about checking conditional configuration 397s 397s warning: unexpected `cfg` condition name: `doc_cfg` 397s --> /usr/share/cargo/registry/rand_core-0.6.4/src/error.rs:75:16 397s | 397s 75 | #[cfg_attr(doc_cfg, doc(cfg(feature = "std")))] 397s | ^^^^^^^ 397s | 397s = help: consider using a Cargo feature instead 397s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 397s [lints.rust] 397s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 397s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 397s = note: see for more information about checking conditional configuration 397s 397s warning: unexpected `cfg` condition name: `doc_cfg` 397s --> /usr/share/cargo/registry/rand_core-0.6.4/src/os.rs:46:12 397s | 397s 46 | #[cfg_attr(doc_cfg, doc(cfg(feature = "getrandom")))] 397s | ^^^^^^^ 397s | 397s = help: consider using a Cargo feature instead 397s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 397s [lints.rust] 397s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 397s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 397s = note: see for more information about checking conditional configuration 397s 397s warning: unexpected `cfg` condition name: `doc_cfg` 397s --> /usr/share/cargo/registry/rand_core-0.6.4/src/lib.rs:411:16 397s | 397s 411 | #[cfg_attr(doc_cfg, doc(cfg(feature = "getrandom")))] 397s | ^^^^^^^ 397s | 397s = help: consider using a Cargo feature instead 397s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 397s [lints.rust] 397s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 397s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 397s = note: see for more information about checking conditional configuration 397s 398s warning: `rand_core` (lib) generated 7 warnings (1 duplicate) 398s Compiling ppv-lite86 v0.2.20 398s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=ppv_lite86 CARGO_MANIFEST_DIR=/tmp/tmp.WgXbjyKfA6/registry/ppv-lite86-0.2.20 CARGO_MANIFEST_PATH=/tmp/tmp.WgXbjyKfA6/registry/ppv-lite86-0.2.20/Cargo.toml CARGO_PKG_AUTHORS='The CryptoCorrosion Contributors' CARGO_PKG_DESCRIPTION='Implementation of the crypto-simd API for x86' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=ppv-lite86 CARGO_PKG_README='' CARGO_PKG_REPOSITORY='https://github.com/cryptocorrosion/cryptocorrosion' CARGO_PKG_RUST_VERSION=1.61 CARGO_PKG_VERSION=0.2.20 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=20 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.WgXbjyKfA6/target/debug/deps rustc --crate-name ppv_lite86 --edition=2021 /tmp/tmp.WgXbjyKfA6/registry/ppv-lite86-0.2.20/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="simd"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "no_simd", "simd", "std"))' -C metadata=57e5b566e2a71c09 -C extra-filename=-57e5b566e2a71c09 --out-dir /tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.WgXbjyKfA6/target/debug/deps --extern zerocopy=/tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/deps/libzerocopy-777d8c6c10ffcfc6.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.WgXbjyKfA6/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 398s warning: `ppv-lite86` (lib) generated 1 warning (1 duplicate) 398s Compiling zvariant_derive v4.2.0 398s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=zvariant_derive CARGO_MANIFEST_DIR=/tmp/tmp.WgXbjyKfA6/registry/zvariant_derive-4.2.0 CARGO_MANIFEST_PATH=/tmp/tmp.WgXbjyKfA6/registry/zvariant_derive-4.2.0/Cargo.toml CARGO_PKG_AUTHORS='Zeeshan Ali Khan ' CARGO_PKG_DESCRIPTION='D-Bus & GVariant encoding & decoding' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=zvariant_derive CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dbus2/zbus/' CARGO_PKG_RUST_VERSION=1.75 CARGO_PKG_VERSION=4.2.0 CARGO_PKG_VERSION_MAJOR=4 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.WgXbjyKfA6/target/debug/deps rustc --crate-name zvariant_derive --edition=2021 /tmp/tmp.WgXbjyKfA6/registry/zvariant_derive-4.2.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type proc-macro --emit=dep-info,link -C prefer-dynamic -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=307afde79edbb6d8 -C extra-filename=-307afde79edbb6d8 --out-dir /tmp/tmp.WgXbjyKfA6/target/debug/deps -L dependency=/tmp/tmp.WgXbjyKfA6/target/debug/deps --extern proc_macro_crate=/tmp/tmp.WgXbjyKfA6/target/debug/deps/libproc_macro_crate-900b46bff7d8f3e2.rlib --extern proc_macro2=/tmp/tmp.WgXbjyKfA6/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rlib --extern quote=/tmp/tmp.WgXbjyKfA6/target/debug/deps/libquote-dc92c6f25ee0f0c6.rlib --extern syn=/tmp/tmp.WgXbjyKfA6/target/debug/deps/libsyn-0167beed9e699402.rlib --extern zvariant_utils=/tmp/tmp.WgXbjyKfA6/target/debug/deps/libzvariant_utils-555d90bad4acf190.rlib --extern proc_macro --cap-lints warn` 399s Compiling crypto-common v0.1.6 399s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=crypto_common CARGO_MANIFEST_DIR=/tmp/tmp.WgXbjyKfA6/registry/crypto-common-0.1.6 CARGO_MANIFEST_PATH=/tmp/tmp.WgXbjyKfA6/registry/crypto-common-0.1.6/Cargo.toml CARGO_PKG_AUTHORS='RustCrypto Developers' CARGO_PKG_DESCRIPTION='Common cryptographic traits' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=crypto-common CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/RustCrypto/traits' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.1.6 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=6 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.WgXbjyKfA6/target/debug/deps rustc --crate-name crypto_common --edition=2018 /tmp/tmp.WgXbjyKfA6/registry/crypto-common-0.1.6/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("getrandom", "rand_core", "std"))' -C metadata=77cd648c700afbb2 -C extra-filename=-77cd648c700afbb2 --out-dir /tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.WgXbjyKfA6/target/debug/deps --extern generic_array=/tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/deps/libgeneric_array-d02d059964c7aee0.rmeta --extern typenum=/tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/deps/libtypenum-c66037e8139405ff.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.WgXbjyKfA6/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 399s warning: `crypto-common` (lib) generated 1 warning (1 duplicate) 399s Compiling enumflags2 v0.7.10 399s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=enumflags2 CARGO_MANIFEST_DIR=/tmp/tmp.WgXbjyKfA6/registry/enumflags2-0.7.10 CARGO_MANIFEST_PATH=/tmp/tmp.WgXbjyKfA6/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.WgXbjyKfA6/target/debug/deps rustc --crate-name enumflags2 --edition=2018 /tmp/tmp.WgXbjyKfA6/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=2867d32c4b4f39e8 -C extra-filename=-2867d32c4b4f39e8 --out-dir /tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.WgXbjyKfA6/target/debug/deps --extern enumflags2_derive=/tmp/tmp.WgXbjyKfA6/target/debug/deps/libenumflags2_derive-588090abb48fd7e4.so --extern serde=/tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/deps/libserde-0e7dff716e38da0d.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.WgXbjyKfA6/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 399s warning: `serde` (lib) generated 1 warning (1 duplicate) 399s Compiling block-buffer v0.10.2 399s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=block_buffer CARGO_MANIFEST_DIR=/tmp/tmp.WgXbjyKfA6/registry/block-buffer-0.10.2 CARGO_MANIFEST_PATH=/tmp/tmp.WgXbjyKfA6/registry/block-buffer-0.10.2/Cargo.toml CARGO_PKG_AUTHORS='RustCrypto Developers' CARGO_PKG_DESCRIPTION='Buffer type for block processing of data' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=block-buffer CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/RustCrypto/utils' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.10.2 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=10 CARGO_PKG_VERSION_PATCH=2 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.WgXbjyKfA6/target/debug/deps rustc --crate-name block_buffer --edition=2018 /tmp/tmp.WgXbjyKfA6/registry/block-buffer-0.10.2/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=4cd3db619b1d8e9e -C extra-filename=-4cd3db619b1d8e9e --out-dir /tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.WgXbjyKfA6/target/debug/deps --extern generic_array=/tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/deps/libgeneric_array-d02d059964c7aee0.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.WgXbjyKfA6/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 399s warning: `enumflags2` (lib) generated 1 warning (1 duplicate) 399s Compiling once_cell v1.20.2 399s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=once_cell CARGO_MANIFEST_DIR=/tmp/tmp.WgXbjyKfA6/registry/once_cell-1.20.2 CARGO_MANIFEST_PATH=/tmp/tmp.WgXbjyKfA6/registry/once_cell-1.20.2/Cargo.toml CARGO_PKG_AUTHORS='Aleksey Kladov ' CARGO_PKG_DESCRIPTION='Single assignment cells and lazy values.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=once_cell CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/matklad/once_cell' CARGO_PKG_RUST_VERSION=1.60 CARGO_PKG_VERSION=1.20.2 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=20 CARGO_PKG_VERSION_PATCH=2 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.WgXbjyKfA6/target/debug/deps rustc --crate-name once_cell --edition=2021 /tmp/tmp.WgXbjyKfA6/registry/once_cell-1.20.2/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="alloc"' --cfg 'feature="default"' --cfg 'feature="race"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "atomic-polyfill", "critical-section", "default", "parking_lot", "portable-atomic", "race", "std", "unstable"))' -C metadata=f9b984852945e4ac -C extra-filename=-f9b984852945e4ac --out-dir /tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.WgXbjyKfA6/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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.WgXbjyKfA6/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 399s warning: `block-buffer` (lib) generated 1 warning (1 duplicate) 399s Compiling static_assertions v1.1.0 399s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=static_assertions CARGO_MANIFEST_DIR=/tmp/tmp.WgXbjyKfA6/registry/static_assertions-1.1.0 CARGO_MANIFEST_PATH=/tmp/tmp.WgXbjyKfA6/registry/static_assertions-1.1.0/Cargo.toml CARGO_PKG_AUTHORS='Nikolai Vazquez' CARGO_PKG_DESCRIPTION='Compile-time assertions to ensure that invariants are met.' CARGO_PKG_HOMEPAGE='https://github.com/nvzqz/static-assertions-rs' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=static_assertions CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/nvzqz/static-assertions-rs' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=1.1.0 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.WgXbjyKfA6/target/debug/deps rustc --crate-name static_assertions --edition=2015 /tmp/tmp.WgXbjyKfA6/registry/static_assertions-1.1.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("nightly"))' -C metadata=18df01cc327facaa -C extra-filename=-18df01cc327facaa --out-dir /tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.WgXbjyKfA6/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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.WgXbjyKfA6/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 399s warning: `static_assertions` (lib) generated 1 warning (1 duplicate) 399s Compiling endi v1.1.0 399s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=endi CARGO_MANIFEST_DIR=/tmp/tmp.WgXbjyKfA6/registry/endi-1.1.0 CARGO_MANIFEST_PATH=/tmp/tmp.WgXbjyKfA6/registry/endi-1.1.0/Cargo.toml CARGO_PKG_AUTHORS='Zeeshan Ali Khan ' CARGO_PKG_DESCRIPTION='A simple endian-handling library' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=endi CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/zeenix/endi' CARGO_PKG_RUST_VERSION=1.60 CARGO_PKG_VERSION=1.1.0 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.WgXbjyKfA6/target/debug/deps rustc --crate-name endi --edition=2021 /tmp/tmp.WgXbjyKfA6/registry/endi-1.1.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "std"))' -C metadata=6479300693b4fccf -C extra-filename=-6479300693b4fccf --out-dir /tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.WgXbjyKfA6/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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.WgXbjyKfA6/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 399s warning: `once_cell` (lib) generated 1 warning (1 duplicate) 399s Compiling tracing-core v0.1.32 399s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=tracing_core CARGO_MANIFEST_DIR=/tmp/tmp.WgXbjyKfA6/registry/tracing-core-0.1.32 CARGO_MANIFEST_PATH=/tmp/tmp.WgXbjyKfA6/registry/tracing-core-0.1.32/Cargo.toml CARGO_PKG_AUTHORS='Tokio Contributors ' CARGO_PKG_DESCRIPTION='Core primitives for application-level tracing. 399s ' CARGO_PKG_HOMEPAGE='https://tokio.rs' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=tracing-core CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/tokio-rs/tracing' CARGO_PKG_RUST_VERSION=1.56.0 CARGO_PKG_VERSION=0.1.32 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=32 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.WgXbjyKfA6/target/debug/deps rustc --crate-name tracing_core --edition=2018 /tmp/tmp.WgXbjyKfA6/registry/tracing-core-0.1.32/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="once_cell"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "once_cell", "std", "valuable"))' -C metadata=4c8af7279fad1469 -C extra-filename=-4c8af7279fad1469 --out-dir /tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.WgXbjyKfA6/target/debug/deps --extern once_cell=/tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/deps/libonce_cell-f9b984852945e4ac.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.WgXbjyKfA6/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 399s warning: `endi` (lib) generated 1 warning (1 duplicate) 399s Compiling zvariant v4.2.0 399s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=zvariant CARGO_MANIFEST_DIR=/tmp/tmp.WgXbjyKfA6/registry/zvariant-4.2.0 CARGO_MANIFEST_PATH=/tmp/tmp.WgXbjyKfA6/registry/zvariant-4.2.0/Cargo.toml CARGO_PKG_AUTHORS='Zeeshan Ali Khan ' CARGO_PKG_DESCRIPTION='D-Bus & GVariant encoding & decoding' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=zvariant CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dbus2/zbus/' CARGO_PKG_RUST_VERSION=1.75 CARGO_PKG_VERSION=4.2.0 CARGO_PKG_VERSION_MAJOR=4 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.WgXbjyKfA6/target/debug/deps rustc --crate-name zvariant --edition=2021 /tmp/tmp.WgXbjyKfA6/registry/zvariant-4.2.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="enumflags2"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("arrayvec", "chrono", "default", "enumflags2", "gvariant", "heapless", "option-as-array", "ostree-tests", "serde_bytes", "time", "url", "uuid"))' -C metadata=f63ab59735f855c5 -C extra-filename=-f63ab59735f855c5 --out-dir /tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.WgXbjyKfA6/target/debug/deps --extern endi=/tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/deps/libendi-6479300693b4fccf.rmeta --extern enumflags2=/tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/deps/libenumflags2-2867d32c4b4f39e8.rmeta --extern serde=/tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/deps/libserde-0e7dff716e38da0d.rmeta --extern static_assertions=/tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/deps/libstatic_assertions-18df01cc327facaa.rmeta --extern zvariant_derive=/tmp/tmp.WgXbjyKfA6/target/debug/deps/libzvariant_derive-307afde79edbb6d8.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.WgXbjyKfA6/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 399s warning: lint `private_in_public` has been removed: replaced with another group of lints, see RFC for more information 399s --> /usr/share/cargo/registry/tracing-core-0.1.32/src/lib.rs:138:5 399s | 399s 138 | private_in_public, 399s | ^^^^^^^^^^^^^^^^^ 399s | 399s = note: `#[warn(renamed_and_removed_lints)]` on by default 399s 399s warning: unexpected `cfg` condition value: `alloc` 399s --> /usr/share/cargo/registry/tracing-core-0.1.32/src/dispatcher.rs:147:7 399s | 399s 147 | #[cfg(feature = "alloc")] 399s | ^^^^^^^^^^^^^^^^^ 399s | 399s = note: expected values for `feature` are: `default`, `once_cell`, `std`, and `valuable` 399s = help: consider adding `alloc` as a feature in `Cargo.toml` 399s = note: see for more information about checking conditional configuration 399s = note: `#[warn(unexpected_cfgs)]` on by default 399s 399s warning: unexpected `cfg` condition value: `alloc` 399s --> /usr/share/cargo/registry/tracing-core-0.1.32/src/dispatcher.rs:150:7 399s | 399s 150 | #[cfg(feature = "alloc")] 399s | ^^^^^^^^^^^^^^^^^ 399s | 399s = note: expected values for `feature` are: `default`, `once_cell`, `std`, and `valuable` 399s = help: consider adding `alloc` as a feature in `Cargo.toml` 399s = note: see for more information about checking conditional configuration 399s 399s warning: unexpected `cfg` condition name: `tracing_unstable` 399s --> /usr/share/cargo/registry/tracing-core-0.1.32/src/field.rs:374:11 399s | 399s 374 | #[cfg(all(tracing_unstable, feature = "valuable"))] 399s | ^^^^^^^^^^^^^^^^ 399s | 399s = help: expected names are: `clippy`, `debug_assertions`, `doc`, `docsrs`, `doctest`, `feature`, `fmt_debug`, `miri`, `overflow_checks`, `panic`, `proc_macro`, `relocation_model`, `rustfmt`, `sanitize`, `sanitizer_cfi_generalize_pointers`, `sanitizer_cfi_normalize_integers`, `target_abi`, `target_arch`, `target_endian`, `target_env`, `target_family`, `target_feature`, `target_has_atomic`, `target_has_atomic_equal_alignment`, `target_has_atomic_load_store`, `target_os`, `target_pointer_width`, `target_thread_local`, `target_vendor`, `test`, `ub_checks`, `unix`, and `windows` 399s = help: consider using a Cargo feature instead 399s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 399s [lints.rust] 399s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tracing_unstable)'] } 399s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tracing_unstable)");` to the top of the `build.rs` 399s = note: see for more information about checking conditional configuration 399s 399s warning: unexpected `cfg` condition name: `tracing_unstable` 399s --> /usr/share/cargo/registry/tracing-core-0.1.32/src/field.rs:719:11 399s | 399s 719 | #[cfg(all(tracing_unstable, feature = "valuable"))] 399s | ^^^^^^^^^^^^^^^^ 399s | 399s = help: consider using a Cargo feature instead 399s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 399s [lints.rust] 399s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tracing_unstable)'] } 399s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tracing_unstable)");` to the top of the `build.rs` 399s = note: see for more information about checking conditional configuration 399s 399s warning: unexpected `cfg` condition name: `tracing_unstable` 399s --> /usr/share/cargo/registry/tracing-core-0.1.32/src/field.rs:722:11 399s | 399s 722 | #[cfg(all(tracing_unstable, feature = "valuable"))] 399s | ^^^^^^^^^^^^^^^^ 399s | 399s = help: consider using a Cargo feature instead 399s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 399s [lints.rust] 399s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tracing_unstable)'] } 399s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tracing_unstable)");` to the top of the `build.rs` 399s = note: see for more information about checking conditional configuration 399s 399s warning: unexpected `cfg` condition name: `tracing_unstable` 399s --> /usr/share/cargo/registry/tracing-core-0.1.32/src/field.rs:730:11 399s | 399s 730 | #[cfg(all(tracing_unstable, feature = "valuable"))] 399s | ^^^^^^^^^^^^^^^^ 399s | 399s = help: consider using a Cargo feature instead 399s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 399s [lints.rust] 399s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tracing_unstable)'] } 399s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tracing_unstable)");` to the top of the `build.rs` 399s = note: see for more information about checking conditional configuration 399s 399s warning: unexpected `cfg` condition name: `tracing_unstable` 399s --> /usr/share/cargo/registry/tracing-core-0.1.32/src/field.rs:733:11 399s | 399s 733 | #[cfg(all(tracing_unstable, feature = "valuable"))] 399s | ^^^^^^^^^^^^^^^^ 399s | 399s = help: consider using a Cargo feature instead 399s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 399s [lints.rust] 399s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tracing_unstable)'] } 399s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tracing_unstable)");` to the top of the `build.rs` 399s = note: see for more information about checking conditional configuration 399s 399s warning: unexpected `cfg` condition name: `tracing_unstable` 399s --> /usr/share/cargo/registry/tracing-core-0.1.32/src/field.rs:270:15 399s | 399s 270 | #[cfg(all(tracing_unstable, feature = "valuable"))] 399s | ^^^^^^^^^^^^^^^^ 399s | 399s = help: consider using a Cargo feature instead 399s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 399s [lints.rust] 399s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tracing_unstable)'] } 399s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tracing_unstable)");` to the top of the `build.rs` 399s = note: see for more information about checking conditional configuration 399s 400s warning: creating a shared reference to mutable static is discouraged 400s --> /usr/share/cargo/registry/tracing-core-0.1.32/src/dispatcher.rs:458:9 400s | 400s 458 | &GLOBAL_DISPATCH 400s | ^^^^^^^^^^^^^^^^ shared reference to mutable static 400s | 400s = note: for more information, see 400s = note: shared references to mutable statics are dangerous; it's undefined behavior if the static is mutated or if a mutable reference is created for it while the shared reference lives 400s = note: `#[warn(static_mut_refs)]` on by default 400s help: use `&raw const` instead to create a raw pointer 400s | 400s 458 | &raw const GLOBAL_DISPATCH 400s | ~~~~~~~~~~ 400s 400s warning: `tracing-core` (lib) generated 11 warnings (1 duplicate) 400s Compiling digest v0.10.7 400s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=digest CARGO_MANIFEST_DIR=/tmp/tmp.WgXbjyKfA6/registry/digest-0.10.7 CARGO_MANIFEST_PATH=/tmp/tmp.WgXbjyKfA6/registry/digest-0.10.7/Cargo.toml CARGO_PKG_AUTHORS='RustCrypto Developers' CARGO_PKG_DESCRIPTION='Traits for cryptographic hash functions and message authentication codes' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=digest CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/RustCrypto/traits' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.10.7 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=10 CARGO_PKG_VERSION_PATCH=7 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.WgXbjyKfA6/target/debug/deps rustc --crate-name digest --edition=2018 /tmp/tmp.WgXbjyKfA6/registry/digest-0.10.7/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="alloc"' --cfg 'feature="block-buffer"' --cfg 'feature="core-api"' --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "blobby", "block-buffer", "const-oid", "core-api", "default", "dev", "mac", "oid", "rand_core", "std", "subtle"))' -C metadata=027272cf65436a63 -C extra-filename=-027272cf65436a63 --out-dir /tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.WgXbjyKfA6/target/debug/deps --extern block_buffer=/tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/deps/libblock_buffer-4cd3db619b1d8e9e.rmeta --extern crypto_common=/tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/deps/libcrypto_common-77cd648c700afbb2.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.WgXbjyKfA6/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 400s warning: `digest` (lib) generated 1 warning (1 duplicate) 400s Compiling rand_chacha v0.3.1 400s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=rand_chacha CARGO_MANIFEST_DIR=/tmp/tmp.WgXbjyKfA6/registry/rand_chacha-0.3.1 CARGO_MANIFEST_PATH=/tmp/tmp.WgXbjyKfA6/registry/rand_chacha-0.3.1/Cargo.toml CARGO_PKG_AUTHORS='The Rand Project Developers:The Rust Project Developers:The CryptoCorrosion Contributors' CARGO_PKG_DESCRIPTION='ChaCha random number generator 400s ' CARGO_PKG_HOMEPAGE='https://rust-random.github.io/book' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=rand_chacha CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-random/rand' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.3.1 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.WgXbjyKfA6/target/debug/deps rustc --crate-name rand_chacha --edition=2018 /tmp/tmp.WgXbjyKfA6/registry/rand_chacha-0.3.1/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "serde", "serde1", "simd", "std"))' -C metadata=dd56c23de683d750 -C extra-filename=-dd56c23de683d750 --out-dir /tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.WgXbjyKfA6/target/debug/deps --extern ppv_lite86=/tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/deps/libppv_lite86-57e5b566e2a71c09.rmeta --extern rand_core=/tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/deps/librand_core-3c7246ca3f419bbc.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.WgXbjyKfA6/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 400s warning: `rand_chacha` (lib) generated 1 warning (1 duplicate) 400s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=memoffset CARGO_MANIFEST_DIR=/tmp/tmp.WgXbjyKfA6/registry/memoffset-0.8.0 CARGO_MANIFEST_PATH=/tmp/tmp.WgXbjyKfA6/registry/memoffset-0.8.0/Cargo.toml CARGO_PKG_AUTHORS='Gilad Naaman ' CARGO_PKG_DESCRIPTION='offset_of functionality for Rust structs.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=memoffset CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/Gilnaa/memoffset' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.8.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=8 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.WgXbjyKfA6/target/debug/deps OUT_DIR=/tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/build/memoffset-b32fed70cf81e31f/out rustc --crate-name memoffset --edition=2015 /tmp/tmp.WgXbjyKfA6/registry/memoffset-0.8.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "unstable_const"))' -C metadata=2f432c32070b84ca -C extra-filename=-2f432c32070b84ca --out-dir /tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.WgXbjyKfA6/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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.WgXbjyKfA6/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain --cfg tuple_ty --cfg allow_clippy --cfg maybe_uninit --cfg doctests --cfg raw_ref_macros --cfg stable_const` 400s warning: unexpected `cfg` condition name: `stable_const` 400s --> /usr/share/cargo/registry/memoffset-0.8.0/src/lib.rs:60:41 400s | 400s 60 | all(feature = "unstable_const", not(stable_const)), 400s | ^^^^^^^^^^^^ 400s | 400s = help: expected names are: `clippy`, `debug_assertions`, `doc`, `docsrs`, `doctest`, `feature`, `fmt_debug`, `miri`, `overflow_checks`, `panic`, `proc_macro`, `relocation_model`, `rustfmt`, `sanitize`, `sanitizer_cfi_generalize_pointers`, `sanitizer_cfi_normalize_integers`, `target_abi`, `target_arch`, `target_endian`, `target_env`, `target_family`, `target_feature`, `target_has_atomic`, `target_has_atomic_equal_alignment`, `target_has_atomic_load_store`, `target_os`, `target_pointer_width`, `target_thread_local`, `target_vendor`, `test`, `ub_checks`, `unix`, and `windows` 400s = help: consider using a Cargo feature instead 400s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 400s [lints.rust] 400s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(stable_const)'] } 400s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(stable_const)");` to the top of the `build.rs` 400s = note: see for more information about checking conditional configuration 400s = note: `#[warn(unexpected_cfgs)]` on by default 400s 400s warning: unexpected `cfg` condition name: `doctests` 400s --> /usr/share/cargo/registry/memoffset-0.8.0/src/lib.rs:66:7 400s | 400s 66 | #[cfg(doctests)] 400s | ^^^^^^^^ help: there is a config with a similar name: `doctest` 400s | 400s = help: consider using a Cargo feature instead 400s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 400s [lints.rust] 400s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doctests)'] } 400s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doctests)");` to the top of the `build.rs` 400s = note: see for more information about checking conditional configuration 400s 400s warning: unexpected `cfg` condition name: `doctests` 400s --> /usr/share/cargo/registry/memoffset-0.8.0/src/lib.rs:69:7 400s | 400s 69 | #[cfg(doctests)] 400s | ^^^^^^^^ help: there is a config with a similar name: `doctest` 400s | 400s = help: consider using a Cargo feature instead 400s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 400s [lints.rust] 400s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doctests)'] } 400s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doctests)");` to the top of the `build.rs` 400s = note: see for more information about checking conditional configuration 400s 400s warning: unexpected `cfg` condition name: `raw_ref_macros` 400s --> /usr/share/cargo/registry/memoffset-0.8.0/src/raw_field.rs:22:7 400s | 400s 22 | #[cfg(raw_ref_macros)] 400s | ^^^^^^^^^^^^^^ 400s | 400s = help: consider using a Cargo feature instead 400s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 400s [lints.rust] 400s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(raw_ref_macros)'] } 400s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(raw_ref_macros)");` to the top of the `build.rs` 400s = note: see for more information about checking conditional configuration 400s 400s warning: unexpected `cfg` condition name: `raw_ref_macros` 400s --> /usr/share/cargo/registry/memoffset-0.8.0/src/raw_field.rs:30:11 400s | 400s 30 | #[cfg(not(raw_ref_macros))] 400s | ^^^^^^^^^^^^^^ 400s | 400s = help: consider using a Cargo feature instead 400s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 400s [lints.rust] 400s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(raw_ref_macros)'] } 400s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(raw_ref_macros)");` to the top of the `build.rs` 400s = note: see for more information about checking conditional configuration 400s 400s warning: unexpected `cfg` condition name: `allow_clippy` 400s --> /usr/share/cargo/registry/memoffset-0.8.0/src/raw_field.rs:57:7 400s | 400s 57 | #[cfg(allow_clippy)] 400s | ^^^^^^^^^^^^ 400s | 400s = help: consider using a Cargo feature instead 400s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 400s [lints.rust] 400s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(allow_clippy)'] } 400s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(allow_clippy)");` to the top of the `build.rs` 400s = note: see for more information about checking conditional configuration 400s 400s warning: unexpected `cfg` condition name: `allow_clippy` 400s --> /usr/share/cargo/registry/memoffset-0.8.0/src/raw_field.rs:69:11 400s | 400s 69 | #[cfg(not(allow_clippy))] 400s | ^^^^^^^^^^^^ 400s | 400s = help: consider using a Cargo feature instead 400s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 400s [lints.rust] 400s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(allow_clippy)'] } 400s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(allow_clippy)");` to the top of the `build.rs` 400s = note: see for more information about checking conditional configuration 400s 400s warning: unexpected `cfg` condition name: `allow_clippy` 400s --> /usr/share/cargo/registry/memoffset-0.8.0/src/raw_field.rs:90:7 400s | 400s 90 | #[cfg(allow_clippy)] 400s | ^^^^^^^^^^^^ 400s | 400s = help: consider using a Cargo feature instead 400s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 400s [lints.rust] 400s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(allow_clippy)'] } 400s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(allow_clippy)");` to the top of the `build.rs` 400s = note: see for more information about checking conditional configuration 400s 400s warning: unexpected `cfg` condition name: `allow_clippy` 400s --> /usr/share/cargo/registry/memoffset-0.8.0/src/raw_field.rs:100:11 400s | 400s 100 | #[cfg(not(allow_clippy))] 400s | ^^^^^^^^^^^^ 400s | 400s = help: consider using a Cargo feature instead 400s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 400s [lints.rust] 400s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(allow_clippy)'] } 400s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(allow_clippy)");` to the top of the `build.rs` 400s = note: see for more information about checking conditional configuration 400s 400s warning: unexpected `cfg` condition name: `allow_clippy` 400s --> /usr/share/cargo/registry/memoffset-0.8.0/src/raw_field.rs:125:7 400s | 400s 125 | #[cfg(allow_clippy)] 400s | ^^^^^^^^^^^^ 400s | 400s = help: consider using a Cargo feature instead 400s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 400s [lints.rust] 400s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(allow_clippy)'] } 400s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(allow_clippy)");` to the top of the `build.rs` 400s = note: see for more information about checking conditional configuration 400s 400s warning: unexpected `cfg` condition name: `allow_clippy` 400s --> /usr/share/cargo/registry/memoffset-0.8.0/src/raw_field.rs:141:11 400s | 400s 141 | #[cfg(not(allow_clippy))] 400s | ^^^^^^^^^^^^ 400s | 400s = help: consider using a Cargo feature instead 400s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 401s [lints.rust] 401s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(allow_clippy)'] } 401s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(allow_clippy)");` to the top of the `build.rs` 401s = note: see for more information about checking conditional configuration 401s 401s warning: unexpected `cfg` condition name: `tuple_ty` 401s --> /usr/share/cargo/registry/memoffset-0.8.0/src/raw_field.rs:183:7 401s | 401s 183 | #[cfg(tuple_ty)] 401s | ^^^^^^^^ 401s | 401s = help: consider using a Cargo feature instead 401s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 401s [lints.rust] 401s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tuple_ty)'] } 401s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tuple_ty)");` to the top of the `build.rs` 401s = note: see for more information about checking conditional configuration 401s 401s warning: unexpected `cfg` condition name: `maybe_uninit` 401s --> /usr/share/cargo/registry/memoffset-0.8.0/src/offset_of.rs:23:7 401s | 401s 23 | #[cfg(maybe_uninit)] 401s | ^^^^^^^^^^^^ 401s | 401s = help: consider using a Cargo feature instead 401s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 401s [lints.rust] 401s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(maybe_uninit)'] } 401s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(maybe_uninit)");` to the top of the `build.rs` 401s = note: see for more information about checking conditional configuration 401s 401s warning: unexpected `cfg` condition name: `maybe_uninit` 401s --> /usr/share/cargo/registry/memoffset-0.8.0/src/offset_of.rs:37:11 401s | 401s 37 | #[cfg(not(maybe_uninit))] 401s | ^^^^^^^^^^^^ 401s | 401s = help: consider using a Cargo feature instead 401s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 401s [lints.rust] 401s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(maybe_uninit)'] } 401s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(maybe_uninit)");` to the top of the `build.rs` 401s = note: see for more information about checking conditional configuration 401s 401s warning: unexpected `cfg` condition name: `stable_const` 401s --> /usr/share/cargo/registry/memoffset-0.8.0/src/offset_of.rs:49:39 401s | 401s 49 | #[cfg(any(feature = "unstable_const", stable_const))] 401s | ^^^^^^^^^^^^ 401s | 401s = help: consider using a Cargo feature instead 401s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 401s [lints.rust] 401s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(stable_const)'] } 401s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(stable_const)");` to the top of the `build.rs` 401s = note: see for more information about checking conditional configuration 401s 401s warning: unexpected `cfg` condition name: `stable_const` 401s --> /usr/share/cargo/registry/memoffset-0.8.0/src/offset_of.rs:61:43 401s | 401s 61 | #[cfg(not(any(feature = "unstable_const", stable_const)))] 401s | ^^^^^^^^^^^^ 401s | 401s = help: consider using a Cargo feature instead 401s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 401s [lints.rust] 401s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(stable_const)'] } 401s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(stable_const)");` to the top of the `build.rs` 401s = note: see for more information about checking conditional configuration 401s 401s warning: unexpected `cfg` condition name: `tuple_ty` 401s --> /usr/share/cargo/registry/memoffset-0.8.0/src/offset_of.rs:121:7 401s | 401s 121 | #[cfg(tuple_ty)] 401s | ^^^^^^^^ 401s | 401s = help: consider using a Cargo feature instead 401s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 401s [lints.rust] 401s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tuple_ty)'] } 401s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tuple_ty)");` to the top of the `build.rs` 401s = note: see for more information about checking conditional configuration 401s 401s warning: `memoffset` (lib) generated 18 warnings (1 duplicate) 401s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=slab CARGO_MANIFEST_DIR=/tmp/tmp.WgXbjyKfA6/registry/slab-0.4.9 CARGO_MANIFEST_PATH=/tmp/tmp.WgXbjyKfA6/registry/slab-0.4.9/Cargo.toml CARGO_PKG_AUTHORS='Carl Lerche ' CARGO_PKG_DESCRIPTION='Pre-allocated storage for a uniform data type' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=slab CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/tokio-rs/slab' CARGO_PKG_RUST_VERSION=1.31 CARGO_PKG_VERSION=0.4.9 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=4 CARGO_PKG_VERSION_PATCH=9 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.WgXbjyKfA6/target/debug/deps OUT_DIR=/tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/build/slab-2c89ee66d35953a1/out rustc --crate-name slab --edition=2018 /tmp/tmp.WgXbjyKfA6/registry/slab-0.4.9/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "serde", "std"))' -C metadata=36320af34be0827b -C extra-filename=-36320af34be0827b --out-dir /tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.WgXbjyKfA6/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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.WgXbjyKfA6/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 401s warning: unexpected `cfg` condition name: `slab_no_const_vec_new` 401s --> /usr/share/cargo/registry/slab-0.4.9/src/lib.rs:250:15 401s | 401s 250 | #[cfg(not(slab_no_const_vec_new))] 401s | ^^^^^^^^^^^^^^^^^^^^^ 401s | 401s = help: expected names are: `clippy`, `debug_assertions`, `doc`, `docsrs`, `doctest`, `feature`, `fmt_debug`, `miri`, `overflow_checks`, `panic`, `proc_macro`, `relocation_model`, `rustfmt`, `sanitize`, `sanitizer_cfi_generalize_pointers`, `sanitizer_cfi_normalize_integers`, `target_abi`, `target_arch`, `target_endian`, `target_env`, `target_family`, `target_feature`, `target_has_atomic`, `target_has_atomic_equal_alignment`, `target_has_atomic_load_store`, `target_os`, `target_pointer_width`, `target_thread_local`, `target_vendor`, `test`, `ub_checks`, `unix`, and `windows` 401s = help: consider using a Cargo feature instead 401s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 401s [lints.rust] 401s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(slab_no_const_vec_new)'] } 401s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(slab_no_const_vec_new)");` to the top of the `build.rs` 401s = note: see for more information about checking conditional configuration 401s = note: `#[warn(unexpected_cfgs)]` on by default 401s 401s warning: unexpected `cfg` condition name: `slab_no_const_vec_new` 401s --> /usr/share/cargo/registry/slab-0.4.9/src/lib.rs:264:11 401s | 401s 264 | #[cfg(slab_no_const_vec_new)] 401s | ^^^^^^^^^^^^^^^^^^^^^ 401s | 401s = help: consider using a Cargo feature instead 401s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 401s [lints.rust] 401s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(slab_no_const_vec_new)'] } 401s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(slab_no_const_vec_new)");` to the top of the `build.rs` 401s = note: see for more information about checking conditional configuration 401s 401s warning: unexpected `cfg` condition name: `slab_no_track_caller` 401s --> /usr/share/cargo/registry/slab-0.4.9/src/lib.rs:929:20 401s | 401s 929 | #[cfg_attr(not(slab_no_track_caller), track_caller)] 401s | ^^^^^^^^^^^^^^^^^^^^ 401s | 401s = help: consider using a Cargo feature instead 401s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 401s [lints.rust] 401s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(slab_no_track_caller)'] } 401s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(slab_no_track_caller)");` to the top of the `build.rs` 401s = note: see for more information about checking conditional configuration 401s 401s warning: unexpected `cfg` condition name: `slab_no_track_caller` 401s --> /usr/share/cargo/registry/slab-0.4.9/src/lib.rs:1098:20 401s | 401s 1098 | #[cfg_attr(not(slab_no_track_caller), track_caller)] 401s | ^^^^^^^^^^^^^^^^^^^^ 401s | 401s = help: consider using a Cargo feature instead 401s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 401s [lints.rust] 401s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(slab_no_track_caller)'] } 401s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(slab_no_track_caller)");` to the top of the `build.rs` 401s = note: see for more information about checking conditional configuration 401s 401s warning: unexpected `cfg` condition name: `slab_no_track_caller` 401s --> /usr/share/cargo/registry/slab-0.4.9/src/lib.rs:1206:20 401s | 401s 1206 | #[cfg_attr(not(slab_no_track_caller), track_caller)] 401s | ^^^^^^^^^^^^^^^^^^^^ 401s | 401s = help: consider using a Cargo feature instead 401s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 401s [lints.rust] 401s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(slab_no_track_caller)'] } 401s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(slab_no_track_caller)");` to the top of the `build.rs` 401s = note: see for more information about checking conditional configuration 401s 401s warning: unexpected `cfg` condition name: `slab_no_track_caller` 401s --> /usr/share/cargo/registry/slab-0.4.9/src/lib.rs:1216:20 401s | 401s 1216 | #[cfg_attr(not(slab_no_track_caller), track_caller)] 401s | ^^^^^^^^^^^^^^^^^^^^ 401s | 401s = help: consider using a Cargo feature instead 401s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 401s [lints.rust] 401s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(slab_no_track_caller)'] } 401s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(slab_no_track_caller)");` to the top of the `build.rs` 401s = note: see for more information about checking conditional configuration 401s 401s warning: `slab` (lib) generated 7 warnings (1 duplicate) 401s Compiling event-listener-strategy v0.5.3 401s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=event_listener_strategy CARGO_MANIFEST_DIR=/tmp/tmp.WgXbjyKfA6/registry/event-listener-strategy-0.5.3 CARGO_MANIFEST_PATH=/tmp/tmp.WgXbjyKfA6/registry/event-listener-strategy-0.5.3/Cargo.toml CARGO_PKG_AUTHORS='John Nunley ' CARGO_PKG_DESCRIPTION='Block or poll on event_listener easily' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=event-listener-strategy CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/smol-rs/event-listener-strategy' CARGO_PKG_RUST_VERSION=1.60 CARGO_PKG_VERSION=0.5.3 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=5 CARGO_PKG_VERSION_PATCH=3 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.WgXbjyKfA6/target/debug/deps rustc --crate-name event_listener_strategy --edition=2021 /tmp/tmp.WgXbjyKfA6/registry/event-listener-strategy-0.5.3/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --warn=unexpected_cfgs --check-cfg 'cfg(wasm_bindgen_unstable_test_coverage)' --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "std"))' -C metadata=c155ba63305d40fd -C extra-filename=-c155ba63305d40fd --out-dir /tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.WgXbjyKfA6/target/debug/deps --extern event_listener=/tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/deps/libevent_listener-93bdad7496d4853a.rmeta --extern pin_project_lite=/tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/deps/libpin_project_lite-5dc815523e98d889.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.WgXbjyKfA6/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 401s warning: `event-listener-strategy` (lib) generated 1 warning (1 duplicate) 401s 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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0--remap-path-prefix/tmp/tmp.WgXbjyKfA6/registry=/usr/share/cargo/registry-Ctarget-feature=+backchain' CARGO_FEATURE_FEATURE=1 CARGO_FEATURE_MEMOFFSET=1 CARGO_FEATURE_SOCKET=1 CARGO_FEATURE_UIO=1 CARGO_FEATURE_USER=1 CARGO_MANIFEST_DIR=/tmp/tmp.WgXbjyKfA6/registry/nix-0.29.0 CARGO_MANIFEST_PATH=/tmp/tmp.WgXbjyKfA6/registry/nix-0.29.0/Cargo.toml CARGO_PKG_AUTHORS='The nix-rust Project Developers' CARGO_PKG_DESCRIPTION='Rust friendly bindings to *nix APIs' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=nix CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/nix-rust/nix' CARGO_PKG_RUST_VERSION=1.69 CARGO_PKG_VERSION=0.29.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=29 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' DEBUG=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.WgXbjyKfA6/target/debug/deps:/tmp/tmp.WgXbjyKfA6/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/build/nix-8065280fb097eaec/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.WgXbjyKfA6/target/debug/build/nix-9cc97a3a2fcb749b/build-script-build` 401s [nix 0.29.0] cargo:rustc-check-cfg=cfg(android) 401s [nix 0.29.0] cargo:rustc-check-cfg=cfg(dragonfly) 401s [nix 0.29.0] cargo:rustc-check-cfg=cfg(ios) 401s [nix 0.29.0] cargo:rustc-check-cfg=cfg(freebsd) 401s [nix 0.29.0] cargo:rustc-check-cfg=cfg(illumos) 401s [nix 0.29.0] cargo:rustc-check-cfg=cfg(linux) 401s [nix 0.29.0] cargo:rustc-cfg=linux 401s [nix 0.29.0] cargo:rustc-check-cfg=cfg(macos) 401s [nix 0.29.0] cargo:rustc-check-cfg=cfg(netbsd) 401s [nix 0.29.0] cargo:rustc-check-cfg=cfg(openbsd) 401s [nix 0.29.0] cargo:rustc-check-cfg=cfg(solaris) 401s [nix 0.29.0] cargo:rustc-check-cfg=cfg(watchos) 401s [nix 0.29.0] cargo:rustc-check-cfg=cfg(tvos) 401s [nix 0.29.0] cargo:rustc-check-cfg=cfg(visionos) 401s [nix 0.29.0] cargo:rustc-check-cfg=cfg(apple_targets) 401s [nix 0.29.0] cargo:rustc-check-cfg=cfg(bsd) 401s [nix 0.29.0] cargo:rustc-check-cfg=cfg(bsd_without_apple) 401s [nix 0.29.0] cargo:rustc-check-cfg=cfg(linux_android) 401s [nix 0.29.0] cargo:rustc-cfg=linux_android 401s [nix 0.29.0] cargo:rustc-check-cfg=cfg(freebsdlike) 401s [nix 0.29.0] cargo:rustc-check-cfg=cfg(netbsdlike) 401s [nix 0.29.0] cargo:rustc-check-cfg=cfg(solarish) 401s [nix 0.29.0] cargo:rustc-check-cfg=cfg(apple_targets) 401s [nix 0.29.0] cargo:rustc-check-cfg=cfg(bsd) 401s [nix 0.29.0] cargo:rustc-check-cfg=cfg(bsd_without_apple) 401s [nix 0.29.0] cargo:rustc-check-cfg=cfg(linux_android) 401s [nix 0.29.0] cargo:rustc-check-cfg=cfg(freebsdlike) 401s [nix 0.29.0] cargo:rustc-check-cfg=cfg(netbsdlike) 401s [nix 0.29.0] cargo:rustc-check-cfg=cfg(solarish) 401s [nix 0.29.0] cargo:rustc-check-cfg=cfg(fbsd14) 401s [nix 0.29.0] cargo:rustc-check-cfg=cfg(qemu) 401s Compiling futures-macro v0.3.31 401s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=futures_macro CARGO_MANIFEST_DIR=/tmp/tmp.WgXbjyKfA6/registry/futures-macro-0.3.31 CARGO_MANIFEST_PATH=/tmp/tmp.WgXbjyKfA6/registry/futures-macro-0.3.31/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='The futures-rs procedural macro implementations. 401s ' CARGO_PKG_HOMEPAGE='https://rust-lang.github.io/futures-rs' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=futures-macro CARGO_PKG_README='' CARGO_PKG_REPOSITORY='https://github.com/rust-lang/futures-rs' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=0.3.31 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=31 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.WgXbjyKfA6/target/debug/deps rustc --crate-name futures_macro --edition=2018 /tmp/tmp.WgXbjyKfA6/registry/futures-macro-0.3.31/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type proc-macro --emit=dep-info,link -C prefer-dynamic -C embed-bitcode=no -C debuginfo=2 --warn=unreachable_pub --warn=unexpected_cfgs --warn=single_use_lifetimes --warn=rust_2018_idioms --warn=missing_debug_implementations --check-cfg 'cfg(futures_sanitizer)' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=4cace2739cb7abd5 -C extra-filename=-4cace2739cb7abd5 --out-dir /tmp/tmp.WgXbjyKfA6/target/debug/deps -L dependency=/tmp/tmp.WgXbjyKfA6/target/debug/deps --extern proc_macro2=/tmp/tmp.WgXbjyKfA6/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rlib --extern quote=/tmp/tmp.WgXbjyKfA6/target/debug/deps/libquote-dc92c6f25ee0f0c6.rlib --extern syn=/tmp/tmp.WgXbjyKfA6/target/debug/deps/libsyn-0167beed9e699402.rlib --extern proc_macro --cap-lints warn` 402s Compiling tracing-attributes v0.1.27 402s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=tracing_attributes CARGO_MANIFEST_DIR=/tmp/tmp.WgXbjyKfA6/registry/tracing-attributes-0.1.27 CARGO_MANIFEST_PATH=/tmp/tmp.WgXbjyKfA6/registry/tracing-attributes-0.1.27/Cargo.toml CARGO_PKG_AUTHORS='Tokio Contributors :Eliza Weisman :David Barsky ' CARGO_PKG_DESCRIPTION='Procedural macro attributes for automatically instrumenting functions. 402s ' CARGO_PKG_HOMEPAGE='https://tokio.rs' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=tracing-attributes CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/tokio-rs/tracing' CARGO_PKG_RUST_VERSION=1.56.0 CARGO_PKG_VERSION=0.1.27 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=27 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.WgXbjyKfA6/target/debug/deps rustc --crate-name tracing_attributes --edition=2018 /tmp/tmp.WgXbjyKfA6/registry/tracing-attributes-0.1.27/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("async-await"))' -C metadata=7f00f49c1aac99bb -C extra-filename=-7f00f49c1aac99bb --out-dir /tmp/tmp.WgXbjyKfA6/target/debug/deps -L dependency=/tmp/tmp.WgXbjyKfA6/target/debug/deps --extern proc_macro2=/tmp/tmp.WgXbjyKfA6/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rlib --extern quote=/tmp/tmp.WgXbjyKfA6/target/debug/deps/libquote-dc92c6f25ee0f0c6.rlib --extern syn=/tmp/tmp.WgXbjyKfA6/target/debug/deps/libsyn-0167beed9e699402.rlib --extern proc_macro --cap-lints warn` 402s warning: lint `private_in_public` has been removed: replaced with another group of lints, see RFC for more information 402s --> /tmp/tmp.WgXbjyKfA6/registry/tracing-attributes-0.1.27/src/lib.rs:73:5 402s | 402s 73 | private_in_public, 402s | ^^^^^^^^^^^^^^^^^ 402s | 402s = note: `#[warn(renamed_and_removed_lints)]` on by default 402s 402s warning: `zvariant` (lib) generated 1 warning (1 duplicate) 402s Compiling mio v1.0.2 402s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=mio CARGO_MANIFEST_DIR=/tmp/tmp.WgXbjyKfA6/registry/mio-1.0.2 CARGO_MANIFEST_PATH=/tmp/tmp.WgXbjyKfA6/registry/mio-1.0.2/Cargo.toml CARGO_PKG_AUTHORS='Carl Lerche :Thomas de Zeeuw :Tokio Contributors ' CARGO_PKG_DESCRIPTION='Lightweight non-blocking I/O.' CARGO_PKG_HOMEPAGE='https://github.com/tokio-rs/mio' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=mio CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/tokio-rs/mio' CARGO_PKG_RUST_VERSION=1.70 CARGO_PKG_VERSION=1.0.2 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=2 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.WgXbjyKfA6/target/debug/deps rustc --crate-name mio --edition=2021 /tmp/tmp.WgXbjyKfA6/registry/mio-1.0.2/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --warn=unexpected_cfgs --check-cfg 'cfg(mio_unsupported_force_poll_poll)' --check-cfg 'cfg(mio_unsupported_force_waker_pipe)' --cfg 'feature="net"' --cfg 'feature="os-ext"' --cfg 'feature="os-poll"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "log", "net", "os-ext", "os-poll"))' -C metadata=85c9d41cef2d79b6 -C extra-filename=-85c9d41cef2d79b6 --out-dir /tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.WgXbjyKfA6/target/debug/deps --extern libc=/tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/deps/liblibc-cf2521928ac070dc.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.WgXbjyKfA6/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 403s warning: `mio` (lib) generated 1 warning (1 duplicate) 403s Compiling socket2 v0.5.8 403s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=socket2 CARGO_MANIFEST_DIR=/tmp/tmp.WgXbjyKfA6/registry/socket2-0.5.8 CARGO_MANIFEST_PATH=/tmp/tmp.WgXbjyKfA6/registry/socket2-0.5.8/Cargo.toml CARGO_PKG_AUTHORS='Alex Crichton :Thomas de Zeeuw ' CARGO_PKG_DESCRIPTION='Utilities for handling networking sockets with a maximal amount of configuration 403s possible intended. 403s ' CARGO_PKG_HOMEPAGE='https://github.com/rust-lang/socket2' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=socket2 CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/socket2' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=0.5.8 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=5 CARGO_PKG_VERSION_PATCH=8 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.WgXbjyKfA6/target/debug/deps rustc --crate-name socket2 --edition=2021 /tmp/tmp.WgXbjyKfA6/registry/socket2-0.5.8/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="all"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("all"))' -C metadata=2e2923c434668665 -C extra-filename=-2e2923c434668665 --out-dir /tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.WgXbjyKfA6/target/debug/deps --extern libc=/tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/deps/liblibc-cf2521928ac070dc.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.WgXbjyKfA6/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 403s warning: `socket2` (lib) generated 1 warning (1 duplicate) 403s Compiling signal-hook-registry v1.4.0 403s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=signal_hook_registry CARGO_MANIFEST_DIR=/tmp/tmp.WgXbjyKfA6/registry/signal-hook-registry-1.4.0 CARGO_MANIFEST_PATH=/tmp/tmp.WgXbjyKfA6/registry/signal-hook-registry-1.4.0/Cargo.toml CARGO_PKG_AUTHORS='Michal '\''vorner'\'' Vaner :Masaki Hara ' CARGO_PKG_DESCRIPTION='Backend crate for signal-hook' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=Apache-2.0/MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=signal-hook-registry CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/vorner/signal-hook' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=1.4.0 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=4 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.WgXbjyKfA6/target/debug/deps rustc --crate-name signal_hook_registry --edition=2015 /tmp/tmp.WgXbjyKfA6/registry/signal-hook-registry-1.4.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=e340db120477ee8e -C extra-filename=-e340db120477ee8e --out-dir /tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.WgXbjyKfA6/target/debug/deps --extern libc=/tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/deps/liblibc-cf2521928ac070dc.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.WgXbjyKfA6/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 403s warning: creating a shared reference to mutable static is discouraged 403s --> /usr/share/cargo/registry/signal-hook-registry-1.4.0/src/lib.rs:281:18 403s | 403s 281 | unsafe { GLOBAL_DATA.as_ref().unwrap() } 403s | ^^^^^^^^^^^^^^^^^^^^ shared reference to mutable static 403s | 403s = note: for more information, see 403s = note: shared references to mutable statics are dangerous; it's undefined behavior if the static is mutated or if a mutable reference is created for it while the shared reference lives 403s = note: `#[warn(static_mut_refs)]` on by default 403s 403s warning: `signal-hook-registry` (lib) generated 2 warnings (1 duplicate) 403s Compiling pin-utils v0.1.0 403s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=pin_utils CARGO_MANIFEST_DIR=/tmp/tmp.WgXbjyKfA6/registry/pin-utils-0.1.0 CARGO_MANIFEST_PATH=/tmp/tmp.WgXbjyKfA6/registry/pin-utils-0.1.0/Cargo.toml CARGO_PKG_AUTHORS='Josef Brandl ' CARGO_PKG_DESCRIPTION='Utilities for pinning 403s ' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=pin-utils CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang-nursery/pin-utils' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.1.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.WgXbjyKfA6/target/debug/deps rustc --crate-name pin_utils --edition=2018 /tmp/tmp.WgXbjyKfA6/registry/pin-utils-0.1.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=9646380a39f6bb39 -C extra-filename=-9646380a39f6bb39 --out-dir /tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.WgXbjyKfA6/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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.WgXbjyKfA6/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 404s warning: `pin-utils` (lib) generated 1 warning (1 duplicate) 404s Compiling bitflags v2.8.0 404s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=bitflags CARGO_MANIFEST_DIR=/tmp/tmp.WgXbjyKfA6/registry/bitflags-2.8.0 CARGO_MANIFEST_PATH=/tmp/tmp.WgXbjyKfA6/registry/bitflags-2.8.0/Cargo.toml CARGO_PKG_AUTHORS='The Rust Project Developers' CARGO_PKG_DESCRIPTION='A macro to generate structures which behave like bitflags. 404s ' CARGO_PKG_HOMEPAGE='https://github.com/bitflags/bitflags' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=bitflags CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/bitflags/bitflags' CARGO_PKG_RUST_VERSION=1.56.0 CARGO_PKG_VERSION=2.8.0 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=8 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.WgXbjyKfA6/target/debug/deps rustc --crate-name bitflags --edition=2021 /tmp/tmp.WgXbjyKfA6/registry/bitflags-2.8.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("arbitrary", "bytemuck", "compiler_builtins", "core", "example_generated", "rustc-dep-of-std", "serde", "std"))' -C metadata=4b295667124b9dc6 -C extra-filename=-4b295667124b9dc6 --out-dir /tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.WgXbjyKfA6/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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.WgXbjyKfA6/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 404s warning: `bitflags` (lib) generated 1 warning (1 duplicate) 404s Compiling futures-sink v0.3.31 404s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=futures_sink CARGO_MANIFEST_DIR=/tmp/tmp.WgXbjyKfA6/registry/futures-sink-0.3.31 CARGO_MANIFEST_PATH=/tmp/tmp.WgXbjyKfA6/registry/futures-sink-0.3.31/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='The asynchronous `Sink` trait for the futures-rs library. 404s ' CARGO_PKG_HOMEPAGE='https://rust-lang.github.io/futures-rs' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=futures-sink CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/futures-rs' CARGO_PKG_RUST_VERSION=1.36 CARGO_PKG_VERSION=0.3.31 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=31 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.WgXbjyKfA6/target/debug/deps rustc --crate-name futures_sink --edition=2018 /tmp/tmp.WgXbjyKfA6/registry/futures-sink-0.3.31/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --warn=unreachable_pub --warn=unexpected_cfgs --warn=single_use_lifetimes --warn=rust_2018_idioms --warn=missing_debug_implementations --check-cfg 'cfg(futures_sanitizer)' --cfg 'feature="alloc"' --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "default", "std"))' -C metadata=2335bc9d806f8753 -C extra-filename=-2335bc9d806f8753 --out-dir /tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.WgXbjyKfA6/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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.WgXbjyKfA6/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 404s warning: `futures-sink` (lib) generated 1 warning (1 duplicate) 404s Compiling futures-task v0.3.31 404s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=futures_task CARGO_MANIFEST_DIR=/tmp/tmp.WgXbjyKfA6/registry/futures-task-0.3.31 CARGO_MANIFEST_PATH=/tmp/tmp.WgXbjyKfA6/registry/futures-task-0.3.31/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='Tools for working with tasks. 404s ' CARGO_PKG_HOMEPAGE='https://rust-lang.github.io/futures-rs' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=futures-task CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/futures-rs' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=0.3.31 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=31 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.WgXbjyKfA6/target/debug/deps rustc --crate-name futures_task --edition=2018 /tmp/tmp.WgXbjyKfA6/registry/futures-task-0.3.31/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --warn=unreachable_pub --warn=unexpected_cfgs --warn=single_use_lifetimes --warn=rust_2018_idioms --warn=missing_debug_implementations --check-cfg 'cfg(futures_sanitizer)' --cfg 'feature="alloc"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "cfg-target-has-atomic", "default", "std", "unstable"))' -C metadata=47c3a7d17767e18f -C extra-filename=-47c3a7d17767e18f --out-dir /tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.WgXbjyKfA6/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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.WgXbjyKfA6/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 404s warning: `futures-task` (lib) generated 1 warning (1 duplicate) 404s Compiling bytes v1.9.0 404s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=bytes CARGO_MANIFEST_DIR=/tmp/tmp.WgXbjyKfA6/registry/bytes-1.9.0 CARGO_MANIFEST_PATH=/tmp/tmp.WgXbjyKfA6/registry/bytes-1.9.0/Cargo.toml CARGO_PKG_AUTHORS='Carl Lerche :Sean McArthur ' CARGO_PKG_DESCRIPTION='Types and traits for working with bytes' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=bytes CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/tokio-rs/bytes' CARGO_PKG_RUST_VERSION=1.39 CARGO_PKG_VERSION=1.9.0 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=9 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.WgXbjyKfA6/target/debug/deps rustc --crate-name bytes --edition=2018 /tmp/tmp.WgXbjyKfA6/registry/bytes-1.9.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "serde", "std"))' -C metadata=1253a2a76e7883bd -C extra-filename=-1253a2a76e7883bd --out-dir /tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.WgXbjyKfA6/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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.WgXbjyKfA6/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 404s warning: `tracing-attributes` (lib) generated 1 warning 404s Compiling tracing v0.1.40 404s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=tracing CARGO_MANIFEST_DIR=/tmp/tmp.WgXbjyKfA6/registry/tracing-0.1.40 CARGO_MANIFEST_PATH=/tmp/tmp.WgXbjyKfA6/registry/tracing-0.1.40/Cargo.toml CARGO_PKG_AUTHORS='Eliza Weisman :Tokio Contributors ' CARGO_PKG_DESCRIPTION='Application-level tracing for Rust. 404s ' CARGO_PKG_HOMEPAGE='https://tokio.rs' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=tracing CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/tokio-rs/tracing' CARGO_PKG_RUST_VERSION=1.56.0 CARGO_PKG_VERSION=0.1.40 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=40 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.WgXbjyKfA6/target/debug/deps rustc --crate-name tracing --edition=2018 /tmp/tmp.WgXbjyKfA6/registry/tracing-0.1.40/src/lib.rs --error-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="attributes"' --cfg 'feature="default"' --cfg 'feature="std"' --cfg 'feature="tracing-attributes"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("async-await", "attributes", "default", "log", "log-always", "max_level_debug", "max_level_error", "max_level_info", "max_level_off", "max_level_trace", "max_level_warn", "release_max_level_debug", "release_max_level_error", "release_max_level_info", "release_max_level_off", "release_max_level_trace", "release_max_level_warn", "std", "tracing-attributes"))' -C metadata=5f8a2432d30b4ef1 -C extra-filename=-5f8a2432d30b4ef1 --out-dir /tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.WgXbjyKfA6/target/debug/deps --extern pin_project_lite=/tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/deps/libpin_project_lite-5dc815523e98d889.rmeta --extern tracing_attributes=/tmp/tmp.WgXbjyKfA6/target/debug/deps/libtracing_attributes-7f00f49c1aac99bb.so --extern tracing_core=/tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/deps/libtracing_core-4c8af7279fad1469.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.WgXbjyKfA6/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 404s warning: lint `private_in_public` has been removed: replaced with another group of lints, see RFC for more information 404s --> /usr/share/cargo/registry/tracing-0.1.40/src/lib.rs:932:5 404s | 404s 932 | private_in_public, 404s | ^^^^^^^^^^^^^^^^^ 404s | 404s = note: `#[warn(renamed_and_removed_lints)]` on by default 404s 404s warning: `tracing` (lib) generated 2 warnings (1 duplicate) 404s Compiling futures-util v0.3.31 404s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=futures_util CARGO_MANIFEST_DIR=/tmp/tmp.WgXbjyKfA6/registry/futures-util-0.3.31 CARGO_MANIFEST_PATH=/tmp/tmp.WgXbjyKfA6/registry/futures-util-0.3.31/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='Common utilities and extension traits for the futures-rs library. 404s ' CARGO_PKG_HOMEPAGE='https://rust-lang.github.io/futures-rs' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=futures-util CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/futures-rs' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=0.3.31 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=31 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.WgXbjyKfA6/target/debug/deps rustc --crate-name futures_util --edition=2018 /tmp/tmp.WgXbjyKfA6/registry/futures-util-0.3.31/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --warn=unreachable_pub --warn=unexpected_cfgs --warn=single_use_lifetimes --warn=rust_2018_idioms --warn=missing_debug_implementations --check-cfg 'cfg(futures_sanitizer)' --cfg 'feature="alloc"' --cfg 'feature="async-await"' --cfg 'feature="async-await-macro"' --cfg 'feature="default"' --cfg 'feature="futures-macro"' --cfg 'feature="futures-sink"' --cfg 'feature="sink"' --cfg 'feature="slab"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "async-await", "async-await-macro", "bilock", "channel", "default", "futures-channel", "futures-io", "futures-macro", "futures-sink", "io", "memchr", "sink", "slab", "std", "unstable", "write-all-vectored"))' -C metadata=23beed03671fe7d3 -C extra-filename=-23beed03671fe7d3 --out-dir /tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.WgXbjyKfA6/target/debug/deps --extern futures_core=/tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/deps/libfutures_core-8d305950da6bf5c8.rmeta --extern futures_macro=/tmp/tmp.WgXbjyKfA6/target/debug/deps/libfutures_macro-4cace2739cb7abd5.so --extern futures_sink=/tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/deps/libfutures_sink-2335bc9d806f8753.rmeta --extern futures_task=/tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/deps/libfutures_task-47c3a7d17767e18f.rmeta --extern pin_project_lite=/tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/deps/libpin_project_lite-5dc815523e98d889.rmeta --extern pin_utils=/tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/deps/libpin_utils-9646380a39f6bb39.rmeta --extern slab=/tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/deps/libslab-36320af34be0827b.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.WgXbjyKfA6/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 404s warning: unexpected `cfg` condition value: `compat` 404s --> /usr/share/cargo/registry/futures-util-0.3.31/src/lib.rs:308:7 404s | 404s 308 | #[cfg(feature = "compat")] 404s | ^^^^^^^^^^^^^^^^^^ 404s | 404s = note: expected values for `feature` are: `alloc`, `async-await`, `async-await-macro`, `bilock`, `channel`, `default`, `futures-channel`, `futures-io`, `futures-macro`, `futures-sink`, `io`, `memchr`, `sink`, `slab`, `std`, `unstable`, and `write-all-vectored` 404s = help: consider adding `compat` as a feature in `Cargo.toml` 404s = note: see for more information about checking conditional configuration 404s = note: requested on the command line with `-W unexpected-cfgs` 404s 404s warning: unexpected `cfg` condition value: `compat` 404s --> /usr/share/cargo/registry/futures-util-0.3.31/src/future/try_future/mod.rs:6:7 404s | 404s 6 | #[cfg(feature = "compat")] 404s | ^^^^^^^^^^^^^^^^^^ 404s | 404s = note: expected values for `feature` are: `alloc`, `async-await`, `async-await-macro`, `bilock`, `channel`, `default`, `futures-channel`, `futures-io`, `futures-macro`, `futures-sink`, `io`, `memchr`, `sink`, `slab`, `std`, `unstable`, and `write-all-vectored` 404s = help: consider adding `compat` as a feature in `Cargo.toml` 404s = note: see for more information about checking conditional configuration 404s 404s warning: unexpected `cfg` condition value: `compat` 404s --> /usr/share/cargo/registry/futures-util-0.3.31/src/future/try_future/mod.rs:580:11 404s | 404s 580 | #[cfg(feature = "compat")] 404s | ^^^^^^^^^^^^^^^^^^ 404s | 404s = note: expected values for `feature` are: `alloc`, `async-await`, `async-await-macro`, `bilock`, `channel`, `default`, `futures-channel`, `futures-io`, `futures-macro`, `futures-sink`, `io`, `memchr`, `sink`, `slab`, `std`, `unstable`, and `write-all-vectored` 404s = help: consider adding `compat` as a feature in `Cargo.toml` 404s = note: see for more information about checking conditional configuration 404s 404s warning: unexpected `cfg` condition value: `compat` 404s --> /usr/share/cargo/registry/futures-util-0.3.31/src/stream/try_stream/mod.rs:6:7 404s | 404s 6 | #[cfg(feature = "compat")] 404s | ^^^^^^^^^^^^^^^^^^ 404s | 404s = note: expected values for `feature` are: `alloc`, `async-await`, `async-await-macro`, `bilock`, `channel`, `default`, `futures-channel`, `futures-io`, `futures-macro`, `futures-sink`, `io`, `memchr`, `sink`, `slab`, `std`, `unstable`, and `write-all-vectored` 404s = help: consider adding `compat` as a feature in `Cargo.toml` 404s = note: see for more information about checking conditional configuration 404s 404s warning: unexpected `cfg` condition value: `compat` 404s --> /usr/share/cargo/registry/futures-util-0.3.31/src/stream/try_stream/mod.rs:1154:11 404s | 404s 1154 | #[cfg(feature = "compat")] 404s | ^^^^^^^^^^^^^^^^^^ 404s | 404s = note: expected values for `feature` are: `alloc`, `async-await`, `async-await-macro`, `bilock`, `channel`, `default`, `futures-channel`, `futures-io`, `futures-macro`, `futures-sink`, `io`, `memchr`, `sink`, `slab`, `std`, `unstable`, and `write-all-vectored` 404s = help: consider adding `compat` as a feature in `Cargo.toml` 404s = note: see for more information about checking conditional configuration 404s 404s warning: unexpected `cfg` condition value: `compat` 404s --> /usr/share/cargo/registry/futures-util-0.3.31/src/sink/mod.rs:15:7 404s | 404s 15 | #[cfg(feature = "compat")] 404s | ^^^^^^^^^^^^^^^^^^ 404s | 404s = note: expected values for `feature` are: `alloc`, `async-await`, `async-await-macro`, `bilock`, `channel`, `default`, `futures-channel`, `futures-io`, `futures-macro`, `futures-sink`, `io`, `memchr`, `sink`, `slab`, `std`, `unstable`, and `write-all-vectored` 404s = help: consider adding `compat` as a feature in `Cargo.toml` 404s = note: see for more information about checking conditional configuration 404s 404s warning: unexpected `cfg` condition value: `compat` 404s --> /usr/share/cargo/registry/futures-util-0.3.31/src/sink/mod.rs:291:11 404s | 404s 291 | #[cfg(feature = "compat")] 404s | ^^^^^^^^^^^^^^^^^^ 404s | 404s = note: expected values for `feature` are: `alloc`, `async-await`, `async-await-macro`, `bilock`, `channel`, `default`, `futures-channel`, `futures-io`, `futures-macro`, `futures-sink`, `io`, `memchr`, `sink`, `slab`, `std`, `unstable`, and `write-all-vectored` 404s = help: consider adding `compat` as a feature in `Cargo.toml` 404s = note: see for more information about checking conditional configuration 404s 404s warning: unexpected `cfg` condition value: `compat` 404s --> /usr/share/cargo/registry/futures-util-0.3.31/src/task/spawn.rs:3:7 404s | 404s 3 | #[cfg(feature = "compat")] 404s | ^^^^^^^^^^^^^^^^^^ 404s | 404s = note: expected values for `feature` are: `alloc`, `async-await`, `async-await-macro`, `bilock`, `channel`, `default`, `futures-channel`, `futures-io`, `futures-macro`, `futures-sink`, `io`, `memchr`, `sink`, `slab`, `std`, `unstable`, and `write-all-vectored` 404s = help: consider adding `compat` as a feature in `Cargo.toml` 404s = note: see for more information about checking conditional configuration 404s 404s warning: unexpected `cfg` condition value: `compat` 404s --> /usr/share/cargo/registry/futures-util-0.3.31/src/task/spawn.rs:92:11 404s | 404s 92 | #[cfg(feature = "compat")] 404s | ^^^^^^^^^^^^^^^^^^ 404s | 404s = note: expected values for `feature` are: `alloc`, `async-await`, `async-await-macro`, `bilock`, `channel`, `default`, `futures-channel`, `futures-io`, `futures-macro`, `futures-sink`, `io`, `memchr`, `sink`, `slab`, `std`, `unstable`, and `write-all-vectored` 404s = help: consider adding `compat` as a feature in `Cargo.toml` 404s = note: see for more information about checking conditional configuration 404s 404s warning: `bytes` (lib) generated 1 warning (1 duplicate) 404s Compiling tokio v1.43.0 404s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=tokio CARGO_MANIFEST_DIR=/tmp/tmp.WgXbjyKfA6/registry/tokio-1.43.0 CARGO_MANIFEST_PATH=/tmp/tmp.WgXbjyKfA6/registry/tokio-1.43.0/Cargo.toml CARGO_PKG_AUTHORS='Tokio Contributors ' CARGO_PKG_DESCRIPTION='An event-driven, non-blocking I/O platform for writing asynchronous I/O 404s backed applications. 404s ' CARGO_PKG_HOMEPAGE='https://tokio.rs' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=tokio CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/tokio-rs/tokio' CARGO_PKG_RUST_VERSION=1.70 CARGO_PKG_VERSION=1.43.0 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=43 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.WgXbjyKfA6/target/debug/deps rustc --crate-name tokio --edition=2021 /tmp/tmp.WgXbjyKfA6/registry/tokio-1.43.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="bytes"' --cfg 'feature="default"' --cfg 'feature="fs"' --cfg 'feature="io-util"' --cfg 'feature="libc"' --cfg 'feature="mio"' --cfg 'feature="net"' --cfg 'feature="process"' --cfg 'feature="rt"' --cfg 'feature="signal-hook-registry"' --cfg 'feature="socket2"' --cfg 'feature="sync"' --cfg 'feature="time"' --cfg 'feature="tracing"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("bytes", "default", "fs", "full", "io-std", "io-util", "libc", "macros", "mio", "net", "parking_lot", "process", "rt", "rt-multi-thread", "signal", "signal-hook-registry", "socket2", "sync", "test-util", "time", "tokio-macros", "tracing"))' -C metadata=f48697ab22907b1d -C extra-filename=-f48697ab22907b1d --out-dir /tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.WgXbjyKfA6/target/debug/deps --extern bytes=/tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/deps/libbytes-1253a2a76e7883bd.rmeta --extern libc=/tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/deps/liblibc-cf2521928ac070dc.rmeta --extern mio=/tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/deps/libmio-85c9d41cef2d79b6.rmeta --extern pin_project_lite=/tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/deps/libpin_project_lite-5dc815523e98d889.rmeta --extern signal_hook_registry=/tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/deps/libsignal_hook_registry-e340db120477ee8e.rmeta --extern socket2=/tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/deps/libsocket2-2e2923c434668665.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.WgXbjyKfA6/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 406s warning: `futures-util` (lib) generated 10 warnings (1 duplicate) 406s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=nix CARGO_MANIFEST_DIR=/tmp/tmp.WgXbjyKfA6/registry/nix-0.29.0 CARGO_MANIFEST_PATH=/tmp/tmp.WgXbjyKfA6/registry/nix-0.29.0/Cargo.toml CARGO_PKG_AUTHORS='The nix-rust Project Developers' CARGO_PKG_DESCRIPTION='Rust friendly bindings to *nix APIs' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=nix CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/nix-rust/nix' CARGO_PKG_RUST_VERSION=1.69 CARGO_PKG_VERSION=0.29.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=29 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.WgXbjyKfA6/target/debug/deps OUT_DIR=/tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/build/nix-8065280fb097eaec/out rustc --crate-name nix --edition=2021 /tmp/tmp.WgXbjyKfA6/registry/nix-0.29.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="feature"' --cfg 'feature="memoffset"' --cfg 'feature="socket"' --cfg 'feature="uio"' --cfg 'feature="user"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("acct", "aio", "default", "dir", "env", "event", "fanotify", "feature", "fs", "hostname", "inotify", "ioctl", "kmod", "memoffset", "mman", "mount", "mqueue", "net", "personality", "pin-utils", "poll", "process", "pthread", "ptrace", "quota", "reboot", "resource", "sched", "signal", "socket", "term", "time", "ucontext", "uio", "user", "zerocopy"))' -C metadata=1c06771599af3024 -C extra-filename=-1c06771599af3024 --out-dir /tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.WgXbjyKfA6/target/debug/deps --extern bitflags=/tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/deps/libbitflags-4b295667124b9dc6.rmeta --extern cfg_if=/tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/deps/libcfg_if-ff3ff84a061de73f.rmeta --extern libc=/tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/deps/liblibc-cf2521928ac070dc.rmeta --extern memoffset=/tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/deps/libmemoffset-2f432c32070b84ca.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.WgXbjyKfA6/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain --cfg linux --cfg linux_android --check-cfg 'cfg(android)' --check-cfg 'cfg(dragonfly)' --check-cfg 'cfg(ios)' --check-cfg 'cfg(freebsd)' --check-cfg 'cfg(illumos)' --check-cfg 'cfg(linux)' --check-cfg 'cfg(macos)' --check-cfg 'cfg(netbsd)' --check-cfg 'cfg(openbsd)' --check-cfg 'cfg(solaris)' --check-cfg 'cfg(watchos)' --check-cfg 'cfg(tvos)' --check-cfg 'cfg(visionos)' --check-cfg 'cfg(apple_targets)' --check-cfg 'cfg(bsd)' --check-cfg 'cfg(bsd_without_apple)' --check-cfg 'cfg(linux_android)' --check-cfg 'cfg(freebsdlike)' --check-cfg 'cfg(netbsdlike)' --check-cfg 'cfg(solarish)' --check-cfg 'cfg(apple_targets)' --check-cfg 'cfg(bsd)' --check-cfg 'cfg(bsd_without_apple)' --check-cfg 'cfg(linux_android)' --check-cfg 'cfg(freebsdlike)' --check-cfg 'cfg(netbsdlike)' --check-cfg 'cfg(solarish)' --check-cfg 'cfg(fbsd14)' --check-cfg 'cfg(qemu)'` 406s warning: elided lifetime has a name 406s --> /usr/share/cargo/registry/nix-0.29.0/src/sys/socket/sockopt.rs:1577:34 406s | 406s 1576 | impl<'a> Set<'a, OsString> for SetOsString<'a> { 406s | -- lifetime `'a` declared here 406s 1577 | fn new(val: &'a OsString) -> SetOsString { 406s | ^^^^^^^^^^^ this elided lifetime gets resolved as `'a` 406s | 406s = note: `#[warn(elided_named_lifetimes)]` on by default 406s 406s warning: struct `GetU8` is never constructed 406s --> /usr/share/cargo/registry/nix-0.29.0/src/sys/socket/sockopt.rs:1441:8 406s | 406s 1441 | struct GetU8 { 406s | ^^^^^ 406s | 406s = note: `#[warn(dead_code)]` on by default 406s 406s warning: struct `SetU8` is never constructed 406s --> /usr/share/cargo/registry/nix-0.29.0/src/sys/socket/sockopt.rs:1473:8 406s | 406s 1473 | struct SetU8 { 406s | ^^^^^ 406s 406s warning: struct `GetCString` is never constructed 406s --> /usr/share/cargo/registry/nix-0.29.0/src/sys/socket/sockopt.rs:1593:8 406s | 406s 1593 | struct GetCString> { 406s | ^^^^^^^^^^ 406s 407s warning: `nix` (lib) generated 5 warnings (1 duplicate) 407s Compiling zbus_names v3.0.0 407s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=zbus_names CARGO_MANIFEST_DIR=/tmp/tmp.WgXbjyKfA6/registry/zbus_names-3.0.0 CARGO_MANIFEST_PATH=/tmp/tmp.WgXbjyKfA6/registry/zbus_names-3.0.0/Cargo.toml CARGO_PKG_AUTHORS='Zeeshan Ali Khan ' CARGO_PKG_DESCRIPTION='A collection of D-Bus bus names types' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=zbus_names CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dbus2/zbus/' CARGO_PKG_RUST_VERSION=1.75 CARGO_PKG_VERSION=3.0.0 CARGO_PKG_VERSION_MAJOR=3 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.WgXbjyKfA6/target/debug/deps rustc --crate-name zbus_names --edition=2021 /tmp/tmp.WgXbjyKfA6/registry/zbus_names-3.0.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=68f942ce83c6099a -C extra-filename=-68f942ce83c6099a --out-dir /tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.WgXbjyKfA6/target/debug/deps --extern serde=/tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/deps/libserde-0e7dff716e38da0d.rmeta --extern static_assertions=/tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/deps/libstatic_assertions-18df01cc327facaa.rmeta --extern zvariant=/tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/deps/libzvariant-f63ab59735f855c5.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.WgXbjyKfA6/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 407s warning: `zbus_names` (lib) generated 1 warning (1 duplicate) 407s Compiling async-broadcast v0.7.1 407s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=async_broadcast CARGO_MANIFEST_DIR=/tmp/tmp.WgXbjyKfA6/registry/async-broadcast-0.7.1 CARGO_MANIFEST_PATH=/tmp/tmp.WgXbjyKfA6/registry/async-broadcast-0.7.1/Cargo.toml CARGO_PKG_AUTHORS='Stjepan Glavina :Yoshua Wuyts :Zeeshan Ali Khan ' CARGO_PKG_DESCRIPTION='Async broadcast channels' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=async-broadcast CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/smol-rs/async-broadcast' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.7.1 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=7 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.WgXbjyKfA6/target/debug/deps rustc --crate-name async_broadcast --edition=2018 /tmp/tmp.WgXbjyKfA6/registry/async-broadcast-0.7.1/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=852b859fbdd9a4f4 -C extra-filename=-852b859fbdd9a4f4 --out-dir /tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.WgXbjyKfA6/target/debug/deps --extern event_listener=/tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/deps/libevent_listener-93bdad7496d4853a.rmeta --extern event_listener_strategy=/tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/deps/libevent_listener_strategy-c155ba63305d40fd.rmeta --extern futures_core=/tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/deps/libfutures_core-8d305950da6bf5c8.rmeta --extern pin_project_lite=/tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/deps/libpin_project_lite-5dc815523e98d889.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.WgXbjyKfA6/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 408s warning: `async-broadcast` (lib) generated 1 warning (1 duplicate) 408s Compiling rand v0.8.5 408s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=rand CARGO_MANIFEST_DIR=/tmp/tmp.WgXbjyKfA6/registry/rand-0.8.5 CARGO_MANIFEST_PATH=/tmp/tmp.WgXbjyKfA6/registry/rand-0.8.5/Cargo.toml CARGO_PKG_AUTHORS='The Rand Project Developers:The Rust Project Developers' CARGO_PKG_DESCRIPTION='Random number generators and other randomness functionality. 408s ' CARGO_PKG_HOMEPAGE='https://rust-random.github.io/book' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=rand CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-random/rand' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.8.5 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=8 CARGO_PKG_VERSION_PATCH=5 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.WgXbjyKfA6/target/debug/deps rustc --crate-name rand --edition=2018 /tmp/tmp.WgXbjyKfA6/registry/rand-0.8.5/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="alloc"' --cfg 'feature="default"' --cfg 'feature="getrandom"' --cfg 'feature="libc"' --cfg 'feature="rand_chacha"' --cfg 'feature="std"' --cfg 'feature="std_rng"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "default", "getrandom", "libc", "log", "min_const_gen", "nightly", "rand_chacha", "serde", "serde1", "small_rng", "std", "std_rng"))' -C metadata=da2a195293a4eb5f -C extra-filename=-da2a195293a4eb5f --out-dir /tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.WgXbjyKfA6/target/debug/deps --extern libc=/tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/deps/liblibc-cf2521928ac070dc.rmeta --extern rand_chacha=/tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/deps/librand_chacha-dd56c23de683d750.rmeta --extern rand_core=/tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/deps/librand_core-3c7246ca3f419bbc.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.WgXbjyKfA6/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 408s warning: unexpected `cfg` condition value: `simd_support` 408s --> /usr/share/cargo/registry/rand-0.8.5/src/lib.rs:52:13 408s | 408s 52 | #![cfg_attr(feature = "simd_support", feature(stdsimd))] 408s | ^^^^^^^^^^^^^^^^^^^^^^^^ 408s | 408s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 408s = help: consider adding `simd_support` as a feature in `Cargo.toml` 408s = note: see for more information about checking conditional configuration 408s = note: `#[warn(unexpected_cfgs)]` on by default 408s 408s warning: unexpected `cfg` condition name: `doc_cfg` 408s --> /usr/share/cargo/registry/rand-0.8.5/src/lib.rs:53:13 408s | 408s 53 | #![cfg_attr(doc_cfg, feature(doc_cfg))] 408s | ^^^^^^^ 408s | 408s = help: expected names are: `clippy`, `debug_assertions`, `doc`, `docsrs`, `doctest`, `feature`, `fmt_debug`, `miri`, `overflow_checks`, `panic`, `proc_macro`, `relocation_model`, `rustfmt`, `sanitize`, `sanitizer_cfi_generalize_pointers`, `sanitizer_cfi_normalize_integers`, `target_abi`, `target_arch`, `target_endian`, `target_env`, `target_family`, `target_feature`, `target_has_atomic`, `target_has_atomic_equal_alignment`, `target_has_atomic_load_store`, `target_os`, `target_pointer_width`, `target_thread_local`, `target_vendor`, `test`, `ub_checks`, `unix`, and `windows` 408s = help: consider using a Cargo feature instead 408s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 408s [lints.rust] 408s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 408s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 408s = note: see for more information about checking conditional configuration 408s 408s warning: unexpected `cfg` condition name: `doc_cfg` 408s --> /usr/share/cargo/registry/rand-0.8.5/src/lib.rs:181:12 408s | 408s 181 | #[cfg_attr(doc_cfg, doc(cfg(all(feature = "std", feature = "std_rng"))))] 408s | ^^^^^^^ 408s | 408s = help: consider using a Cargo feature instead 408s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 408s [lints.rust] 408s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 408s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 408s = note: see for more information about checking conditional configuration 408s 408s warning: unexpected `cfg` condition name: `doc_cfg` 408s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/mod.rs:116:12 408s | 408s 116 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 408s | ^^^^^^^ 408s | 408s = help: consider using a Cargo feature instead 408s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 408s [lints.rust] 408s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 408s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 408s = note: see for more information about checking conditional configuration 408s 408s warning: unexpected `cfg` condition name: `features` 408s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/distribution.rs:162:7 408s | 408s 162 | #[cfg(features = "nightly")] 408s | ^^^^^^^^^^^^^^^^^^^^ 408s | 408s = note: see for more information about checking conditional configuration 408s help: there is a config with a similar name and value 408s | 408s 162 | #[cfg(feature = "nightly")] 408s | ~~~~~~~ 408s 408s warning: unexpected `cfg` condition value: `simd_support` 408s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/float.rs:15:7 408s | 408s 15 | #[cfg(feature = "simd_support")] use packed_simd::*; 408s | ^^^^^^^^^^^^^^^^^^^^^^^^ 408s | 408s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 408s = help: consider adding `simd_support` as a feature in `Cargo.toml` 408s = note: see for more information about checking conditional configuration 408s 408s warning: unexpected `cfg` condition value: `simd_support` 408s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/float.rs:156:7 408s | 408s 156 | #[cfg(feature = "simd_support")] 408s | ^^^^^^^^^^^^^^^^^^^^^^^^ 408s | 408s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 408s = help: consider adding `simd_support` as a feature in `Cargo.toml` 408s = note: see for more information about checking conditional configuration 408s 408s warning: unexpected `cfg` condition value: `simd_support` 408s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/float.rs:158:7 408s | 408s 158 | #[cfg(feature = "simd_support")] 408s | ^^^^^^^^^^^^^^^^^^^^^^^^ 408s | 408s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 408s = help: consider adding `simd_support` as a feature in `Cargo.toml` 408s = note: see for more information about checking conditional configuration 408s 408s warning: unexpected `cfg` condition value: `simd_support` 408s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/float.rs:160:7 408s | 408s 160 | #[cfg(feature = "simd_support")] 408s | ^^^^^^^^^^^^^^^^^^^^^^^^ 408s | 408s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 408s = help: consider adding `simd_support` as a feature in `Cargo.toml` 408s = note: see for more information about checking conditional configuration 408s 408s warning: unexpected `cfg` condition value: `simd_support` 408s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/float.rs:162:7 408s | 408s 162 | #[cfg(feature = "simd_support")] 408s | ^^^^^^^^^^^^^^^^^^^^^^^^ 408s | 408s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 408s = help: consider adding `simd_support` as a feature in `Cargo.toml` 408s = note: see for more information about checking conditional configuration 408s 408s warning: unexpected `cfg` condition value: `simd_support` 408s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/float.rs:165:7 408s | 408s 165 | #[cfg(feature = "simd_support")] 408s | ^^^^^^^^^^^^^^^^^^^^^^^^ 408s | 408s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 408s = help: consider adding `simd_support` as a feature in `Cargo.toml` 408s = note: see for more information about checking conditional configuration 408s 408s warning: unexpected `cfg` condition value: `simd_support` 408s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/float.rs:167:7 408s | 408s 167 | #[cfg(feature = "simd_support")] 408s | ^^^^^^^^^^^^^^^^^^^^^^^^ 408s | 408s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 408s = help: consider adding `simd_support` as a feature in `Cargo.toml` 408s = note: see for more information about checking conditional configuration 408s 408s warning: unexpected `cfg` condition value: `simd_support` 408s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/float.rs:169:7 408s | 408s 169 | #[cfg(feature = "simd_support")] 408s | ^^^^^^^^^^^^^^^^^^^^^^^^ 408s | 408s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 408s = help: consider adding `simd_support` as a feature in `Cargo.toml` 408s = note: see for more information about checking conditional configuration 408s 408s warning: unexpected `cfg` condition value: `simd_support` 408s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/integer.rs:13:32 408s | 408s 13 | #[cfg(all(target_arch = "x86", feature = "simd_support"))] 408s | ^^^^^^^^^^^^^^^^^^^^^^^^ 408s | 408s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 408s = help: consider adding `simd_support` as a feature in `Cargo.toml` 408s = note: see for more information about checking conditional configuration 408s 408s warning: unexpected `cfg` condition value: `simd_support` 408s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/integer.rs:15:35 408s | 408s 15 | #[cfg(all(target_arch = "x86_64", feature = "simd_support"))] 408s | ^^^^^^^^^^^^^^^^^^^^^^^^ 408s | 408s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 408s = help: consider adding `simd_support` as a feature in `Cargo.toml` 408s = note: see for more information about checking conditional configuration 408s 408s warning: unexpected `cfg` condition value: `simd_support` 408s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/integer.rs:19:7 408s | 408s 19 | #[cfg(feature = "simd_support")] use packed_simd::*; 408s | ^^^^^^^^^^^^^^^^^^^^^^^^ 408s | 408s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 408s = help: consider adding `simd_support` as a feature in `Cargo.toml` 408s = note: see for more information about checking conditional configuration 408s 408s warning: unexpected `cfg` condition value: `simd_support` 408s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/integer.rs:112:7 408s | 408s 112 | #[cfg(feature = "simd_support")] 408s | ^^^^^^^^^^^^^^^^^^^^^^^^ 408s | 408s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 408s = help: consider adding `simd_support` as a feature in `Cargo.toml` 408s = note: see for more information about checking conditional configuration 408s 408s warning: unexpected `cfg` condition value: `simd_support` 408s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/integer.rs:142:7 408s | 408s 142 | #[cfg(feature = "simd_support")] 408s | ^^^^^^^^^^^^^^^^^^^^^^^^ 408s | 408s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 408s = help: consider adding `simd_support` as a feature in `Cargo.toml` 408s = note: see for more information about checking conditional configuration 408s 408s warning: unexpected `cfg` condition value: `simd_support` 408s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/integer.rs:144:7 408s | 408s 144 | #[cfg(feature = "simd_support")] 408s | ^^^^^^^^^^^^^^^^^^^^^^^^ 408s | 408s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 408s = help: consider adding `simd_support` as a feature in `Cargo.toml` 408s = note: see for more information about checking conditional configuration 408s 408s warning: unexpected `cfg` condition value: `simd_support` 408s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/integer.rs:146:7 408s | 408s 146 | #[cfg(feature = "simd_support")] 408s | ^^^^^^^^^^^^^^^^^^^^^^^^ 408s | 408s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 408s = help: consider adding `simd_support` as a feature in `Cargo.toml` 408s = note: see for more information about checking conditional configuration 408s 408s warning: unexpected `cfg` condition value: `simd_support` 408s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/integer.rs:148:7 408s | 408s 148 | #[cfg(feature = "simd_support")] 408s | ^^^^^^^^^^^^^^^^^^^^^^^^ 408s | 408s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 408s = help: consider adding `simd_support` as a feature in `Cargo.toml` 408s = note: see for more information about checking conditional configuration 408s 408s warning: unexpected `cfg` condition value: `simd_support` 408s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/integer.rs:150:7 408s | 408s 150 | #[cfg(feature = "simd_support")] 408s | ^^^^^^^^^^^^^^^^^^^^^^^^ 408s | 408s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 408s = help: consider adding `simd_support` as a feature in `Cargo.toml` 408s = note: see for more information about checking conditional configuration 408s 408s warning: unexpected `cfg` condition value: `simd_support` 408s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/integer.rs:152:7 408s | 408s 152 | #[cfg(feature = "simd_support")] 408s | ^^^^^^^^^^^^^^^^^^^^^^^^ 408s | 408s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 408s = help: consider adding `simd_support` as a feature in `Cargo.toml` 408s = note: see for more information about checking conditional configuration 408s 408s warning: unexpected `cfg` condition value: `simd_support` 408s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/integer.rs:155:5 408s | 408s 155 | feature = "simd_support", 408s | ^^^^^^^^^^^^^^^^^^^^^^^^ 408s | 408s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 408s = help: consider adding `simd_support` as a feature in `Cargo.toml` 408s = note: see for more information about checking conditional configuration 408s 408s warning: unexpected `cfg` condition value: `simd_support` 408s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:11:7 408s | 408s 11 | #[cfg(feature = "simd_support")] use packed_simd::*; 408s | ^^^^^^^^^^^^^^^^^^^^^^^^ 408s | 408s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 408s = help: consider adding `simd_support` as a feature in `Cargo.toml` 408s = note: see for more information about checking conditional configuration 408s 408s warning: unexpected `cfg` condition value: `simd_support` 408s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:144:7 408s | 408s 144 | #[cfg(feature = "simd_support")] 408s | ^^^^^^^^^^^^^^^^^^^^^^^^ 408s | 408s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 408s = help: consider adding `simd_support` as a feature in `Cargo.toml` 408s = note: see for more information about checking conditional configuration 408s 408s warning: unexpected `cfg` condition name: `std` 408s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:235:11 408s | 408s 235 | #[cfg(not(std))] 408s | ^^^ help: found config with similar value: `feature = "std"` 408s | 408s = help: consider using a Cargo feature instead 408s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 408s [lints.rust] 408s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(std)'] } 408s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(std)");` to the top of the `build.rs` 408s = note: see for more information about checking conditional configuration 408s 408s warning: unexpected `cfg` condition value: `simd_support` 408s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:363:7 408s | 408s 363 | #[cfg(feature = "simd_support")] 408s | ^^^^^^^^^^^^^^^^^^^^^^^^ 408s | 408s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 408s = help: consider adding `simd_support` as a feature in `Cargo.toml` 408s = note: see for more information about checking conditional configuration 408s 408s warning: unexpected `cfg` condition value: `simd_support` 408s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:423:7 408s | 408s 423 | #[cfg(feature="simd_support")] simd_impl! { f32x2, f32, m32x2, u32x2 } 408s | ^^^^^^^^^^^^^^^^^^^^^^ 408s | 408s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 408s = help: consider adding `simd_support` as a feature in `Cargo.toml` 408s = note: see for more information about checking conditional configuration 408s 408s warning: unexpected `cfg` condition value: `simd_support` 408s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:424:7 408s | 408s 424 | #[cfg(feature="simd_support")] simd_impl! { f32x4, f32, m32x4, u32x4 } 408s | ^^^^^^^^^^^^^^^^^^^^^^ 408s | 408s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 408s = help: consider adding `simd_support` as a feature in `Cargo.toml` 408s = note: see for more information about checking conditional configuration 408s 408s warning: unexpected `cfg` condition value: `simd_support` 408s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:425:7 408s | 408s 425 | #[cfg(feature="simd_support")] simd_impl! { f32x8, f32, m32x8, u32x8 } 408s | ^^^^^^^^^^^^^^^^^^^^^^ 408s | 408s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 408s = help: consider adding `simd_support` as a feature in `Cargo.toml` 408s = note: see for more information about checking conditional configuration 408s 408s warning: unexpected `cfg` condition value: `simd_support` 408s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:426:7 408s | 408s 426 | #[cfg(feature="simd_support")] simd_impl! { f32x16, f32, m32x16, u32x16 } 408s | ^^^^^^^^^^^^^^^^^^^^^^ 408s | 408s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 408s = help: consider adding `simd_support` as a feature in `Cargo.toml` 408s = note: see for more information about checking conditional configuration 408s 408s warning: unexpected `cfg` condition value: `simd_support` 408s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:427:7 408s | 408s 427 | #[cfg(feature="simd_support")] simd_impl! { f64x2, f64, m64x2, u64x2 } 408s | ^^^^^^^^^^^^^^^^^^^^^^ 408s | 408s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 408s = help: consider adding `simd_support` as a feature in `Cargo.toml` 408s = note: see for more information about checking conditional configuration 408s 408s warning: unexpected `cfg` condition value: `simd_support` 408s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:428:7 408s | 408s 428 | #[cfg(feature="simd_support")] simd_impl! { f64x4, f64, m64x4, u64x4 } 408s | ^^^^^^^^^^^^^^^^^^^^^^ 408s | 408s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 408s = help: consider adding `simd_support` as a feature in `Cargo.toml` 408s = note: see for more information about checking conditional configuration 408s 408s warning: unexpected `cfg` condition value: `simd_support` 408s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:429:7 408s | 408s 429 | #[cfg(feature="simd_support")] simd_impl! { f64x8, f64, m64x8, u64x8 } 408s | ^^^^^^^^^^^^^^^^^^^^^^ 408s | 408s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 408s = help: consider adding `simd_support` as a feature in `Cargo.toml` 408s = note: see for more information about checking conditional configuration 408s 408s warning: unexpected `cfg` condition name: `std` 408s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:291:19 408s | 408s 291 | #[cfg(not(std))] 408s | ^^^ help: found config with similar value: `feature = "std"` 408s ... 408s 359 | scalar_float_impl!(f32, u32); 408s | ---------------------------- in this macro invocation 408s | 408s = help: consider using a Cargo feature instead 408s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 408s [lints.rust] 408s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(std)'] } 408s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(std)");` to the top of the `build.rs` 408s = note: see for more information about checking conditional configuration 408s = note: this warning originates in the macro `scalar_float_impl` (in Nightly builds, run with -Z macro-backtrace for more info) 408s 408s warning: unexpected `cfg` condition name: `std` 408s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:291:19 408s | 408s 291 | #[cfg(not(std))] 408s | ^^^ help: found config with similar value: `feature = "std"` 408s ... 408s 360 | scalar_float_impl!(f64, u64); 408s | ---------------------------- in this macro invocation 408s | 408s = help: consider using a Cargo feature instead 408s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 408s [lints.rust] 408s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(std)'] } 408s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(std)");` to the top of the `build.rs` 408s = note: see for more information about checking conditional configuration 408s = note: this warning originates in the macro `scalar_float_impl` (in Nightly builds, run with -Z macro-backtrace for more info) 408s 408s warning: unexpected `cfg` condition name: `doc_cfg` 408s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/weighted_index.rs:80:12 408s | 408s 80 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 408s | ^^^^^^^ 408s | 408s = help: consider using a Cargo feature instead 408s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 408s [lints.rust] 408s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 408s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 408s = note: see for more information about checking conditional configuration 408s 408s warning: unexpected `cfg` condition name: `doc_cfg` 408s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/weighted_index.rs:429:12 408s | 408s 429 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 408s | ^^^^^^^ 408s | 408s = help: consider using a Cargo feature instead 408s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 408s [lints.rust] 408s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 408s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 408s = note: see for more information about checking conditional configuration 408s 408s warning: unexpected `cfg` condition value: `simd_support` 408s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/uniform.rs:121:7 408s | 408s 121 | #[cfg(feature = "simd_support")] use packed_simd::*; 408s | ^^^^^^^^^^^^^^^^^^^^^^^^ 408s | 408s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 408s = help: consider adding `simd_support` as a feature in `Cargo.toml` 408s = note: see for more information about checking conditional configuration 408s 408s warning: unexpected `cfg` condition value: `simd_support` 408s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/uniform.rs:572:7 408s | 408s 572 | #[cfg(feature = "simd_support")] 408s | ^^^^^^^^^^^^^^^^^^^^^^^^ 408s | 408s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 408s = help: consider adding `simd_support` as a feature in `Cargo.toml` 408s = note: see for more information about checking conditional configuration 408s 408s warning: unexpected `cfg` condition value: `simd_support` 408s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/uniform.rs:679:7 408s | 408s 679 | #[cfg(feature = "simd_support")] 408s | ^^^^^^^^^^^^^^^^^^^^^^^^ 408s | 408s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 408s = help: consider adding `simd_support` as a feature in `Cargo.toml` 408s = note: see for more information about checking conditional configuration 408s 408s warning: unexpected `cfg` condition value: `simd_support` 408s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/uniform.rs:687:7 408s | 408s 687 | #[cfg(feature = "simd_support")] 408s | ^^^^^^^^^^^^^^^^^^^^^^^^ 408s | 408s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 408s = help: consider adding `simd_support` as a feature in `Cargo.toml` 408s = note: see for more information about checking conditional configuration 408s 408s warning: unexpected `cfg` condition value: `simd_support` 408s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/uniform.rs:696:7 408s | 408s 696 | #[cfg(feature = "simd_support")] 408s | ^^^^^^^^^^^^^^^^^^^^^^^^ 408s | 408s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 408s = help: consider adding `simd_support` as a feature in `Cargo.toml` 408s = note: see for more information about checking conditional configuration 408s 408s warning: unexpected `cfg` condition value: `simd_support` 408s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/uniform.rs:706:7 408s | 408s 706 | #[cfg(feature = "simd_support")] 408s | ^^^^^^^^^^^^^^^^^^^^^^^^ 408s | 408s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 408s = help: consider adding `simd_support` as a feature in `Cargo.toml` 408s = note: see for more information about checking conditional configuration 408s 408s warning: unexpected `cfg` condition value: `simd_support` 408s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/uniform.rs:1001:7 408s | 408s 1001 | #[cfg(feature = "simd_support")] 408s | ^^^^^^^^^^^^^^^^^^^^^^^^ 408s | 408s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 408s = help: consider adding `simd_support` as a feature in `Cargo.toml` 408s = note: see for more information about checking conditional configuration 408s 408s warning: unexpected `cfg` condition value: `simd_support` 408s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/uniform.rs:1003:7 408s | 408s 1003 | #[cfg(feature = "simd_support")] 408s | ^^^^^^^^^^^^^^^^^^^^^^^^ 408s | 408s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 408s = help: consider adding `simd_support` as a feature in `Cargo.toml` 408s = note: see for more information about checking conditional configuration 408s 408s warning: unexpected `cfg` condition value: `simd_support` 408s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/uniform.rs:1005:7 408s | 408s 1005 | #[cfg(feature = "simd_support")] 408s | ^^^^^^^^^^^^^^^^^^^^^^^^ 408s | 408s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 408s = help: consider adding `simd_support` as a feature in `Cargo.toml` 408s = note: see for more information about checking conditional configuration 408s 408s warning: unexpected `cfg` condition value: `simd_support` 408s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/uniform.rs:1007:7 408s | 408s 1007 | #[cfg(feature = "simd_support")] 408s | ^^^^^^^^^^^^^^^^^^^^^^^^ 408s | 408s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 408s = help: consider adding `simd_support` as a feature in `Cargo.toml` 408s = note: see for more information about checking conditional configuration 408s 408s warning: unexpected `cfg` condition value: `simd_support` 408s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/uniform.rs:1010:7 408s | 408s 1010 | #[cfg(feature = "simd_support")] 408s | ^^^^^^^^^^^^^^^^^^^^^^^^ 408s | 408s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 408s = help: consider adding `simd_support` as a feature in `Cargo.toml` 408s = note: see for more information about checking conditional configuration 408s 408s warning: unexpected `cfg` condition value: `simd_support` 408s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/uniform.rs:1012:7 408s | 408s 1012 | #[cfg(feature = "simd_support")] 408s | ^^^^^^^^^^^^^^^^^^^^^^^^ 408s | 408s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 408s = help: consider adding `simd_support` as a feature in `Cargo.toml` 408s = note: see for more information about checking conditional configuration 408s 408s warning: unexpected `cfg` condition value: `simd_support` 408s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/uniform.rs:1014:7 408s | 408s 1014 | #[cfg(feature = "simd_support")] 408s | ^^^^^^^^^^^^^^^^^^^^^^^^ 408s | 408s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 408s = help: consider adding `simd_support` as a feature in `Cargo.toml` 408s = note: see for more information about checking conditional configuration 408s 408s warning: unexpected `cfg` condition name: `doc_cfg` 408s --> /usr/share/cargo/registry/rand-0.8.5/src/rng.rs:395:12 408s | 408s 395 | #[cfg_attr(doc_cfg, doc(cfg(feature = "min_const_gen")))] 408s | ^^^^^^^ 408s | 408s = help: consider using a Cargo feature instead 408s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 408s [lints.rust] 408s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 408s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 408s = note: see for more information about checking conditional configuration 408s 408s warning: unexpected `cfg` condition name: `doc_cfg` 408s --> /usr/share/cargo/registry/rand-0.8.5/src/rngs/mod.rs:99:12 408s | 408s 99 | #[cfg_attr(doc_cfg, doc(cfg(feature = "std")))] 408s | ^^^^^^^ 408s | 408s = help: consider using a Cargo feature instead 408s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 408s [lints.rust] 408s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 408s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 408s = note: see for more information about checking conditional configuration 408s 408s warning: unexpected `cfg` condition name: `doc_cfg` 408s --> /usr/share/cargo/registry/rand-0.8.5/src/rngs/mod.rs:118:12 408s | 408s 118 | #[cfg_attr(doc_cfg, doc(cfg(feature = "getrandom")))] 408s | ^^^^^^^ 408s | 408s = help: consider using a Cargo feature instead 408s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 408s [lints.rust] 408s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 408s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 408s = note: see for more information about checking conditional configuration 408s 408s warning: unexpected `cfg` condition name: `doc_cfg` 408s --> /usr/share/cargo/registry/rand-0.8.5/src/rngs/std.rs:32:12 408s | 408s 32 | #[cfg_attr(doc_cfg, doc(cfg(feature = "std_rng")))] 408s | ^^^^^^^ 408s | 408s = help: consider using a Cargo feature instead 408s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 408s [lints.rust] 408s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 408s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 408s = note: see for more information about checking conditional configuration 408s 408s warning: unexpected `cfg` condition name: `doc_cfg` 408s --> /usr/share/cargo/registry/rand-0.8.5/src/rngs/thread.rs:60:12 408s | 408s 60 | #[cfg_attr(doc_cfg, doc(cfg(all(feature = "std", feature = "std_rng"))))] 408s | ^^^^^^^ 408s | 408s = help: consider using a Cargo feature instead 408s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 408s [lints.rust] 408s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 408s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 408s = note: see for more information about checking conditional configuration 408s 408s warning: unexpected `cfg` condition name: `doc_cfg` 408s --> /usr/share/cargo/registry/rand-0.8.5/src/rngs/thread.rs:87:12 408s | 408s 87 | #[cfg_attr(doc_cfg, doc(cfg(all(feature = "std", feature = "std_rng"))))] 408s | ^^^^^^^ 408s | 408s = help: consider using a Cargo feature instead 408s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 408s [lints.rust] 408s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 408s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 408s = note: see for more information about checking conditional configuration 408s 408s warning: unexpected `cfg` condition name: `doc_cfg` 408s --> /usr/share/cargo/registry/rand-0.8.5/src/seq/mod.rs:29:12 408s | 408s 29 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 408s | ^^^^^^^ 408s | 408s = help: consider using a Cargo feature instead 408s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 408s [lints.rust] 408s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 408s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 408s = note: see for more information about checking conditional configuration 408s 408s warning: unexpected `cfg` condition name: `doc_cfg` 408s --> /usr/share/cargo/registry/rand-0.8.5/src/seq/mod.rs:623:12 408s | 408s 623 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 408s | ^^^^^^^ 408s | 408s = help: consider using a Cargo feature instead 408s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 408s [lints.rust] 408s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 408s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 408s = note: see for more information about checking conditional configuration 408s 408s warning: unexpected `cfg` condition name: `doc_cfg` 408s --> /usr/share/cargo/registry/rand-0.8.5/src/seq/index.rs:276:12 408s | 408s 276 | #[cfg_attr(doc_cfg, doc(cfg(feature = "std")))] 408s | ^^^^^^^ 408s | 408s = help: consider using a Cargo feature instead 408s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 408s [lints.rust] 408s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 408s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 408s = note: see for more information about checking conditional configuration 408s 408s warning: unexpected `cfg` condition name: `doc_cfg` 408s --> /usr/share/cargo/registry/rand-0.8.5/src/seq/mod.rs:114:16 408s | 408s 114 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 408s | ^^^^^^^ 408s | 408s = help: consider using a Cargo feature instead 408s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 408s [lints.rust] 408s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 408s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 408s = note: see for more information about checking conditional configuration 408s 408s warning: unexpected `cfg` condition name: `doc_cfg` 408s --> /usr/share/cargo/registry/rand-0.8.5/src/seq/mod.rs:142:16 408s | 408s 142 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 408s | ^^^^^^^ 408s | 408s = help: consider using a Cargo feature instead 408s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 408s [lints.rust] 408s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 408s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 408s = note: see for more information about checking conditional configuration 408s 408s warning: unexpected `cfg` condition name: `doc_cfg` 408s --> /usr/share/cargo/registry/rand-0.8.5/src/seq/mod.rs:170:16 408s | 408s 170 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 408s | ^^^^^^^ 408s | 408s = help: consider using a Cargo feature instead 408s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 408s [lints.rust] 408s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 408s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 408s = note: see for more information about checking conditional configuration 408s 408s warning: unexpected `cfg` condition name: `doc_cfg` 408s --> /usr/share/cargo/registry/rand-0.8.5/src/seq/mod.rs:219:16 408s | 408s 219 | #[cfg_attr(doc_cfg, doc(cfg(feature = "std")))] 408s | ^^^^^^^ 408s | 408s = help: consider using a Cargo feature instead 408s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 408s [lints.rust] 408s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 408s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 408s = note: see for more information about checking conditional configuration 408s 408s warning: unexpected `cfg` condition name: `doc_cfg` 408s --> /usr/share/cargo/registry/rand-0.8.5/src/seq/mod.rs:465:16 408s | 408s 465 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 408s | ^^^^^^^ 408s | 408s = help: consider using a Cargo feature instead 408s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 408s [lints.rust] 408s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 408s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 408s = note: see for more information about checking conditional configuration 408s 408s warning: trait `Float` is never used 408s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:238:18 408s | 408s 238 | pub(crate) trait Float: Sized { 408s | ^^^^^ 408s | 408s = note: `#[warn(dead_code)]` on by default 408s 408s warning: associated items `lanes`, `extract`, and `replace` are never used 408s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:247:8 408s | 408s 245 | pub(crate) trait FloatAsSIMD: Sized { 408s | ----------- associated items in this trait 408s 246 | #[inline(always)] 408s 247 | fn lanes() -> usize { 408s | ^^^^^ 408s ... 408s 255 | fn extract(self, index: usize) -> Self { 408s | ^^^^^^^ 408s ... 408s 260 | fn replace(self, index: usize, new_value: Self) -> Self { 408s | ^^^^^^^ 408s 408s warning: method `all` is never used 408s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:268:8 408s | 408s 266 | pub(crate) trait BoolAsSIMD: Sized { 408s | ---------- method in this trait 408s 267 | fn any(self) -> bool; 408s 268 | fn all(self) -> bool; 408s | ^^^ 408s 408s warning: `rand` (lib) generated 70 warnings (1 duplicate) 408s Compiling sha1 v0.10.6 408s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=sha1 CARGO_MANIFEST_DIR=/tmp/tmp.WgXbjyKfA6/registry/sha1-0.10.6 CARGO_MANIFEST_PATH=/tmp/tmp.WgXbjyKfA6/registry/sha1-0.10.6/Cargo.toml CARGO_PKG_AUTHORS='RustCrypto Developers' CARGO_PKG_DESCRIPTION='SHA-1 hash function' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=sha1 CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/RustCrypto/hashes' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.10.6 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=10 CARGO_PKG_VERSION_PATCH=6 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.WgXbjyKfA6/target/debug/deps rustc --crate-name sha1 --edition=2018 /tmp/tmp.WgXbjyKfA6/registry/sha1-0.10.6/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("asm", "compress", "default", "force-soft", "loongarch64_asm", "oid", "sha1-asm", "std"))' -C metadata=7a229c14a1ac9b31 -C extra-filename=-7a229c14a1ac9b31 --out-dir /tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.WgXbjyKfA6/target/debug/deps --extern cfg_if=/tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/deps/libcfg_if-ff3ff84a061de73f.rmeta --extern digest=/tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/deps/libdigest-027272cf65436a63.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.WgXbjyKfA6/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 408s warning: `sha1` (lib) generated 1 warning (1 duplicate) 408s Compiling ordered-stream v0.2.0 408s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=ordered_stream CARGO_MANIFEST_DIR=/tmp/tmp.WgXbjyKfA6/registry/ordered-stream-0.2.0 CARGO_MANIFEST_PATH=/tmp/tmp.WgXbjyKfA6/registry/ordered-stream-0.2.0/Cargo.toml CARGO_PKG_AUTHORS='Daniel De Graaf :Zeeshan Ali Khan ' CARGO_PKG_DESCRIPTION='Streams that are ordered relative to external events' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=ordered-stream CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/danieldg/ordered-stream' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.2.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.WgXbjyKfA6/target/debug/deps rustc --crate-name ordered_stream --edition=2018 /tmp/tmp.WgXbjyKfA6/registry/ordered-stream-0.2.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=5d03c0a21a4bd5e4 -C extra-filename=-5d03c0a21a4bd5e4 --out-dir /tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.WgXbjyKfA6/target/debug/deps --extern futures_core=/tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/deps/libfutures_core-8d305950da6bf5c8.rmeta --extern pin_project_lite=/tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/deps/libpin_project_lite-5dc815523e98d889.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.WgXbjyKfA6/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 409s warning: `ordered-stream` (lib) generated 1 warning (1 duplicate) 409s Compiling zbus_macros v4.4.0 409s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=zbus_macros CARGO_MANIFEST_DIR=/tmp/tmp.WgXbjyKfA6/registry/zbus_macros-4.4.0 CARGO_MANIFEST_PATH=/tmp/tmp.WgXbjyKfA6/registry/zbus_macros-4.4.0/Cargo.toml CARGO_PKG_AUTHORS='Marc-André Lureau :Zeeshan Ali Khan ' CARGO_PKG_DESCRIPTION='proc-macros for zbus' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=zbus_macros CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dbus2/zbus/' CARGO_PKG_RUST_VERSION=1.75 CARGO_PKG_VERSION=4.4.0 CARGO_PKG_VERSION_MAJOR=4 CARGO_PKG_VERSION_MINOR=4 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.WgXbjyKfA6/target/debug/deps rustc --crate-name zbus_macros --edition=2021 /tmp/tmp.WgXbjyKfA6/registry/zbus_macros-4.4.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type proc-macro --emit=dep-info,link -C prefer-dynamic -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=fbbb45642851aa97 -C extra-filename=-fbbb45642851aa97 --out-dir /tmp/tmp.WgXbjyKfA6/target/debug/deps -L dependency=/tmp/tmp.WgXbjyKfA6/target/debug/deps --extern proc_macro_crate=/tmp/tmp.WgXbjyKfA6/target/debug/deps/libproc_macro_crate-900b46bff7d8f3e2.rlib --extern proc_macro2=/tmp/tmp.WgXbjyKfA6/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rlib --extern quote=/tmp/tmp.WgXbjyKfA6/target/debug/deps/libquote-dc92c6f25ee0f0c6.rlib --extern syn=/tmp/tmp.WgXbjyKfA6/target/debug/deps/libsyn-0167beed9e699402.rlib --extern zvariant_utils=/tmp/tmp.WgXbjyKfA6/target/debug/deps/libzvariant_utils-555d90bad4acf190.rlib --extern proc_macro --cap-lints warn` 410s warning: `tokio` (lib) generated 1 warning (1 duplicate) 410s Compiling serde_repr v0.1.12 410s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=serde_repr CARGO_MANIFEST_DIR=/tmp/tmp.WgXbjyKfA6/registry/serde_repr-0.1.12 CARGO_MANIFEST_PATH=/tmp/tmp.WgXbjyKfA6/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.WgXbjyKfA6/target/debug/deps rustc --crate-name serde_repr --edition=2018 /tmp/tmp.WgXbjyKfA6/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=79727398b79ecac5 -C extra-filename=-79727398b79ecac5 --out-dir /tmp/tmp.WgXbjyKfA6/target/debug/deps -L dependency=/tmp/tmp.WgXbjyKfA6/target/debug/deps --extern proc_macro2=/tmp/tmp.WgXbjyKfA6/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rlib --extern quote=/tmp/tmp.WgXbjyKfA6/target/debug/deps/libquote-dc92c6f25ee0f0c6.rlib --extern syn=/tmp/tmp.WgXbjyKfA6/target/debug/deps/libsyn-0167beed9e699402.rlib --extern proc_macro --cap-lints warn` 411s Compiling async-trait v0.1.83 411s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=async_trait CARGO_MANIFEST_DIR=/tmp/tmp.WgXbjyKfA6/registry/async-trait-0.1.83 CARGO_MANIFEST_PATH=/tmp/tmp.WgXbjyKfA6/registry/async-trait-0.1.83/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='Type erasure for async trait methods' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=async-trait CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/async-trait' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=0.1.83 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=83 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.WgXbjyKfA6/target/debug/deps rustc --crate-name async_trait --edition=2021 /tmp/tmp.WgXbjyKfA6/registry/async-trait-0.1.83/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=e4c90cfd514ad223 -C extra-filename=-e4c90cfd514ad223 --out-dir /tmp/tmp.WgXbjyKfA6/target/debug/deps -L dependency=/tmp/tmp.WgXbjyKfA6/target/debug/deps --extern proc_macro2=/tmp/tmp.WgXbjyKfA6/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rlib --extern quote=/tmp/tmp.WgXbjyKfA6/target/debug/deps/libquote-dc92c6f25ee0f0c6.rlib --extern syn=/tmp/tmp.WgXbjyKfA6/target/debug/deps/libsyn-0167beed9e699402.rlib --extern proc_macro --cap-lints warn` 412s Compiling xdg-home v1.3.0 412s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=xdg_home CARGO_MANIFEST_DIR=/tmp/tmp.WgXbjyKfA6/registry/xdg-home-1.3.0 CARGO_MANIFEST_PATH=/tmp/tmp.WgXbjyKfA6/registry/xdg-home-1.3.0/Cargo.toml CARGO_PKG_AUTHORS='Zeeshan Ali Khan ' CARGO_PKG_DESCRIPTION='The user'\''s home directory as per XDG Specification' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=xdg-home CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/zeenix/xdg-home' CARGO_PKG_RUST_VERSION=1.60 CARGO_PKG_VERSION=1.3.0 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.WgXbjyKfA6/target/debug/deps rustc --crate-name xdg_home --edition=2021 /tmp/tmp.WgXbjyKfA6/registry/xdg-home-1.3.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=4230920bfa085c8c -C extra-filename=-4230920bfa085c8c --out-dir /tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.WgXbjyKfA6/target/debug/deps --extern libc=/tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/deps/liblibc-cf2521928ac070dc.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.WgXbjyKfA6/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 412s warning: `xdg-home` (lib) generated 1 warning (1 duplicate) 412s Compiling hex v0.4.3 412s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=hex CARGO_MANIFEST_DIR=/tmp/tmp.WgXbjyKfA6/registry/hex-0.4.3 CARGO_MANIFEST_PATH=/tmp/tmp.WgXbjyKfA6/registry/hex-0.4.3/Cargo.toml CARGO_PKG_AUTHORS='KokaKiwi ' CARGO_PKG_DESCRIPTION='Encoding and decoding data into/from hexadecimal representation.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=hex CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/KokaKiwi/rust-hex' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.4.3 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=4 CARGO_PKG_VERSION_PATCH=3 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.WgXbjyKfA6/target/debug/deps rustc --crate-name hex --edition=2018 /tmp/tmp.WgXbjyKfA6/registry/hex-0.4.3/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="alloc"' --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "default", "serde", "std"))' -C metadata=d04eec135ea2b5a3 -C extra-filename=-d04eec135ea2b5a3 --out-dir /tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.WgXbjyKfA6/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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.WgXbjyKfA6/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 412s warning: `hex` (lib) generated 1 warning (1 duplicate) 412s Compiling futures-channel v0.3.31 412s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=futures_channel CARGO_MANIFEST_DIR=/tmp/tmp.WgXbjyKfA6/registry/futures-channel-0.3.31 CARGO_MANIFEST_PATH=/tmp/tmp.WgXbjyKfA6/registry/futures-channel-0.3.31/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='Channels for asynchronous communication using futures-rs. 412s ' CARGO_PKG_HOMEPAGE='https://rust-lang.github.io/futures-rs' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=futures-channel CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/futures-rs' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=0.3.31 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=31 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.WgXbjyKfA6/target/debug/deps rustc --crate-name futures_channel --edition=2018 /tmp/tmp.WgXbjyKfA6/registry/futures-channel-0.3.31/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --warn=unreachable_pub --warn=unexpected_cfgs --warn=single_use_lifetimes --warn=rust_2018_idioms --warn=missing_debug_implementations --check-cfg 'cfg(futures_sanitizer)' --cfg 'feature="alloc"' --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "cfg-target-has-atomic", "default", "futures-sink", "sink", "std", "unstable"))' -C metadata=8ed485ea134c933c -C extra-filename=-8ed485ea134c933c --out-dir /tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.WgXbjyKfA6/target/debug/deps --extern futures_core=/tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/deps/libfutures_core-8d305950da6bf5c8.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.WgXbjyKfA6/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 413s Compiling zbus v4.4.0 413s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=zbus CARGO_MANIFEST_DIR=/tmp/tmp.WgXbjyKfA6/registry/zbus-4.4.0 CARGO_MANIFEST_PATH=/tmp/tmp.WgXbjyKfA6/registry/zbus-4.4.0/Cargo.toml CARGO_PKG_AUTHORS='Zeeshan Ali Khan ' CARGO_PKG_DESCRIPTION='API for D-Bus communication' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=zbus CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dbus2/zbus/' CARGO_PKG_RUST_VERSION=1.75 CARGO_PKG_VERSION=4.4.0 CARGO_PKG_VERSION_MAJOR=4 CARGO_PKG_VERSION_MINOR=4 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.WgXbjyKfA6/target/debug/deps rustc --crate-name zbus --edition=2021 /tmp/tmp.WgXbjyKfA6/registry/zbus-4.4.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="tokio"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("async-executor", "async-fs", "async-io", "async-lock", "async-task", "blocking", "bus-impl", "chrono", "default", "heapless", "option-as-array", "p2p", "time", "tokio", "tokio-vsock", "url", "uuid", "vsock"))' -C metadata=c4d421f1e5914a83 -C extra-filename=-c4d421f1e5914a83 --out-dir /tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.WgXbjyKfA6/target/debug/deps --extern async_broadcast=/tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/deps/libasync_broadcast-852b859fbdd9a4f4.rmeta --extern async_trait=/tmp/tmp.WgXbjyKfA6/target/debug/deps/libasync_trait-e4c90cfd514ad223.so --extern enumflags2=/tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/deps/libenumflags2-2867d32c4b4f39e8.rmeta --extern event_listener=/tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/deps/libevent_listener-93bdad7496d4853a.rmeta --extern futures_core=/tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/deps/libfutures_core-8d305950da6bf5c8.rmeta --extern futures_sink=/tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/deps/libfutures_sink-2335bc9d806f8753.rmeta --extern futures_util=/tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/deps/libfutures_util-23beed03671fe7d3.rmeta --extern hex=/tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/deps/libhex-d04eec135ea2b5a3.rmeta --extern nix=/tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/deps/libnix-1c06771599af3024.rmeta --extern ordered_stream=/tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/deps/libordered_stream-5d03c0a21a4bd5e4.rmeta --extern rand=/tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/deps/librand-da2a195293a4eb5f.rmeta --extern serde=/tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/deps/libserde-0e7dff716e38da0d.rmeta --extern serde_repr=/tmp/tmp.WgXbjyKfA6/target/debug/deps/libserde_repr-79727398b79ecac5.so --extern sha1=/tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/deps/libsha1-7a229c14a1ac9b31.rmeta --extern static_assertions=/tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/deps/libstatic_assertions-18df01cc327facaa.rmeta --extern tokio=/tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/deps/libtokio-f48697ab22907b1d.rmeta --extern tracing=/tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/deps/libtracing-5f8a2432d30b4ef1.rmeta --extern xdg_home=/tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/deps/libxdg_home-4230920bfa085c8c.rmeta --extern zbus_macros=/tmp/tmp.WgXbjyKfA6/target/debug/deps/libzbus_macros-fbbb45642851aa97.so --extern zbus_names=/tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/deps/libzbus_names-68f942ce83c6099a.rmeta --extern zvariant=/tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/deps/libzvariant-f63ab59735f855c5.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.WgXbjyKfA6/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 413s warning: `futures-channel` (lib) generated 1 warning (1 duplicate) 413s warning: unexpected `cfg` condition name: `tokio_unstable` 413s --> /usr/share/cargo/registry/zbus-4.4.0/src/abstractions/executor.rs:50:19 413s | 413s 50 | #[cfg(tokio_unstable)] 413s | ^^^^^^^^^^^^^^ 413s | 413s = help: expected names are: `clippy`, `debug_assertions`, `doc`, `docsrs`, `doctest`, `feature`, `fmt_debug`, `miri`, `overflow_checks`, `panic`, `proc_macro`, `relocation_model`, `rustfmt`, `sanitize`, `sanitizer_cfi_generalize_pointers`, `sanitizer_cfi_normalize_integers`, `target_abi`, `target_arch`, `target_endian`, `target_env`, `target_family`, `target_feature`, `target_has_atomic`, `target_has_atomic_equal_alignment`, `target_has_atomic_load_store`, `target_os`, `target_pointer_width`, `target_thread_local`, `target_vendor`, `test`, `ub_checks`, `unix`, and `windows` 413s = help: consider using a Cargo feature instead 413s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 413s [lints.rust] 413s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tokio_unstable)'] } 413s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tokio_unstable)");` to the top of the `build.rs` 413s = note: see for more information about checking conditional configuration 413s = note: `#[warn(unexpected_cfgs)]` on by default 413s 413s warning: unexpected `cfg` condition name: `tokio_unstable` 413s --> /usr/share/cargo/registry/zbus-4.4.0/src/abstractions/executor.rs:60:23 413s | 413s 60 | #[cfg(not(tokio_unstable))] 413s | ^^^^^^^^^^^^^^ 413s | 413s = help: consider using a Cargo feature instead 413s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 413s [lints.rust] 413s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tokio_unstable)'] } 413s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tokio_unstable)");` to the top of the `build.rs` 413s = note: see for more information about checking conditional configuration 413s 413s warning: unexpected `cfg` condition name: `tokio_unstable` 413s --> /usr/share/cargo/registry/zbus-4.4.0/src/abstractions/executor.rs:177:19 413s | 413s 177 | #[cfg(tokio_unstable)] 413s | ^^^^^^^^^^^^^^ 413s | 413s = help: consider using a Cargo feature instead 413s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 413s [lints.rust] 413s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tokio_unstable)'] } 413s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tokio_unstable)");` to the top of the `build.rs` 413s = note: see for more information about checking conditional configuration 413s 413s warning: unexpected `cfg` condition name: `tokio_unstable` 413s --> /usr/share/cargo/registry/zbus-4.4.0/src/abstractions/executor.rs:187:23 413s | 413s 187 | #[cfg(not(tokio_unstable))] 413s | ^^^^^^^^^^^^^^ 413s | 413s = help: consider using a Cargo feature instead 413s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 413s [lints.rust] 413s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tokio_unstable)'] } 413s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tokio_unstable)");` to the top of the `build.rs` 413s = note: see for more information about checking conditional configuration 413s 423s warning: `zbus` (lib) generated 5 warnings (1 duplicate) 423s Compiling search-provider v0.10.0 (/usr/share/cargo/registry/search-provider-0.10.0) 423s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=search_provider CARGO_MANIFEST_DIR=/usr/share/cargo/registry/search-provider-0.10.0 CARGO_MANIFEST_PATH=/usr/share/cargo/registry/search-provider-0.10.0/Cargo.toml CARGO_PKG_AUTHORS='Felix Häcker ' CARGO_PKG_DESCRIPTION='Rust wrapper around the GNOME Shell search provider API' CARGO_PKG_HOMEPAGE='https://gitlab.gnome.org/World/Rust/search-provider' CARGO_PKG_LICENSE=' GPL-3.0-or-later' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=search-provider CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://gitlab.gnome.org/World/Rust/search-provider' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.10.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=10 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' CARGO_PRIMARY_PACKAGE=1 LD_LIBRARY_PATH=/tmp/tmp.WgXbjyKfA6/target/debug/deps rustc --crate-name search_provider --edition=2021 src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --test --cfg 'feature="tokio"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("async-std", "default", "gdk", "gdk-pixbuf", "tokio"))' -C metadata=67937cca39ac3676 -C extra-filename=-67937cca39ac3676 --out-dir /tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -C incremental=/tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/incremental -L dependency=/tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.WgXbjyKfA6/target/debug/deps --extern futures_channel=/tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/deps/libfutures_channel-8ed485ea134c933c.rlib --extern futures_util=/tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/deps/libfutures_util-23beed03671fe7d3.rlib --extern serde=/tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/deps/libserde-0e7dff716e38da0d.rlib --extern zbus=/tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/deps/libzbus-c4d421f1e5914a83.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.WgXbjyKfA6/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 424s warning: `search-provider` (lib test) generated 1 warning (1 duplicate) 424s Finished `test` profile [unoptimized + debuginfo] target(s) in 40.52s 424s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_MANIFEST_DIR=/usr/share/cargo/registry/search-provider-0.10.0 CARGO_MANIFEST_PATH=/usr/share/cargo/registry/search-provider-0.10.0/Cargo.toml CARGO_PKG_AUTHORS='Felix Häcker ' CARGO_PKG_DESCRIPTION='Rust wrapper around the GNOME Shell search provider API' CARGO_PKG_HOMEPAGE='https://gitlab.gnome.org/World/Rust/search-provider' CARGO_PKG_LICENSE=' GPL-3.0-or-later' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=search-provider CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://gitlab.gnome.org/World/Rust/search-provider' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.10.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=10 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/deps:/tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' /tmp/tmp.WgXbjyKfA6/target/s390x-unknown-linux-gnu/debug/deps/search_provider-67937cca39ac3676` 424s 424s running 1 test 424s test result_metadata::tests::icon_data_signature ... ok 424s 424s test result: ok. 1 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.00s 424s 424s /tmp/autopkgtest.9UAdYD/wrapper.sh: checking for leaked background processes... 424s /tmp/autopkgtest.9UAdYD/wrapper.sh: waiting for tee/cat subprocesses... 424s /tmp/autopkgtest.9UAdYD/wrapper.sh: cleaning up... 424s /tmp/autopkgtest.9UAdYD/wrapper.sh: Exit status: 0 424s autopkgtest: DBG: testbed command exited with code 0 424s autopkgtest [18:32:31]: test librust-search-provider-dev:tokio: -----------------------] 424s autopkgtest: DBG: testbed executing test finished with exit status 0 424s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.9UAdYD/librust-search-provider-dev%3Atokio-stdout /tmp/autopkgtest-work.fgzbr70j/out/librust-search-provider-dev%3Atokio-stdout 424s autopkgtest: DBG: got reply from testbed: ok 424s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.9UAdYD/librust-search-provider-dev%3Atokio-stderr /tmp/autopkgtest-work.fgzbr70j/out/librust-search-provider-dev%3Atokio-stderr 425s autopkgtest: DBG: got reply from testbed: ok 425s librust-search-provider-dev:tokio PASS 425s autopkgtest [18:32:32]: test librust-search-provider-dev:tokio: - - - - - - - - - - results - - - - - - - - - - 425s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.9UAdYD/librust-search-provider-dev%3Atokio-artifacts/ /tmp/autopkgtest-work.fgzbr70j/out/artifacts/ 425s autopkgtest: DBG: got reply from testbed: ok 425s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.9UAdYD/librust-search-provider-dev:tokio-artifacts', '/tmp/autopkgtest.9UAdYD/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 425s autopkgtest: DBG: testbed command exited with code 0 425s autopkgtest [18:32:32]: test librust-search-provider-dev:: preparing testbed 425s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['dh-cargo (>= 18)', 'librust-search-provider-dev'], deps_new=['dh-cargo (>= 18)', 'librust-search-provider-dev'] 425s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 425s autopkgtest: DBG: install_deps: deps_new=['dh-cargo (>= 18)', 'librust-search-provider-dev'] 425s autopkgtest: DBG: install-deps: satisfying dh-cargo (>= 18), librust-search-provider-dev 425s autopkgtest: DBG: can use apt-get on testbed: True 425s 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-search-provider-dev'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 425s Reading package lists... 425s Building dependency tree... 425s Reading state information... 425s Starting pkgProblemResolver with broken count: 0 426s Starting 2 pkgProblemResolver with broken count: 0 426s Done 426s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 426s autopkgtest: DBG: testbed command exited with code 0 426s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'librust-search-provider-dev'], kind short, sout pipe, serr pipe, env [] 426s autopkgtest: DBG: testbed command exited with code 0 426s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.9UAdYD/librust-search-provider-dev:-packages.all"], kind short, sout raw, serr pipe, env [] 426s autopkgtest: DBG: testbed command exited with code 0 426s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.9UAdYD/librust-search-provider-dev%3A-packages.all /tmp/autopkgtest-work.fgzbr70j/out/librust-search-provider-dev%3A-packages.all 426s autopkgtest: DBG: got reply from testbed: ok 426s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.9UAdYD/build.JnS/src'], kind short, sout raw, serr raw, env [] 426s autopkgtest: DBG: testbed command exited with code 0 426s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.9UAdYD/build.JnS/src already exists 426s autopkgtest [18:32:33]: test librust-search-provider-dev:: /usr/share/cargo/bin/cargo-auto-test search-provider 0.10.0 --all-targets --no-default-features 426s autopkgtest [18:32:33]: test librust-search-provider-dev:: [----------------------- 426s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.9UAdYD/wrapper.sh --debug --artifacts=/tmp/autopkgtest.9UAdYD/librust-search-provider-dev:-artifacts --chdir=/tmp/autopkgtest.9UAdYD/build.JnS/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.9UAdYD/librust-search-provider-dev:-stderr --stdout=/tmp/autopkgtest.9UAdYD/librust-search-provider-dev:-stdout --tmp=/tmp/autopkgtest.9UAdYD/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 search-provider 0.10.0 --all-targets --no-default-features'"], kind test, sout raw, serr raw, env [] 427s /tmp/autopkgtest.9UAdYD/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.9UAdYD/librust-search-provider-dev:-artifacts 427s /tmp/autopkgtest.9UAdYD/wrapper.sh: changing to directory: /tmp/autopkgtest.9UAdYD/build.JnS/src 427s /tmp/autopkgtest.9UAdYD/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 427s /tmp/autopkgtest.9UAdYD/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 427s /tmp/autopkgtest.9UAdYD/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 427s /tmp/autopkgtest.9UAdYD/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 427s /tmp/autopkgtest.9UAdYD/wrapper.sh: setting environment: LANG=C.UTF-8 427s /tmp/autopkgtest.9UAdYD/wrapper.sh: unsetting environment: LANGUAGE 427s /tmp/autopkgtest.9UAdYD/wrapper.sh: unsetting environment: LC_ADDRESS 427s /tmp/autopkgtest.9UAdYD/wrapper.sh: unsetting environment: LC_ALL 427s /tmp/autopkgtest.9UAdYD/wrapper.sh: unsetting environment: LC_COLLATE 427s /tmp/autopkgtest.9UAdYD/wrapper.sh: unsetting environment: LC_CTYPE 427s /tmp/autopkgtest.9UAdYD/wrapper.sh: unsetting environment: LC_IDENTIFICATION 427s /tmp/autopkgtest.9UAdYD/wrapper.sh: unsetting environment: LC_MEASUREMENT 427s /tmp/autopkgtest.9UAdYD/wrapper.sh: unsetting environment: LC_MESSAGES 427s /tmp/autopkgtest.9UAdYD/wrapper.sh: unsetting environment: LC_MONETARY 427s /tmp/autopkgtest.9UAdYD/wrapper.sh: unsetting environment: LC_NAME 427s /tmp/autopkgtest.9UAdYD/wrapper.sh: unsetting environment: LC_NUMERIC 427s /tmp/autopkgtest.9UAdYD/wrapper.sh: unsetting environment: LC_PAPER 427s /tmp/autopkgtest.9UAdYD/wrapper.sh: unsetting environment: LC_TELEPHONE 427s /tmp/autopkgtest.9UAdYD/wrapper.sh: unsetting environment: LC_TIME 427s /tmp/autopkgtest.9UAdYD/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 427s /tmp/autopkgtest.9UAdYD/wrapper.sh: pretending to be a login shell 427s /tmp/autopkgtest.9UAdYD/wrapper.sh: will write standard error to /tmp/autopkgtest.9UAdYD/librust-search-provider-dev:-stderr 427s /tmp/autopkgtest.9UAdYD/wrapper.sh: will write stdout to /tmp/autopkgtest.9UAdYD/librust-search-provider-dev:-stdout 427s /tmp/autopkgtest.9UAdYD/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.9UAdYD/autopkgtest_tmp 427s /tmp/autopkgtest.9UAdYD/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 427s /tmp/autopkgtest.9UAdYD/wrapper.sh: command to run: bash -ec /usr/share/cargo/bin/cargo-auto-test search-provider 0.10.0 --all-targets --no-default-features 427s /tmp/autopkgtest.9UAdYD/wrapper.sh: copying /tmp/tmp.5onbviphIJ/out to stdout and file: /tmp/autopkgtest.9UAdYD/librust-search-provider-dev:-stdout 427s /tmp/autopkgtest.9UAdYD/wrapper.sh: copying /tmp/tmp.5onbviphIJ/err to standard error and file: /tmp/autopkgtest.9UAdYD/librust-search-provider-dev:-stdout 427s /tmp/autopkgtest.9UAdYD/wrapper.sh: writing script pid 14608 to /tmp/autopkgtest_script_pid 427s debian cargo wrapper: options, profiles, parallel, lto: ['parallel=2'] [] ['-j2'] 0 427s debian cargo wrapper: rust_type, gnu_type: s390x-unknown-linux-gnu, s390x-linux-gnu 427s debian cargo wrapper: unsetting RUSTFLAGS and assuming it will be (or already was) added to $CARGO_HOME/config.toml 427s debian cargo wrapper: linking /usr/share/cargo/registry/* into /tmp/tmp.qhGiLVvQuR/registry/ 427s debian cargo wrapper: options, profiles, parallel, lto: ['parallel=2'] [] ['-j2'] 0 427s debian cargo wrapper: rust_type, gnu_type: s390x-unknown-linux-gnu, s390x-linux-gnu 427s debian cargo wrapper: unsetting RUSTFLAGS and assuming it will be (or already was) added to $CARGO_HOME/config.toml 427s 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'],) {} 427s Compiling proc-macro2 v1.0.92 427s Compiling unicode-ident v1.0.13 427s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=unicode_ident CARGO_MANIFEST_DIR=/tmp/tmp.qhGiLVvQuR/registry/unicode-ident-1.0.13 CARGO_MANIFEST_PATH=/tmp/tmp.qhGiLVvQuR/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.qhGiLVvQuR/target/debug/deps rustc --crate-name unicode_ident --edition=2018 /tmp/tmp.qhGiLVvQuR/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.qhGiLVvQuR/target/debug/deps -L dependency=/tmp/tmp.qhGiLVvQuR/target/debug/deps --cap-lints warn` 427s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.qhGiLVvQuR/registry/proc-macro2-1.0.92 CARGO_MANIFEST_PATH=/tmp/tmp.qhGiLVvQuR/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.qhGiLVvQuR/target/debug/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.qhGiLVvQuR/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.qhGiLVvQuR/target/debug/build/proc-macro2-3832f39696f3f5db -L dependency=/tmp/tmp.qhGiLVvQuR/target/debug/deps --cap-lints warn` 427s Compiling libc v0.2.169 427s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.qhGiLVvQuR/registry/libc-0.2.169 CARGO_MANIFEST_PATH=/tmp/tmp.qhGiLVvQuR/registry/libc-0.2.169/Cargo.toml CARGO_PKG_AUTHORS='The Rust Project Developers' CARGO_PKG_DESCRIPTION='Raw FFI bindings to platform libraries like libc. 427s ' CARGO_PKG_HOMEPAGE='https://github.com/rust-lang/libc' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=libc CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/libc' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=0.2.169 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=169 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.qhGiLVvQuR/target/debug/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.qhGiLVvQuR/registry/libc-0.2.169/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="extra_traits"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("align", "const-extern-fn", "default", "extra_traits", "rustc-dep-of-std", "rustc-std-workspace-core", "std", "use_std"))' -C metadata=dc781cb7c1ee5a21 -C extra-filename=-dc781cb7c1ee5a21 --out-dir /tmp/tmp.qhGiLVvQuR/target/debug/build/libc-dc781cb7c1ee5a21 -L dependency=/tmp/tmp.qhGiLVvQuR/target/debug/deps --cap-lints warn` 427s 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.qhGiLVvQuR/registry/proc-macro2-1.0.92 CARGO_MANIFEST_PATH=/tmp/tmp.qhGiLVvQuR/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.qhGiLVvQuR/target/debug/deps:/tmp/tmp.qhGiLVvQuR/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.qhGiLVvQuR/target/debug/build/proc-macro2-b8c68c67c59c8657/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.qhGiLVvQuR/target/debug/build/proc-macro2-3832f39696f3f5db/build-script-build` 427s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(fuzzing) 427s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(no_is_available) 427s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(no_literal_byte_character) 427s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(no_literal_c_string) 427s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(no_source_text) 427s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(proc_macro_span) 427s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(procmacro2_backtrace) 427s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(procmacro2_nightly_testing) 427s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(procmacro2_semver_exempt) 427s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(randomize_layout) 427s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(span_locations) 427s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(super_unstable) 427s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(wrap_proc_macro) 427s [proc-macro2 1.0.92] cargo:rerun-if-changed=build/probe.rs 427s [proc-macro2 1.0.92] cargo:rustc-cfg=wrap_proc_macro 427s [proc-macro2 1.0.92] cargo:rerun-if-env-changed=RUSTC_BOOTSTRAP 427s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=proc_macro2 CARGO_MANIFEST_DIR=/tmp/tmp.qhGiLVvQuR/registry/proc-macro2-1.0.92 CARGO_MANIFEST_PATH=/tmp/tmp.qhGiLVvQuR/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.qhGiLVvQuR/target/debug/deps OUT_DIR=/tmp/tmp.qhGiLVvQuR/target/debug/build/proc-macro2-b8c68c67c59c8657/out rustc --crate-name proc_macro2 --edition=2021 /tmp/tmp.qhGiLVvQuR/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.qhGiLVvQuR/target/debug/deps -L dependency=/tmp/tmp.qhGiLVvQuR/target/debug/deps --extern unicode_ident=/tmp/tmp.qhGiLVvQuR/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)'` 427s Compiling autocfg v1.1.0 427s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=autocfg CARGO_MANIFEST_DIR=/tmp/tmp.qhGiLVvQuR/registry/autocfg-1.1.0 CARGO_MANIFEST_PATH=/tmp/tmp.qhGiLVvQuR/registry/autocfg-1.1.0/Cargo.toml CARGO_PKG_AUTHORS='Josh Stone ' CARGO_PKG_DESCRIPTION='Automatic cfg for Rust compiler features' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=autocfg CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/cuviper/autocfg' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=1.1.0 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.qhGiLVvQuR/target/debug/deps rustc --crate-name autocfg --edition=2015 /tmp/tmp.qhGiLVvQuR/registry/autocfg-1.1.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=9ebcd9511383083c -C extra-filename=-9ebcd9511383083c --out-dir /tmp/tmp.qhGiLVvQuR/target/debug/deps -L dependency=/tmp/tmp.qhGiLVvQuR/target/debug/deps --cap-lints warn` 428s Compiling quote v1.0.37 428s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=quote CARGO_MANIFEST_DIR=/tmp/tmp.qhGiLVvQuR/registry/quote-1.0.37 CARGO_MANIFEST_PATH=/tmp/tmp.qhGiLVvQuR/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.qhGiLVvQuR/target/debug/deps rustc --crate-name quote --edition=2018 /tmp/tmp.qhGiLVvQuR/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.qhGiLVvQuR/target/debug/deps -L dependency=/tmp/tmp.qhGiLVvQuR/target/debug/deps --extern proc_macro2=/tmp/tmp.qhGiLVvQuR/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rmeta --cap-lints warn` 428s Compiling syn v2.0.96 428s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=syn CARGO_MANIFEST_DIR=/tmp/tmp.qhGiLVvQuR/registry/syn-2.0.96 CARGO_MANIFEST_PATH=/tmp/tmp.qhGiLVvQuR/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.qhGiLVvQuR/target/debug/deps rustc --crate-name syn --edition=2021 /tmp/tmp.qhGiLVvQuR/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="fold"' --cfg 'feature="full"' --cfg 'feature="parsing"' --cfg 'feature="printing"' --cfg 'feature="proc-macro"' --cfg 'feature="visit-mut"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("clone-impls", "default", "derive", "extra-traits", "fold", "full", "parsing", "printing", "proc-macro", "visit", "visit-mut"))' -C metadata=0167beed9e699402 -C extra-filename=-0167beed9e699402 --out-dir /tmp/tmp.qhGiLVvQuR/target/debug/deps -L dependency=/tmp/tmp.qhGiLVvQuR/target/debug/deps --extern proc_macro2=/tmp/tmp.qhGiLVvQuR/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rmeta --extern quote=/tmp/tmp.qhGiLVvQuR/target/debug/deps/libquote-dc92c6f25ee0f0c6.rmeta --extern unicode_ident=/tmp/tmp.qhGiLVvQuR/target/debug/deps/libunicode_ident-5d182fe9243248fe.rmeta --cap-lints warn` 428s 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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0--remap-path-prefix/tmp/tmp.qhGiLVvQuR/registry=/usr/share/cargo/registry-Ctarget-feature=+backchain' CARGO_FEATURE_DEFAULT=1 CARGO_FEATURE_EXTRA_TRAITS=1 CARGO_FEATURE_STD=1 CARGO_MANIFEST_DIR=/tmp/tmp.qhGiLVvQuR/registry/libc-0.2.169 CARGO_MANIFEST_PATH=/tmp/tmp.qhGiLVvQuR/registry/libc-0.2.169/Cargo.toml CARGO_PKG_AUTHORS='The Rust Project Developers' CARGO_PKG_DESCRIPTION='Raw FFI bindings to platform libraries like libc. 428s ' CARGO_PKG_HOMEPAGE='https://github.com/rust-lang/libc' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=libc CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/libc' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=0.2.169 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=169 CARGO_PKG_VERSION_PRE='' DEBUG=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.qhGiLVvQuR/target/debug/deps:/tmp/tmp.qhGiLVvQuR/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/build/libc-bd02b9c7a9cce7ac/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.qhGiLVvQuR/target/debug/build/libc-dc781cb7c1ee5a21/build-script-build` 428s [libc 0.2.169] cargo:rerun-if-changed=build.rs 428s [libc 0.2.169] cargo:rerun-if-env-changed=RUST_LIBC_UNSTABLE_FREEBSD_VERSION 428s [libc 0.2.169] cargo:rustc-cfg=freebsd11 428s [libc 0.2.169] cargo:rustc-cfg=libc_const_extern_fn 428s [libc 0.2.169] cargo:rustc-check-cfg=cfg(emscripten_new_stat_abi) 428s [libc 0.2.169] cargo:rustc-check-cfg=cfg(espidf_time32) 428s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd10) 428s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd11) 428s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd12) 428s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd13) 428s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd14) 428s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd15) 428s [libc 0.2.169] cargo:rustc-check-cfg=cfg(gnu_time64_abi) 428s [libc 0.2.169] cargo:rustc-check-cfg=cfg(libc_const_extern_fn) 428s [libc 0.2.169] cargo:rustc-check-cfg=cfg(libc_deny_warnings) 428s [libc 0.2.169] cargo:rustc-check-cfg=cfg(libc_thread_local) 428s [libc 0.2.169] cargo:rustc-check-cfg=cfg(libc_ctest) 428s [libc 0.2.169] cargo:rustc-check-cfg=cfg(target_os,values("switch","aix","ohos","hurd","rtems","visionos","nuttx")) 428s [libc 0.2.169] cargo:rustc-check-cfg=cfg(target_env,values("illumos","wasi","aix","ohos")) 428s [libc 0.2.169] cargo:rustc-check-cfg=cfg(target_arch,values("loongarch64","mips32r6","mips64r6","csky")) 428s Compiling typenum v1.17.0 428s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_main CARGO_MANIFEST_DIR=/tmp/tmp.qhGiLVvQuR/registry/typenum-1.17.0 CARGO_MANIFEST_PATH=/tmp/tmp.qhGiLVvQuR/registry/typenum-1.17.0/Cargo.toml CARGO_PKG_AUTHORS='Paho Lurie-Gregg :Andre Bogus ' CARGO_PKG_DESCRIPTION='Typenum is a Rust library for type-level numbers evaluated at 428s compile time. It currently supports bits, unsigned integers, and signed 428s integers. It also provides a type-level array of type-level numbers, but its 428s implementation is incomplete.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=typenum CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/paholg/typenum' CARGO_PKG_RUST_VERSION=1.37.0 CARGO_PKG_VERSION=1.17.0 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=17 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.qhGiLVvQuR/target/debug/deps rustc --crate-name build_script_main --edition=2018 /tmp/tmp.qhGiLVvQuR/registry/typenum-1.17.0/build/main.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("const-generics", "force_unix_path_separator", "i128", "no_std", "strict"))' -C metadata=ef2812a6bded5202 -C extra-filename=-ef2812a6bded5202 --out-dir /tmp/tmp.qhGiLVvQuR/target/debug/build/typenum-ef2812a6bded5202 -L dependency=/tmp/tmp.qhGiLVvQuR/target/debug/deps --cap-lints warn` 429s Compiling version_check v0.9.5 429s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=version_check CARGO_MANIFEST_DIR=/tmp/tmp.qhGiLVvQuR/registry/version_check-0.9.5 CARGO_MANIFEST_PATH=/tmp/tmp.qhGiLVvQuR/registry/version_check-0.9.5/Cargo.toml CARGO_PKG_AUTHORS='Sergio Benitez ' CARGO_PKG_DESCRIPTION='Tiny crate to check the version of the installed/running rustc.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=version_check CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/SergioBenitez/version_check' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.9.5 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=9 CARGO_PKG_VERSION_PATCH=5 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.qhGiLVvQuR/target/debug/deps rustc --crate-name version_check --edition=2015 /tmp/tmp.qhGiLVvQuR/registry/version_check-0.9.5/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=20e83cdf64ec3211 -C extra-filename=-20e83cdf64ec3211 --out-dir /tmp/tmp.qhGiLVvQuR/target/debug/deps -L dependency=/tmp/tmp.qhGiLVvQuR/target/debug/deps --cap-lints warn` 429s Compiling hashbrown v0.14.5 429s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=hashbrown CARGO_MANIFEST_DIR=/tmp/tmp.qhGiLVvQuR/registry/hashbrown-0.14.5 CARGO_MANIFEST_PATH=/tmp/tmp.qhGiLVvQuR/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.qhGiLVvQuR/target/debug/deps rustc --crate-name hashbrown --edition=2021 /tmp/tmp.qhGiLVvQuR/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.qhGiLVvQuR/target/debug/deps -L dependency=/tmp/tmp.qhGiLVvQuR/target/debug/deps --cap-lints warn` 429s warning: unexpected `cfg` condition value: `nightly` 429s --> /tmp/tmp.qhGiLVvQuR/registry/hashbrown-0.14.5/src/lib.rs:14:5 429s | 429s 14 | feature = "nightly", 429s | ^^^^^^^^^^^^^^^^^^^ 429s | 429s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 429s = help: consider adding `nightly` as a feature in `Cargo.toml` 429s = note: see for more information about checking conditional configuration 429s = note: `#[warn(unexpected_cfgs)]` on by default 429s 429s warning: unexpected `cfg` condition value: `nightly` 429s --> /tmp/tmp.qhGiLVvQuR/registry/hashbrown-0.14.5/src/lib.rs:39:13 429s | 429s 39 | #![cfg_attr(feature = "nightly", warn(fuzzy_provenance_casts))] 429s | ^^^^^^^^^^^^^^^^^^^ 429s | 429s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 429s = help: consider adding `nightly` as a feature in `Cargo.toml` 429s = note: see for more information about checking conditional configuration 429s 429s warning: unexpected `cfg` condition value: `nightly` 429s --> /tmp/tmp.qhGiLVvQuR/registry/hashbrown-0.14.5/src/lib.rs:40:13 429s | 429s 40 | #![cfg_attr(feature = "nightly", allow(internal_features))] 429s | ^^^^^^^^^^^^^^^^^^^ 429s | 429s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 429s = help: consider adding `nightly` as a feature in `Cargo.toml` 429s = note: see for more information about checking conditional configuration 429s 429s warning: unexpected `cfg` condition value: `nightly` 429s --> /tmp/tmp.qhGiLVvQuR/registry/hashbrown-0.14.5/src/lib.rs:49:7 429s | 429s 49 | #[cfg(feature = "nightly")] 429s | ^^^^^^^^^^^^^^^^^^^ 429s | 429s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 429s = help: consider adding `nightly` as a feature in `Cargo.toml` 429s = note: see for more information about checking conditional configuration 429s 429s warning: unexpected `cfg` condition value: `nightly` 429s --> /tmp/tmp.qhGiLVvQuR/registry/hashbrown-0.14.5/src/macros.rs:59:7 429s | 429s 59 | #[cfg(feature = "nightly")] 429s | ^^^^^^^^^^^^^^^^^^^ 429s | 429s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 429s = help: consider adding `nightly` as a feature in `Cargo.toml` 429s = note: see for more information about checking conditional configuration 429s 429s warning: unexpected `cfg` condition value: `nightly` 429s --> /tmp/tmp.qhGiLVvQuR/registry/hashbrown-0.14.5/src/macros.rs:65:11 429s | 429s 65 | #[cfg(not(feature = "nightly"))] 429s | ^^^^^^^^^^^^^^^^^^^ 429s | 429s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 429s = help: consider adding `nightly` as a feature in `Cargo.toml` 429s = note: see for more information about checking conditional configuration 429s 429s warning: unexpected `cfg` condition value: `nightly` 429s --> /tmp/tmp.qhGiLVvQuR/registry/hashbrown-0.14.5/src/raw/mod.rs:53:11 429s | 429s 53 | #[cfg(not(feature = "nightly"))] 429s | ^^^^^^^^^^^^^^^^^^^ 429s | 429s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 429s = help: consider adding `nightly` as a feature in `Cargo.toml` 429s = note: see for more information about checking conditional configuration 429s 429s warning: unexpected `cfg` condition value: `nightly` 429s --> /tmp/tmp.qhGiLVvQuR/registry/hashbrown-0.14.5/src/raw/mod.rs:55:11 429s | 429s 55 | #[cfg(not(feature = "nightly"))] 429s | ^^^^^^^^^^^^^^^^^^^ 429s | 429s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 429s = help: consider adding `nightly` as a feature in `Cargo.toml` 429s = note: see for more information about checking conditional configuration 429s 429s warning: unexpected `cfg` condition value: `nightly` 429s --> /tmp/tmp.qhGiLVvQuR/registry/hashbrown-0.14.5/src/raw/mod.rs:57:7 429s | 429s 57 | #[cfg(feature = "nightly")] 429s | ^^^^^^^^^^^^^^^^^^^ 429s | 429s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 429s = help: consider adding `nightly` as a feature in `Cargo.toml` 429s = note: see for more information about checking conditional configuration 429s 429s warning: unexpected `cfg` condition value: `nightly` 429s --> /tmp/tmp.qhGiLVvQuR/registry/hashbrown-0.14.5/src/raw/mod.rs:3549:7 429s | 429s 3549 | #[cfg(feature = "nightly")] 429s | ^^^^^^^^^^^^^^^^^^^ 429s | 429s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 429s = help: consider adding `nightly` as a feature in `Cargo.toml` 429s = note: see for more information about checking conditional configuration 429s 429s warning: unexpected `cfg` condition value: `nightly` 429s --> /tmp/tmp.qhGiLVvQuR/registry/hashbrown-0.14.5/src/raw/mod.rs:3661:7 429s | 429s 3661 | #[cfg(feature = "nightly")] 429s | ^^^^^^^^^^^^^^^^^^^ 429s | 429s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 429s = help: consider adding `nightly` as a feature in `Cargo.toml` 429s = note: see for more information about checking conditional configuration 429s 429s warning: unexpected `cfg` condition value: `nightly` 429s --> /tmp/tmp.qhGiLVvQuR/registry/hashbrown-0.14.5/src/raw/mod.rs:3678:11 429s | 429s 3678 | #[cfg(not(feature = "nightly"))] 429s | ^^^^^^^^^^^^^^^^^^^ 429s | 429s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 429s = help: consider adding `nightly` as a feature in `Cargo.toml` 429s = note: see for more information about checking conditional configuration 429s 429s warning: unexpected `cfg` condition value: `nightly` 429s --> /tmp/tmp.qhGiLVvQuR/registry/hashbrown-0.14.5/src/raw/mod.rs:4304:7 429s | 429s 4304 | #[cfg(feature = "nightly")] 429s | ^^^^^^^^^^^^^^^^^^^ 429s | 429s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 429s = help: consider adding `nightly` as a feature in `Cargo.toml` 429s = note: see for more information about checking conditional configuration 429s 429s warning: unexpected `cfg` condition value: `nightly` 429s --> /tmp/tmp.qhGiLVvQuR/registry/hashbrown-0.14.5/src/raw/mod.rs:4319:11 429s | 429s 4319 | #[cfg(not(feature = "nightly"))] 429s | ^^^^^^^^^^^^^^^^^^^ 429s | 429s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 429s = help: consider adding `nightly` as a feature in `Cargo.toml` 429s = note: see for more information about checking conditional configuration 429s 429s warning: unexpected `cfg` condition value: `nightly` 429s --> /tmp/tmp.qhGiLVvQuR/registry/hashbrown-0.14.5/src/raw/alloc.rs:7:7 429s | 429s 7 | #[cfg(feature = "nightly")] 429s | ^^^^^^^^^^^^^^^^^^^ 429s | 429s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 429s = help: consider adding `nightly` as a feature in `Cargo.toml` 429s = note: see for more information about checking conditional configuration 429s 429s warning: unexpected `cfg` condition value: `nightly` 429s --> /tmp/tmp.qhGiLVvQuR/registry/hashbrown-0.14.5/src/raw/alloc.rs:28:15 429s | 429s 28 | #[cfg(all(not(feature = "nightly"), feature = "allocator-api2"))] 429s | ^^^^^^^^^^^^^^^^^^^ 429s | 429s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 429s = help: consider adding `nightly` as a feature in `Cargo.toml` 429s = note: see for more information about checking conditional configuration 429s 429s warning: unexpected `cfg` condition value: `nightly` 429s --> /tmp/tmp.qhGiLVvQuR/registry/hashbrown-0.14.5/src/raw/alloc.rs:51:15 429s | 429s 51 | #[cfg(not(any(feature = "nightly", feature = "allocator-api2")))] 429s | ^^^^^^^^^^^^^^^^^^^ 429s | 429s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 429s = help: consider adding `nightly` as a feature in `Cargo.toml` 429s = note: see for more information about checking conditional configuration 429s 429s warning: unexpected `cfg` condition value: `nightly` 429s --> /tmp/tmp.qhGiLVvQuR/registry/hashbrown-0.14.5/src/raw/mod.rs:944:32 429s | 429s 944 | #[cfg(any(feature = "raw", feature = "nightly"))] 429s | ^^^^^^^^^^^^^^^^^^^ 429s | 429s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 429s = help: consider adding `nightly` as a feature in `Cargo.toml` 429s = note: see for more information about checking conditional configuration 429s 429s warning: unexpected `cfg` condition value: `rkyv` 429s --> /tmp/tmp.qhGiLVvQuR/registry/hashbrown-0.14.5/src/external_trait_impls/mod.rs:3:7 429s | 429s 3 | #[cfg(feature = "rkyv")] 429s | ^^^^^^^^^^^^^^^^ 429s | 429s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 429s = help: consider adding `rkyv` as a feature in `Cargo.toml` 429s = note: see for more information about checking conditional configuration 429s 429s warning: unexpected `cfg` condition value: `nightly` 429s --> /tmp/tmp.qhGiLVvQuR/registry/hashbrown-0.14.5/src/map.rs:242:11 429s | 429s 242 | #[cfg(not(feature = "nightly"))] 429s | ^^^^^^^^^^^^^^^^^^^ 429s | 429s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 429s = help: consider adding `nightly` as a feature in `Cargo.toml` 429s = note: see for more information about checking conditional configuration 429s 429s warning: unexpected `cfg` condition value: `nightly` 429s --> /tmp/tmp.qhGiLVvQuR/registry/hashbrown-0.14.5/src/map.rs:255:7 429s | 429s 255 | #[cfg(feature = "nightly")] 429s | ^^^^^^^^^^^^^^^^^^^ 429s | 429s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 429s = help: consider adding `nightly` as a feature in `Cargo.toml` 429s = note: see for more information about checking conditional configuration 429s 429s warning: unexpected `cfg` condition value: `nightly` 429s --> /tmp/tmp.qhGiLVvQuR/registry/hashbrown-0.14.5/src/map.rs:6517:11 429s | 429s 6517 | #[cfg(feature = "nightly")] 429s | ^^^^^^^^^^^^^^^^^^^ 429s | 429s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 429s = help: consider adding `nightly` as a feature in `Cargo.toml` 429s = note: see for more information about checking conditional configuration 429s 429s warning: unexpected `cfg` condition value: `nightly` 429s --> /tmp/tmp.qhGiLVvQuR/registry/hashbrown-0.14.5/src/map.rs:6523:11 429s | 429s 6523 | #[cfg(feature = "nightly")] 429s | ^^^^^^^^^^^^^^^^^^^ 429s | 429s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 429s = help: consider adding `nightly` as a feature in `Cargo.toml` 429s = note: see for more information about checking conditional configuration 429s 429s warning: unexpected `cfg` condition value: `nightly` 429s --> /tmp/tmp.qhGiLVvQuR/registry/hashbrown-0.14.5/src/map.rs:6591:11 429s | 429s 6591 | #[cfg(feature = "nightly")] 429s | ^^^^^^^^^^^^^^^^^^^ 429s | 429s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 429s = help: consider adding `nightly` as a feature in `Cargo.toml` 429s = note: see for more information about checking conditional configuration 429s 429s warning: unexpected `cfg` condition value: `nightly` 429s --> /tmp/tmp.qhGiLVvQuR/registry/hashbrown-0.14.5/src/map.rs:6597:11 429s | 429s 6597 | #[cfg(feature = "nightly")] 429s | ^^^^^^^^^^^^^^^^^^^ 429s | 429s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 429s = help: consider adding `nightly` as a feature in `Cargo.toml` 429s = note: see for more information about checking conditional configuration 429s 429s warning: unexpected `cfg` condition value: `nightly` 429s --> /tmp/tmp.qhGiLVvQuR/registry/hashbrown-0.14.5/src/map.rs:6651:11 429s | 429s 6651 | #[cfg(feature = "nightly")] 429s | ^^^^^^^^^^^^^^^^^^^ 429s | 429s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 429s = help: consider adding `nightly` as a feature in `Cargo.toml` 429s = note: see for more information about checking conditional configuration 429s 429s warning: unexpected `cfg` condition value: `nightly` 429s --> /tmp/tmp.qhGiLVvQuR/registry/hashbrown-0.14.5/src/map.rs:6657:11 429s | 429s 6657 | #[cfg(feature = "nightly")] 429s | ^^^^^^^^^^^^^^^^^^^ 429s | 429s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 429s = help: consider adding `nightly` as a feature in `Cargo.toml` 429s = note: see for more information about checking conditional configuration 429s 429s warning: unexpected `cfg` condition value: `nightly` 429s --> /tmp/tmp.qhGiLVvQuR/registry/hashbrown-0.14.5/src/set.rs:1359:11 429s | 429s 1359 | #[cfg(feature = "nightly")] 429s | ^^^^^^^^^^^^^^^^^^^ 429s | 429s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 429s = help: consider adding `nightly` as a feature in `Cargo.toml` 429s = note: see for more information about checking conditional configuration 429s 429s warning: unexpected `cfg` condition value: `nightly` 429s --> /tmp/tmp.qhGiLVvQuR/registry/hashbrown-0.14.5/src/set.rs:1365:11 429s | 429s 1365 | #[cfg(feature = "nightly")] 429s | ^^^^^^^^^^^^^^^^^^^ 429s | 429s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 429s = help: consider adding `nightly` as a feature in `Cargo.toml` 429s = note: see for more information about checking conditional configuration 429s 429s warning: unexpected `cfg` condition value: `nightly` 429s --> /tmp/tmp.qhGiLVvQuR/registry/hashbrown-0.14.5/src/set.rs:1383:11 429s | 429s 1383 | #[cfg(feature = "nightly")] 429s | ^^^^^^^^^^^^^^^^^^^ 429s | 429s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 429s = help: consider adding `nightly` as a feature in `Cargo.toml` 429s = note: see for more information about checking conditional configuration 429s 429s warning: unexpected `cfg` condition value: `nightly` 429s --> /tmp/tmp.qhGiLVvQuR/registry/hashbrown-0.14.5/src/set.rs:1389:11 429s | 429s 1389 | #[cfg(feature = "nightly")] 429s | ^^^^^^^^^^^^^^^^^^^ 429s | 429s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 429s = help: consider adding `nightly` as a feature in `Cargo.toml` 429s = note: see for more information about checking conditional configuration 429s 429s warning: `hashbrown` (lib) generated 31 warnings 429s Compiling equivalent v1.0.1 429s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=equivalent CARGO_MANIFEST_DIR=/tmp/tmp.qhGiLVvQuR/registry/equivalent-1.0.1 CARGO_MANIFEST_PATH=/tmp/tmp.qhGiLVvQuR/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.qhGiLVvQuR/target/debug/deps rustc --crate-name equivalent --edition=2015 /tmp/tmp.qhGiLVvQuR/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.qhGiLVvQuR/target/debug/deps -L dependency=/tmp/tmp.qhGiLVvQuR/target/debug/deps --cap-lints warn` 430s Compiling indexmap v2.7.0 430s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=indexmap CARGO_MANIFEST_DIR=/tmp/tmp.qhGiLVvQuR/registry/indexmap-2.7.0 CARGO_MANIFEST_PATH=/tmp/tmp.qhGiLVvQuR/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.qhGiLVvQuR/target/debug/deps rustc --crate-name indexmap --edition=2021 /tmp/tmp.qhGiLVvQuR/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.qhGiLVvQuR/target/debug/deps -L dependency=/tmp/tmp.qhGiLVvQuR/target/debug/deps --extern equivalent=/tmp/tmp.qhGiLVvQuR/target/debug/deps/libequivalent-a11b0a19a3bf2c19.rmeta --extern hashbrown=/tmp/tmp.qhGiLVvQuR/target/debug/deps/libhashbrown-e14e27c8ff208110.rmeta --cap-lints warn` 430s warning: unexpected `cfg` condition value: `borsh` 430s --> /tmp/tmp.qhGiLVvQuR/registry/indexmap-2.7.0/src/lib.rs:117:7 430s | 430s 117 | #[cfg(feature = "borsh")] 430s | ^^^^^^^^^^^^^^^^^ 430s | 430s = note: expected values for `feature` are: `arbitrary`, `default`, `rayon`, `serde`, `std`, and `test_debug` 430s = help: consider adding `borsh` as a feature in `Cargo.toml` 430s = note: see for more information about checking conditional configuration 430s = note: `#[warn(unexpected_cfgs)]` on by default 430s 430s warning: unexpected `cfg` condition value: `rustc-rayon` 430s --> /tmp/tmp.qhGiLVvQuR/registry/indexmap-2.7.0/src/lib.rs:131:7 430s | 430s 131 | #[cfg(feature = "rustc-rayon")] 430s | ^^^^^^^^^^^^^^^^^^^^^^^ 430s | 430s = note: expected values for `feature` are: `arbitrary`, `default`, `rayon`, `serde`, `std`, and `test_debug` 430s = help: consider adding `rustc-rayon` as a feature in `Cargo.toml` 430s = note: see for more information about checking conditional configuration 430s 430s warning: unexpected `cfg` condition value: `quickcheck` 430s --> /tmp/tmp.qhGiLVvQuR/registry/indexmap-2.7.0/src/arbitrary.rs:38:7 430s | 430s 38 | #[cfg(feature = "quickcheck")] 430s | ^^^^^^^^^^^^^^^^^^^^^^ 430s | 430s = note: expected values for `feature` are: `arbitrary`, `default`, `rayon`, `serde`, `std`, and `test_debug` 430s = help: consider adding `quickcheck` as a feature in `Cargo.toml` 430s = note: see for more information about checking conditional configuration 430s 430s warning: unexpected `cfg` condition value: `rustc-rayon` 430s --> /tmp/tmp.qhGiLVvQuR/registry/indexmap-2.7.0/src/macros.rs:128:30 430s | 430s 128 | #[cfg(any(feature = "rayon", feature = "rustc-rayon"))] 430s | ^^^^^^^^^^^^^^^^^^^^^^^ 430s | 430s = note: expected values for `feature` are: `arbitrary`, `default`, `rayon`, `serde`, `std`, and `test_debug` 430s = help: consider adding `rustc-rayon` as a feature in `Cargo.toml` 430s = note: see for more information about checking conditional configuration 430s 430s warning: unexpected `cfg` condition value: `rustc-rayon` 430s --> /tmp/tmp.qhGiLVvQuR/registry/indexmap-2.7.0/src/macros.rs:153:30 430s | 430s 153 | #[cfg(any(feature = "rayon", feature = "rustc-rayon"))] 430s | ^^^^^^^^^^^^^^^^^^^^^^^ 430s | 430s = note: expected values for `feature` are: `arbitrary`, `default`, `rayon`, `serde`, `std`, and `test_debug` 430s = help: consider adding `rustc-rayon` as a feature in `Cargo.toml` 430s = note: see for more information about checking conditional configuration 430s 430s warning: `indexmap` (lib) generated 5 warnings 430s Compiling generic-array v0.14.7 430s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.qhGiLVvQuR/registry/generic-array-0.14.7 CARGO_MANIFEST_PATH=/tmp/tmp.qhGiLVvQuR/registry/generic-array-0.14.7/Cargo.toml CARGO_PKG_AUTHORS='Bartłomiej Kamiński :Aaron Trent ' CARGO_PKG_DESCRIPTION='Generic types implementing functionality of arrays' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=generic-array CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/fizyk20/generic-array.git' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.14.7 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=14 CARGO_PKG_VERSION_PATCH=7 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.qhGiLVvQuR/target/debug/deps rustc --crate-name build_script_build --edition=2015 /tmp/tmp.qhGiLVvQuR/registry/generic-array-0.14.7/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="more_lengths"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("more_lengths", "serde", "zeroize"))' -C metadata=160edb9b35222b14 -C extra-filename=-160edb9b35222b14 --out-dir /tmp/tmp.qhGiLVvQuR/target/debug/build/generic-array-160edb9b35222b14 -L dependency=/tmp/tmp.qhGiLVvQuR/target/debug/deps --extern version_check=/tmp/tmp.qhGiLVvQuR/target/debug/deps/libversion_check-20e83cdf64ec3211.rlib --cap-lints warn` 430s 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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0--remap-path-prefix/tmp/tmp.qhGiLVvQuR/registry=/usr/share/cargo/registry-Ctarget-feature=+backchain' CARGO_MANIFEST_DIR=/tmp/tmp.qhGiLVvQuR/registry/typenum-1.17.0 CARGO_MANIFEST_PATH=/tmp/tmp.qhGiLVvQuR/registry/typenum-1.17.0/Cargo.toml CARGO_PKG_AUTHORS='Paho Lurie-Gregg :Andre Bogus ' CARGO_PKG_DESCRIPTION='Typenum is a Rust library for type-level numbers evaluated at 430s compile time. It currently supports bits, unsigned integers, and signed 430s integers. It also provides a type-level array of type-level numbers, but its 430s implementation is incomplete.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=typenum CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/paholg/typenum' CARGO_PKG_RUST_VERSION=1.37.0 CARGO_PKG_VERSION=1.17.0 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=17 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' DEBUG=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.qhGiLVvQuR/target/debug/deps:/tmp/tmp.qhGiLVvQuR/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/build/typenum-b1daa52c37018028/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.qhGiLVvQuR/target/debug/build/typenum-ef2812a6bded5202/build-script-main` 430s [typenum 1.17.0] cargo:rerun-if-changed=build/main.rs 430s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=libc CARGO_MANIFEST_DIR=/tmp/tmp.qhGiLVvQuR/registry/libc-0.2.169 CARGO_MANIFEST_PATH=/tmp/tmp.qhGiLVvQuR/registry/libc-0.2.169/Cargo.toml CARGO_PKG_AUTHORS='The Rust Project Developers' CARGO_PKG_DESCRIPTION='Raw FFI bindings to platform libraries like libc. 430s ' CARGO_PKG_HOMEPAGE='https://github.com/rust-lang/libc' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=libc CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/libc' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=0.2.169 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=169 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.qhGiLVvQuR/target/debug/deps OUT_DIR=/tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/build/libc-bd02b9c7a9cce7ac/out rustc --crate-name libc --edition=2021 /tmp/tmp.qhGiLVvQuR/registry/libc-0.2.169/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="extra_traits"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("align", "const-extern-fn", "default", "extra_traits", "rustc-dep-of-std", "rustc-std-workspace-core", "std", "use_std"))' -C metadata=cf2521928ac070dc -C extra-filename=-cf2521928ac070dc --out-dir /tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.qhGiLVvQuR/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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.qhGiLVvQuR/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain --cfg freebsd11 --cfg libc_const_extern_fn --check-cfg 'cfg(emscripten_new_stat_abi)' --check-cfg 'cfg(espidf_time32)' --check-cfg 'cfg(freebsd10)' --check-cfg 'cfg(freebsd11)' --check-cfg 'cfg(freebsd12)' --check-cfg 'cfg(freebsd13)' --check-cfg 'cfg(freebsd14)' --check-cfg 'cfg(freebsd15)' --check-cfg 'cfg(gnu_time64_abi)' --check-cfg 'cfg(libc_const_extern_fn)' --check-cfg 'cfg(libc_deny_warnings)' --check-cfg 'cfg(libc_thread_local)' --check-cfg 'cfg(libc_ctest)' --check-cfg 'cfg(target_os,values("switch","aix","ohos","hurd","rtems","visionos","nuttx"))' --check-cfg 'cfg(target_env,values("illumos","wasi","aix","ohos"))' --check-cfg 'cfg(target_arch,values("loongarch64","mips32r6","mips64r6","csky"))'` 430s warning: unused import: `crate::ntptimeval` 430s --> /usr/share/cargo/registry/libc-0.2.169/src/unix/linux_like/linux/gnu/b64/mod.rs:5:5 430s | 430s 5 | use crate::ntptimeval; 430s | ^^^^^^^^^^^^^^^^^ 430s | 430s = note: `#[warn(unused_imports)]` on by default 430s 431s warning: unstable feature specified for `-Ctarget-feature`: `backchain` 431s | 431s = note: this feature is not stably supported; its behavior can change in the future 431s 431s warning: `libc` (lib) generated 2 warnings 431s Compiling crossbeam-utils v0.8.19 431s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.qhGiLVvQuR/registry/crossbeam-utils-0.8.19 CARGO_MANIFEST_PATH=/tmp/tmp.qhGiLVvQuR/registry/crossbeam-utils-0.8.19/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='Utilities for concurrent programming' CARGO_PKG_HOMEPAGE='https://github.com/crossbeam-rs/crossbeam/tree/master/crossbeam-utils' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=crossbeam-utils CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/crossbeam-rs/crossbeam' CARGO_PKG_RUST_VERSION=1.60 CARGO_PKG_VERSION=0.8.19 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=8 CARGO_PKG_VERSION_PATCH=19 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.qhGiLVvQuR/target/debug/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.qhGiLVvQuR/registry/crossbeam-utils-0.8.19/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "nightly", "std"))' -C metadata=481d5baddd087d3b -C extra-filename=-481d5baddd087d3b --out-dir /tmp/tmp.qhGiLVvQuR/target/debug/build/crossbeam-utils-481d5baddd087d3b -L dependency=/tmp/tmp.qhGiLVvQuR/target/debug/deps --cap-lints warn` 432s Compiling winnow v0.6.18 432s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=winnow CARGO_MANIFEST_DIR=/tmp/tmp.qhGiLVvQuR/registry/winnow-0.6.18 CARGO_MANIFEST_PATH=/tmp/tmp.qhGiLVvQuR/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.qhGiLVvQuR/target/debug/deps rustc --crate-name winnow --edition=2021 /tmp/tmp.qhGiLVvQuR/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.qhGiLVvQuR/target/debug/deps -L dependency=/tmp/tmp.qhGiLVvQuR/target/debug/deps --cap-lints warn` 432s warning: unexpected `cfg` condition value: `debug` 432s --> /tmp/tmp.qhGiLVvQuR/registry/winnow-0.6.18/src/combinator/debug/mod.rs:1:13 432s | 432s 1 | #![cfg_attr(feature = "debug", allow(clippy::std_instead_of_core))] 432s | ^^^^^^^^^^^^^^^^^ 432s | 432s = note: expected values for `feature` are: `alloc`, `default`, `simd`, `std`, `unstable-doc`, and `unstable-recover` 432s = help: consider adding `debug` as a feature in `Cargo.toml` 432s = note: see for more information about checking conditional configuration 432s = note: `#[warn(unexpected_cfgs)]` on by default 432s 432s warning: unexpected `cfg` condition value: `debug` 432s --> /tmp/tmp.qhGiLVvQuR/registry/winnow-0.6.18/src/combinator/debug/mod.rs:3:7 432s | 432s 3 | #[cfg(feature = "debug")] 432s | ^^^^^^^^^^^^^^^^^ 432s | 432s = note: expected values for `feature` are: `alloc`, `default`, `simd`, `std`, `unstable-doc`, and `unstable-recover` 432s = help: consider adding `debug` as a feature in `Cargo.toml` 432s = note: see for more information about checking conditional configuration 432s 432s warning: unexpected `cfg` condition value: `debug` 432s --> /tmp/tmp.qhGiLVvQuR/registry/winnow-0.6.18/src/combinator/debug/mod.rs:37:16 432s | 432s 37 | #[cfg_attr(not(feature = "debug"), allow(unused_variables))] 432s | ^^^^^^^^^^^^^^^^^ 432s | 432s = note: expected values for `feature` are: `alloc`, `default`, `simd`, `std`, `unstable-doc`, and `unstable-recover` 432s = help: consider adding `debug` as a feature in `Cargo.toml` 432s = note: see for more information about checking conditional configuration 432s 432s warning: unexpected `cfg` condition value: `debug` 432s --> /tmp/tmp.qhGiLVvQuR/registry/winnow-0.6.18/src/combinator/debug/mod.rs:38:16 432s | 432s 38 | #[cfg_attr(not(feature = "debug"), allow(unused_mut))] 432s | ^^^^^^^^^^^^^^^^^ 432s | 432s = note: expected values for `feature` are: `alloc`, `default`, `simd`, `std`, `unstable-doc`, and `unstable-recover` 432s = help: consider adding `debug` as a feature in `Cargo.toml` 432s = note: see for more information about checking conditional configuration 432s 432s warning: unexpected `cfg` condition value: `debug` 432s --> /tmp/tmp.qhGiLVvQuR/registry/winnow-0.6.18/src/combinator/debug/mod.rs:39:16 432s | 432s 39 | #[cfg_attr(not(feature = "debug"), inline(always))] 432s | ^^^^^^^^^^^^^^^^^ 432s | 432s = note: expected values for `feature` are: `alloc`, `default`, `simd`, `std`, `unstable-doc`, and `unstable-recover` 432s = help: consider adding `debug` as a feature in `Cargo.toml` 432s = note: see for more information about checking conditional configuration 432s 432s warning: unexpected `cfg` condition value: `debug` 432s --> /tmp/tmp.qhGiLVvQuR/registry/winnow-0.6.18/src/combinator/debug/mod.rs:54:16 432s | 432s 54 | #[cfg_attr(not(feature = "debug"), allow(unused_variables))] 432s | ^^^^^^^^^^^^^^^^^ 432s | 432s = note: expected values for `feature` are: `alloc`, `default`, `simd`, `std`, `unstable-doc`, and `unstable-recover` 432s = help: consider adding `debug` as a feature in `Cargo.toml` 432s = note: see for more information about checking conditional configuration 432s 432s warning: unexpected `cfg` condition value: `debug` 432s --> /tmp/tmp.qhGiLVvQuR/registry/winnow-0.6.18/src/combinator/debug/mod.rs:79:7 432s | 432s 79 | #[cfg(feature = "debug")] 432s | ^^^^^^^^^^^^^^^^^ 432s | 432s = note: expected values for `feature` are: `alloc`, `default`, `simd`, `std`, `unstable-doc`, and `unstable-recover` 432s = help: consider adding `debug` as a feature in `Cargo.toml` 432s = note: see for more information about checking conditional configuration 432s 432s warning: unexpected `cfg` condition value: `debug` 432s --> /tmp/tmp.qhGiLVvQuR/registry/winnow-0.6.18/src/combinator/debug/mod.rs:44:11 432s | 432s 44 | #[cfg(feature = "debug")] 432s | ^^^^^^^^^^^^^^^^^ 432s | 432s = note: expected values for `feature` are: `alloc`, `default`, `simd`, `std`, `unstable-doc`, and `unstable-recover` 432s = help: consider adding `debug` as a feature in `Cargo.toml` 432s = note: see for more information about checking conditional configuration 432s 432s warning: unexpected `cfg` condition value: `debug` 432s --> /tmp/tmp.qhGiLVvQuR/registry/winnow-0.6.18/src/combinator/debug/mod.rs:48:15 432s | 432s 48 | #[cfg(not(feature = "debug"))] 432s | ^^^^^^^^^^^^^^^^^ 432s | 432s = note: expected values for `feature` are: `alloc`, `default`, `simd`, `std`, `unstable-doc`, and `unstable-recover` 432s = help: consider adding `debug` as a feature in `Cargo.toml` 432s = note: see for more information about checking conditional configuration 432s 432s warning: unexpected `cfg` condition value: `debug` 432s --> /tmp/tmp.qhGiLVvQuR/registry/winnow-0.6.18/src/combinator/debug/mod.rs:59:11 432s | 432s 59 | #[cfg(feature = "debug")] 432s | ^^^^^^^^^^^^^^^^^ 432s | 432s = note: expected values for `feature` are: `alloc`, `default`, `simd`, `std`, `unstable-doc`, and `unstable-recover` 432s = help: consider adding `debug` as a feature in `Cargo.toml` 432s = note: see for more information about checking conditional configuration 432s 433s warning: `winnow` (lib) generated 10 warnings 433s Compiling cfg-if v1.0.0 433s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=cfg_if CARGO_MANIFEST_DIR=/tmp/tmp.qhGiLVvQuR/registry/cfg-if-1.0.0 CARGO_MANIFEST_PATH=/tmp/tmp.qhGiLVvQuR/registry/cfg-if-1.0.0/Cargo.toml CARGO_PKG_AUTHORS='Alex Crichton ' CARGO_PKG_DESCRIPTION='A macro to ergonomically define an item depending on a large number of #[cfg] 433s parameters. Structured like an if-else chain, the first matching branch is the 433s item that gets emitted. 433s ' CARGO_PKG_HOMEPAGE='https://github.com/alexcrichton/cfg-if' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=cfg-if CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/alexcrichton/cfg-if' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=1.0.0 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.qhGiLVvQuR/target/debug/deps rustc --crate-name cfg_if --edition=2018 /tmp/tmp.qhGiLVvQuR/registry/cfg-if-1.0.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("core"))' -C metadata=ff3ff84a061de73f -C extra-filename=-ff3ff84a061de73f --out-dir /tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.qhGiLVvQuR/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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.qhGiLVvQuR/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 433s warning: `cfg-if` (lib) generated 1 warning (1 duplicate) 433s Compiling pin-project-lite v0.2.13 433s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=pin_project_lite CARGO_MANIFEST_DIR=/tmp/tmp.qhGiLVvQuR/registry/pin-project-lite-0.2.13 CARGO_MANIFEST_PATH=/tmp/tmp.qhGiLVvQuR/registry/pin-project-lite-0.2.13/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='A lightweight version of pin-project written with declarative macros. 433s ' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=pin-project-lite CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/taiki-e/pin-project-lite' CARGO_PKG_RUST_VERSION=1.37 CARGO_PKG_VERSION=0.2.13 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=13 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.qhGiLVvQuR/target/debug/deps rustc --crate-name pin_project_lite --edition=2018 /tmp/tmp.qhGiLVvQuR/registry/pin-project-lite-0.2.13/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=5dc815523e98d889 -C extra-filename=-5dc815523e98d889 --out-dir /tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.qhGiLVvQuR/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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.qhGiLVvQuR/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 433s warning: `pin-project-lite` (lib) generated 1 warning (1 duplicate) 433s Compiling toml_datetime v0.6.8 433s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=toml_datetime CARGO_MANIFEST_DIR=/tmp/tmp.qhGiLVvQuR/registry/toml_datetime-0.6.8 CARGO_MANIFEST_PATH=/tmp/tmp.qhGiLVvQuR/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.qhGiLVvQuR/target/debug/deps rustc --crate-name toml_datetime --edition=2021 /tmp/tmp.qhGiLVvQuR/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.qhGiLVvQuR/target/debug/deps -L dependency=/tmp/tmp.qhGiLVvQuR/target/debug/deps --cap-lints warn` 434s Compiling toml_edit v0.22.20 434s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=toml_edit CARGO_MANIFEST_DIR=/tmp/tmp.qhGiLVvQuR/registry/toml_edit-0.22.20 CARGO_MANIFEST_PATH=/tmp/tmp.qhGiLVvQuR/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.qhGiLVvQuR/target/debug/deps rustc --crate-name toml_edit --edition=2021 /tmp/tmp.qhGiLVvQuR/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.qhGiLVvQuR/target/debug/deps -L dependency=/tmp/tmp.qhGiLVvQuR/target/debug/deps --extern indexmap=/tmp/tmp.qhGiLVvQuR/target/debug/deps/libindexmap-1e18ac9265fbd6ac.rmeta --extern toml_datetime=/tmp/tmp.qhGiLVvQuR/target/debug/deps/libtoml_datetime-df29d6121930b5d6.rmeta --extern winnow=/tmp/tmp.qhGiLVvQuR/target/debug/deps/libwinnow-0f17435733cfc3dc.rmeta --cap-lints warn` 434s 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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0--remap-path-prefix/tmp/tmp.qhGiLVvQuR/registry=/usr/share/cargo/registry-Ctarget-feature=+backchain' CARGO_MANIFEST_DIR=/tmp/tmp.qhGiLVvQuR/registry/crossbeam-utils-0.8.19 CARGO_MANIFEST_PATH=/tmp/tmp.qhGiLVvQuR/registry/crossbeam-utils-0.8.19/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='Utilities for concurrent programming' CARGO_PKG_HOMEPAGE='https://github.com/crossbeam-rs/crossbeam/tree/master/crossbeam-utils' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=crossbeam-utils CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/crossbeam-rs/crossbeam' CARGO_PKG_RUST_VERSION=1.60 CARGO_PKG_VERSION=0.8.19 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=8 CARGO_PKG_VERSION_PATCH=19 CARGO_PKG_VERSION_PRE='' DEBUG=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.qhGiLVvQuR/target/debug/deps:/tmp/tmp.qhGiLVvQuR/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/build/crossbeam-utils-41ced09745ce2d1e/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.qhGiLVvQuR/target/debug/build/crossbeam-utils-481d5baddd087d3b/build-script-build` 434s [crossbeam-utils 0.8.19] cargo:rerun-if-changed=no_atomic.rs 434s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=typenum CARGO_MANIFEST_DIR=/tmp/tmp.qhGiLVvQuR/registry/typenum-1.17.0 CARGO_MANIFEST_PATH=/tmp/tmp.qhGiLVvQuR/registry/typenum-1.17.0/Cargo.toml CARGO_PKG_AUTHORS='Paho Lurie-Gregg :Andre Bogus ' CARGO_PKG_DESCRIPTION='Typenum is a Rust library for type-level numbers evaluated at 434s compile time. It currently supports bits, unsigned integers, and signed 434s integers. It also provides a type-level array of type-level numbers, but its 434s implementation is incomplete.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=typenum CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/paholg/typenum' CARGO_PKG_RUST_VERSION=1.37.0 CARGO_PKG_VERSION=1.17.0 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=17 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.qhGiLVvQuR/target/debug/deps OUT_DIR=/tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/build/typenum-b1daa52c37018028/out rustc --crate-name typenum --edition=2018 /tmp/tmp.qhGiLVvQuR/registry/typenum-1.17.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("const-generics", "force_unix_path_separator", "i128", "no_std", "strict"))' -C metadata=c66037e8139405ff -C extra-filename=-c66037e8139405ff --out-dir /tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.qhGiLVvQuR/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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.qhGiLVvQuR/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 434s warning: unexpected `cfg` condition value: `cargo-clippy` 434s --> /usr/share/cargo/registry/typenum-1.17.0/src/lib.rs:50:5 434s | 434s 50 | feature = "cargo-clippy", 434s | ^^^^^^^^^^^^^^^^^^^^^^^^ 434s | 434s = note: expected values for `feature` are: `const-generics`, `force_unix_path_separator`, `i128`, `no_std`, and `strict` 434s = help: consider adding `cargo-clippy` as a feature in `Cargo.toml` 434s = note: see for more information about checking conditional configuration 434s = note: `#[warn(unexpected_cfgs)]` on by default 434s 434s warning: unexpected `cfg` condition value: `cargo-clippy` 434s --> /usr/share/cargo/registry/typenum-1.17.0/src/lib.rs:60:13 434s | 434s 60 | #![cfg_attr(feature = "cargo-clippy", deny(clippy::missing_inline_in_public_items))] 434s | ^^^^^^^^^^^^^^^^^^^^^^^^ 434s | 434s = note: expected values for `feature` are: `const-generics`, `force_unix_path_separator`, `i128`, `no_std`, and `strict` 434s = help: consider adding `cargo-clippy` as a feature in `Cargo.toml` 434s = note: see for more information about checking conditional configuration 434s 434s warning: unexpected `cfg` condition value: `scale_info` 434s --> /usr/share/cargo/registry/typenum-1.17.0/src/lib.rs:119:12 434s | 434s 119 | #[cfg_attr(feature = "scale_info", derive(scale_info::TypeInfo))] 434s | ^^^^^^^^^^^^^^^^^^^^^^ 434s | 434s = note: expected values for `feature` are: `const-generics`, `force_unix_path_separator`, `i128`, `no_std`, and `strict` 434s = help: consider adding `scale_info` as a feature in `Cargo.toml` 434s = note: see for more information about checking conditional configuration 434s 434s warning: unexpected `cfg` condition value: `scale_info` 434s --> /usr/share/cargo/registry/typenum-1.17.0/src/lib.rs:125:12 434s | 434s 125 | #[cfg_attr(feature = "scale_info", derive(scale_info::TypeInfo))] 434s | ^^^^^^^^^^^^^^^^^^^^^^ 434s | 434s = note: expected values for `feature` are: `const-generics`, `force_unix_path_separator`, `i128`, `no_std`, and `strict` 434s = help: consider adding `scale_info` as a feature in `Cargo.toml` 434s = note: see for more information about checking conditional configuration 434s 434s warning: unexpected `cfg` condition value: `scale_info` 434s --> /usr/share/cargo/registry/typenum-1.17.0/src/lib.rs:131:12 434s | 434s 131 | #[cfg_attr(feature = "scale_info", derive(scale_info::TypeInfo))] 434s | ^^^^^^^^^^^^^^^^^^^^^^ 434s | 434s = note: expected values for `feature` are: `const-generics`, `force_unix_path_separator`, `i128`, `no_std`, and `strict` 434s = help: consider adding `scale_info` as a feature in `Cargo.toml` 434s = note: see for more information about checking conditional configuration 434s 434s warning: unexpected `cfg` condition value: `scale_info` 434s --> /usr/share/cargo/registry/typenum-1.17.0/src/bit.rs:19:12 434s | 434s 19 | #[cfg_attr(feature = "scale_info", derive(scale_info::TypeInfo))] 434s | ^^^^^^^^^^^^^^^^^^^^^^ 434s | 434s = note: expected values for `feature` are: `const-generics`, `force_unix_path_separator`, `i128`, `no_std`, and `strict` 434s = help: consider adding `scale_info` as a feature in `Cargo.toml` 434s = note: see for more information about checking conditional configuration 434s 434s warning: unexpected `cfg` condition value: `scale_info` 434s --> /usr/share/cargo/registry/typenum-1.17.0/src/bit.rs:32:12 434s | 434s 32 | #[cfg_attr(feature = "scale_info", derive(scale_info::TypeInfo))] 434s | ^^^^^^^^^^^^^^^^^^^^^^ 434s | 434s = note: expected values for `feature` are: `const-generics`, `force_unix_path_separator`, `i128`, `no_std`, and `strict` 434s = help: consider adding `scale_info` as a feature in `Cargo.toml` 434s = note: see for more information about checking conditional configuration 434s 434s warning: unexpected `cfg` condition name: `tests` 434s --> /usr/share/cargo/registry/typenum-1.17.0/src/bit.rs:187:7 434s | 434s 187 | #[cfg(tests)] 434s | ^^^^^ help: there is a config with a similar name: `test` 434s | 434s = help: consider using a Cargo feature instead 434s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 434s [lints.rust] 434s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tests)'] } 434s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tests)");` to the top of the `build.rs` 434s = note: see for more information about checking conditional configuration 434s 434s warning: unexpected `cfg` condition value: `scale_info` 434s --> /usr/share/cargo/registry/typenum-1.17.0/src/int.rs:41:12 434s | 434s 41 | #[cfg_attr(feature = "scale_info", derive(scale_info::TypeInfo))] 434s | ^^^^^^^^^^^^^^^^^^^^^^ 434s | 434s = note: expected values for `feature` are: `const-generics`, `force_unix_path_separator`, `i128`, `no_std`, and `strict` 434s = help: consider adding `scale_info` as a feature in `Cargo.toml` 434s = note: see for more information about checking conditional configuration 434s 434s warning: unexpected `cfg` condition value: `scale_info` 434s --> /usr/share/cargo/registry/typenum-1.17.0/src/int.rs:48:12 434s | 434s 48 | #[cfg_attr(feature = "scale_info", derive(scale_info::TypeInfo))] 434s | ^^^^^^^^^^^^^^^^^^^^^^ 434s | 434s = note: expected values for `feature` are: `const-generics`, `force_unix_path_separator`, `i128`, `no_std`, and `strict` 434s = help: consider adding `scale_info` as a feature in `Cargo.toml` 434s = note: see for more information about checking conditional configuration 434s 434s warning: unexpected `cfg` condition value: `scale_info` 434s --> /usr/share/cargo/registry/typenum-1.17.0/src/int.rs:71:12 434s | 434s 71 | #[cfg_attr(feature = "scale_info", derive(scale_info::TypeInfo))] 434s | ^^^^^^^^^^^^^^^^^^^^^^ 434s | 434s = note: expected values for `feature` are: `const-generics`, `force_unix_path_separator`, `i128`, `no_std`, and `strict` 434s = help: consider adding `scale_info` as a feature in `Cargo.toml` 434s = note: see for more information about checking conditional configuration 434s 434s warning: unexpected `cfg` condition value: `scale_info` 434s --> /usr/share/cargo/registry/typenum-1.17.0/src/uint.rs:49:12 434s | 434s 49 | #[cfg_attr(feature = "scale_info", derive(scale_info::TypeInfo))] 434s | ^^^^^^^^^^^^^^^^^^^^^^ 434s | 434s = note: expected values for `feature` are: `const-generics`, `force_unix_path_separator`, `i128`, `no_std`, and `strict` 434s = help: consider adding `scale_info` as a feature in `Cargo.toml` 434s = note: see for more information about checking conditional configuration 434s 434s warning: unexpected `cfg` condition value: `scale_info` 434s --> /usr/share/cargo/registry/typenum-1.17.0/src/uint.rs:147:12 434s | 434s 147 | #[cfg_attr(feature = "scale_info", derive(scale_info::TypeInfo))] 434s | ^^^^^^^^^^^^^^^^^^^^^^ 434s | 434s = note: expected values for `feature` are: `const-generics`, `force_unix_path_separator`, `i128`, `no_std`, and `strict` 434s = help: consider adding `scale_info` as a feature in `Cargo.toml` 434s = note: see for more information about checking conditional configuration 434s 434s warning: unexpected `cfg` condition name: `tests` 434s --> /usr/share/cargo/registry/typenum-1.17.0/src/uint.rs:1656:7 434s | 434s 1656 | #[cfg(tests)] 434s | ^^^^^ help: there is a config with a similar name: `test` 434s | 434s = help: consider using a Cargo feature instead 434s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 434s [lints.rust] 434s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tests)'] } 434s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tests)");` to the top of the `build.rs` 434s = note: see for more information about checking conditional configuration 434s 434s warning: unexpected `cfg` condition value: `cargo-clippy` 434s --> /usr/share/cargo/registry/typenum-1.17.0/src/uint.rs:1709:16 434s | 434s 1709 | #[cfg_attr(feature = "cargo-clippy", allow(clippy::suspicious_arithmetic_impl))] 434s | ^^^^^^^^^^^^^^^^^^^^^^^^ 434s | 434s = note: expected values for `feature` are: `const-generics`, `force_unix_path_separator`, `i128`, `no_std`, and `strict` 434s = help: consider adding `cargo-clippy` as a feature in `Cargo.toml` 434s = note: see for more information about checking conditional configuration 434s 434s warning: unexpected `cfg` condition value: `scale_info` 434s --> /usr/share/cargo/registry/typenum-1.17.0/src/array.rs:11:12 434s | 434s 11 | #[cfg_attr(feature = "scale_info", derive(scale_info::TypeInfo))] 434s | ^^^^^^^^^^^^^^^^^^^^^^ 434s | 434s = note: expected values for `feature` are: `const-generics`, `force_unix_path_separator`, `i128`, `no_std`, and `strict` 434s = help: consider adding `scale_info` as a feature in `Cargo.toml` 434s = note: see for more information about checking conditional configuration 434s 434s warning: unexpected `cfg` condition value: `scale_info` 434s --> /usr/share/cargo/registry/typenum-1.17.0/src/array.rs:23:12 434s | 434s 23 | #[cfg_attr(feature = "scale_info", derive(scale_info::TypeInfo))] 434s | ^^^^^^^^^^^^^^^^^^^^^^ 434s | 434s = note: expected values for `feature` are: `const-generics`, `force_unix_path_separator`, `i128`, `no_std`, and `strict` 434s = help: consider adding `scale_info` as a feature in `Cargo.toml` 434s = note: see for more information about checking conditional configuration 434s 434s warning: unused import: `*` 434s --> /usr/share/cargo/registry/typenum-1.17.0/src/lib.rs:106:25 434s | 434s 106 | N1, N2, Z0, P1, P2, *, 434s | ^ 434s | 434s = note: `#[warn(unused_imports)]` on by default 434s 435s warning: `typenum` (lib) generated 19 warnings (1 duplicate) 435s 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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0--remap-path-prefix/tmp/tmp.qhGiLVvQuR/registry=/usr/share/cargo/registry-Ctarget-feature=+backchain' CARGO_FEATURE_MORE_LENGTHS=1 CARGO_MANIFEST_DIR=/tmp/tmp.qhGiLVvQuR/registry/generic-array-0.14.7 CARGO_MANIFEST_PATH=/tmp/tmp.qhGiLVvQuR/registry/generic-array-0.14.7/Cargo.toml CARGO_PKG_AUTHORS='Bartłomiej Kamiński :Aaron Trent ' CARGO_PKG_DESCRIPTION='Generic types implementing functionality of arrays' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=generic-array CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/fizyk20/generic-array.git' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.14.7 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=14 CARGO_PKG_VERSION_PATCH=7 CARGO_PKG_VERSION_PRE='' DEBUG=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.qhGiLVvQuR/target/debug/deps:/tmp/tmp.qhGiLVvQuR/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/build/generic-array-da8fba9a25807be8/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.qhGiLVvQuR/target/debug/build/generic-array-160edb9b35222b14/build-script-build` 435s [generic-array 0.14.7] cargo:rustc-cfg=relaxed_coherence 435s Compiling serde v1.0.217 435s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.qhGiLVvQuR/registry/serde-1.0.217 CARGO_MANIFEST_PATH=/tmp/tmp.qhGiLVvQuR/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.qhGiLVvQuR/target/debug/deps rustc --crate-name build_script_build --edition=2018 /tmp/tmp.qhGiLVvQuR/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.qhGiLVvQuR/target/debug/build/serde-c22c8603f1f999ec -L dependency=/tmp/tmp.qhGiLVvQuR/target/debug/deps --cap-lints warn` 435s 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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0--remap-path-prefix/tmp/tmp.qhGiLVvQuR/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.qhGiLVvQuR/registry/serde-1.0.217 CARGO_MANIFEST_PATH=/tmp/tmp.qhGiLVvQuR/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.qhGiLVvQuR/target/debug/deps:/tmp/tmp.qhGiLVvQuR/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/build/serde-c08ea6899e623ec6/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.qhGiLVvQuR/target/debug/build/serde-c22c8603f1f999ec/build-script-build` 435s [serde 1.0.217] cargo:rerun-if-changed=build.rs 435s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_core_cstr) 435s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_core_error) 435s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_core_net) 435s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_core_num_saturating) 435s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_core_try_from) 435s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_diagnostic_namespace) 435s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_float_copysign) 435s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_num_nonzero_signed) 435s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_relaxed_trait_bounds) 435s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_serde_derive) 435s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_std_atomic) 435s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_std_atomic64) 435s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_systemtime_checked_add) 435s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_target_has_atomic) 435s Compiling proc-macro-crate v3.2.0 435s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=proc_macro_crate CARGO_MANIFEST_DIR=/tmp/tmp.qhGiLVvQuR/registry/proc-macro-crate-3.2.0 CARGO_MANIFEST_PATH=/tmp/tmp.qhGiLVvQuR/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 435s ' 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.qhGiLVvQuR/target/debug/deps rustc --crate-name proc_macro_crate --edition=2021 /tmp/tmp.qhGiLVvQuR/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.qhGiLVvQuR/target/debug/deps -L dependency=/tmp/tmp.qhGiLVvQuR/target/debug/deps --extern toml_edit=/tmp/tmp.qhGiLVvQuR/target/debug/deps/libtoml_edit-89b547630831cc85.rmeta --cap-lints warn` 436s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=generic_array CARGO_MANIFEST_DIR=/tmp/tmp.qhGiLVvQuR/registry/generic-array-0.14.7 CARGO_MANIFEST_PATH=/tmp/tmp.qhGiLVvQuR/registry/generic-array-0.14.7/Cargo.toml CARGO_PKG_AUTHORS='Bartłomiej Kamiński :Aaron Trent ' CARGO_PKG_DESCRIPTION='Generic types implementing functionality of arrays' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=generic-array CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/fizyk20/generic-array.git' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.14.7 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=14 CARGO_PKG_VERSION_PATCH=7 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.qhGiLVvQuR/target/debug/deps OUT_DIR=/tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/build/generic-array-da8fba9a25807be8/out rustc --crate-name generic_array --edition=2015 /tmp/tmp.qhGiLVvQuR/registry/generic-array-0.14.7/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="more_lengths"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("more_lengths", "serde", "zeroize"))' -C metadata=d02d059964c7aee0 -C extra-filename=-d02d059964c7aee0 --out-dir /tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.qhGiLVvQuR/target/debug/deps --extern typenum=/tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/deps/libtypenum-c66037e8139405ff.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.qhGiLVvQuR/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain --cfg relaxed_coherence` 436s warning: unexpected `cfg` condition name: `relaxed_coherence` 436s --> /usr/share/cargo/registry/generic-array-0.14.7/src/impls.rs:136:19 436s | 436s 136 | #[cfg(relaxed_coherence)] 436s | ^^^^^^^^^^^^^^^^^ 436s ... 436s 183 | / impl_from! { 436s 184 | | 1 => ::typenum::U1, 436s 185 | | 2 => ::typenum::U2, 436s 186 | | 3 => ::typenum::U3, 436s ... | 436s 215 | | 32 => ::typenum::U32 436s 216 | | } 436s | |_- in this macro invocation 436s | 436s = help: expected names are: `clippy`, `debug_assertions`, `doc`, `docsrs`, `doctest`, `feature`, `fmt_debug`, `miri`, `overflow_checks`, `panic`, `proc_macro`, `relocation_model`, `rustfmt`, `sanitize`, `sanitizer_cfi_generalize_pointers`, `sanitizer_cfi_normalize_integers`, `target_abi`, `target_arch`, `target_endian`, `target_env`, `target_family`, `target_feature`, `target_has_atomic`, `target_has_atomic_equal_alignment`, `target_has_atomic_load_store`, `target_os`, `target_pointer_width`, `target_thread_local`, `target_vendor`, `test`, `ub_checks`, `unix`, and `windows` 436s = help: consider using a Cargo feature instead 436s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 436s [lints.rust] 436s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(relaxed_coherence)'] } 436s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(relaxed_coherence)");` to the top of the `build.rs` 436s = note: see for more information about checking conditional configuration 436s = note: `#[warn(unexpected_cfgs)]` on by default 436s = note: this warning originates in the macro `impl_from` (in Nightly builds, run with -Z macro-backtrace for more info) 436s 436s warning: unexpected `cfg` condition name: `relaxed_coherence` 436s --> /usr/share/cargo/registry/generic-array-0.14.7/src/impls.rs:158:23 436s | 436s 158 | #[cfg(not(relaxed_coherence))] 436s | ^^^^^^^^^^^^^^^^^ 436s ... 436s 183 | / impl_from! { 436s 184 | | 1 => ::typenum::U1, 436s 185 | | 2 => ::typenum::U2, 436s 186 | | 3 => ::typenum::U3, 436s ... | 436s 215 | | 32 => ::typenum::U32 436s 216 | | } 436s | |_- in this macro invocation 436s | 436s = help: consider using a Cargo feature instead 436s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 436s [lints.rust] 436s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(relaxed_coherence)'] } 436s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(relaxed_coherence)");` to the top of the `build.rs` 436s = note: see for more information about checking conditional configuration 436s = note: this warning originates in the macro `impl_from` (in Nightly builds, run with -Z macro-backtrace for more info) 436s 436s warning: unexpected `cfg` condition name: `relaxed_coherence` 436s --> /usr/share/cargo/registry/generic-array-0.14.7/src/impls.rs:136:19 436s | 436s 136 | #[cfg(relaxed_coherence)] 436s | ^^^^^^^^^^^^^^^^^ 436s ... 436s 219 | / impl_from! { 436s 220 | | 33 => ::typenum::U33, 436s 221 | | 34 => ::typenum::U34, 436s 222 | | 35 => ::typenum::U35, 436s ... | 436s 268 | | 1024 => ::typenum::U1024 436s 269 | | } 436s | |_- in this macro invocation 436s | 436s = help: consider using a Cargo feature instead 436s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 436s [lints.rust] 436s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(relaxed_coherence)'] } 436s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(relaxed_coherence)");` to the top of the `build.rs` 436s = note: see for more information about checking conditional configuration 436s = note: this warning originates in the macro `impl_from` (in Nightly builds, run with -Z macro-backtrace for more info) 436s 436s warning: unexpected `cfg` condition name: `relaxed_coherence` 436s --> /usr/share/cargo/registry/generic-array-0.14.7/src/impls.rs:158:23 436s | 436s 158 | #[cfg(not(relaxed_coherence))] 436s | ^^^^^^^^^^^^^^^^^ 436s ... 436s 219 | / impl_from! { 436s 220 | | 33 => ::typenum::U33, 436s 221 | | 34 => ::typenum::U34, 436s 222 | | 35 => ::typenum::U35, 436s ... | 436s 268 | | 1024 => ::typenum::U1024 436s 269 | | } 436s | |_- in this macro invocation 436s | 436s = help: consider using a Cargo feature instead 436s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 436s [lints.rust] 436s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(relaxed_coherence)'] } 436s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(relaxed_coherence)");` to the top of the `build.rs` 436s = note: see for more information about checking conditional configuration 436s = note: this warning originates in the macro `impl_from` (in Nightly builds, run with -Z macro-backtrace for more info) 436s 436s warning: `generic-array` (lib) generated 5 warnings (1 duplicate) 436s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=crossbeam_utils CARGO_MANIFEST_DIR=/tmp/tmp.qhGiLVvQuR/registry/crossbeam-utils-0.8.19 CARGO_MANIFEST_PATH=/tmp/tmp.qhGiLVvQuR/registry/crossbeam-utils-0.8.19/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='Utilities for concurrent programming' CARGO_PKG_HOMEPAGE='https://github.com/crossbeam-rs/crossbeam/tree/master/crossbeam-utils' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=crossbeam-utils CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/crossbeam-rs/crossbeam' CARGO_PKG_RUST_VERSION=1.60 CARGO_PKG_VERSION=0.8.19 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=8 CARGO_PKG_VERSION_PATCH=19 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.qhGiLVvQuR/target/debug/deps OUT_DIR=/tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/build/crossbeam-utils-41ced09745ce2d1e/out rustc --crate-name crossbeam_utils --edition=2021 /tmp/tmp.qhGiLVvQuR/registry/crossbeam-utils-0.8.19/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "nightly", "std"))' -C metadata=bcaf20eecaf4c1fc -C extra-filename=-bcaf20eecaf4c1fc --out-dir /tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.qhGiLVvQuR/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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.qhGiLVvQuR/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 436s warning: unexpected `cfg` condition name: `crossbeam_loom` 436s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/lib.rs:42:7 436s | 436s 42 | #[cfg(crossbeam_loom)] 436s | ^^^^^^^^^^^^^^ 436s | 436s = help: expected names are: `clippy`, `debug_assertions`, `doc`, `docsrs`, `doctest`, `feature`, `fmt_debug`, `miri`, `overflow_checks`, `panic`, `proc_macro`, `relocation_model`, `rustfmt`, `sanitize`, `sanitizer_cfi_generalize_pointers`, `sanitizer_cfi_normalize_integers`, `target_abi`, `target_arch`, `target_endian`, `target_env`, `target_family`, `target_feature`, `target_has_atomic`, `target_has_atomic_equal_alignment`, `target_has_atomic_load_store`, `target_os`, `target_pointer_width`, `target_thread_local`, `target_vendor`, `test`, `ub_checks`, `unix`, and `windows` 436s = help: consider using a Cargo feature instead 436s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 436s [lints.rust] 436s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 436s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 436s = note: see for more information about checking conditional configuration 436s = note: `#[warn(unexpected_cfgs)]` on by default 436s 436s warning: unexpected `cfg` condition name: `crossbeam_loom` 436s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/lib.rs:65:11 436s | 436s 65 | #[cfg(not(crossbeam_loom))] 436s | ^^^^^^^^^^^^^^ 436s | 436s = help: consider using a Cargo feature instead 436s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 436s [lints.rust] 436s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 436s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 436s = note: see for more information about checking conditional configuration 436s 436s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 436s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/lib.rs:74:23 436s | 436s 74 | #[cfg(not(crossbeam_no_atomic))] 436s | ^^^^^^^^^^^^^^^^^^^ 436s | 436s = help: consider using a Cargo feature instead 436s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 436s [lints.rust] 436s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 436s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 436s = note: see for more information about checking conditional configuration 436s 436s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 436s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/lib.rs:78:23 436s | 436s 78 | #[cfg(not(crossbeam_no_atomic))] 436s | ^^^^^^^^^^^^^^^^^^^ 436s | 436s = help: consider using a Cargo feature instead 436s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 436s [lints.rust] 436s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 436s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 436s = note: see for more information about checking conditional configuration 436s 436s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 436s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/lib.rs:81:23 436s | 436s 81 | #[cfg(not(crossbeam_no_atomic))] 436s | ^^^^^^^^^^^^^^^^^^^ 436s | 436s = help: consider using a Cargo feature instead 436s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 436s [lints.rust] 436s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 436s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 436s = note: see for more information about checking conditional configuration 436s 436s warning: unexpected `cfg` condition name: `crossbeam_loom` 436s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/mod.rs:7:11 436s | 436s 7 | #[cfg(not(crossbeam_loom))] 436s | ^^^^^^^^^^^^^^ 436s | 436s = help: consider using a Cargo feature instead 436s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 436s [lints.rust] 436s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 436s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 436s = note: see for more information about checking conditional configuration 436s 436s warning: unexpected `cfg` condition name: `crossbeam_loom` 436s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/mod.rs:25:11 436s | 436s 25 | #[cfg(not(crossbeam_loom))] 436s | ^^^^^^^^^^^^^^ 436s | 436s = help: consider using a Cargo feature instead 436s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 436s [lints.rust] 436s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 436s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 436s = note: see for more information about checking conditional configuration 436s 436s warning: unexpected `cfg` condition name: `crossbeam_loom` 436s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/mod.rs:28:11 436s | 436s 28 | #[cfg(not(crossbeam_loom))] 436s | ^^^^^^^^^^^^^^ 436s | 436s = help: consider using a Cargo feature instead 436s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 436s [lints.rust] 436s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 436s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 436s = note: see for more information about checking conditional configuration 436s 436s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 436s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:1:11 436s | 436s 1 | #[cfg(not(crossbeam_no_atomic))] 436s | ^^^^^^^^^^^^^^^^^^^ 436s | 436s = help: consider using a Cargo feature instead 436s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 436s [lints.rust] 436s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 436s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 436s = note: see for more information about checking conditional configuration 436s 436s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 436s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:27:11 436s | 436s 27 | #[cfg(not(crossbeam_no_atomic))] 436s | ^^^^^^^^^^^^^^^^^^^ 436s | 436s = help: consider using a Cargo feature instead 436s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 436s [lints.rust] 436s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 436s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 436s = note: see for more information about checking conditional configuration 436s 436s warning: unexpected `cfg` condition name: `crossbeam_loom` 436s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:36:19 436s | 436s 36 | not(any(miri, crossbeam_loom, crossbeam_sanitize_thread)), 436s | ^^^^^^^^^^^^^^ 436s | 436s = help: consider using a Cargo feature instead 436s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 436s [lints.rust] 436s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 436s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 436s = note: see for more information about checking conditional configuration 436s 436s warning: unexpected `cfg` condition name: `crossbeam_sanitize_thread` 436s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:36:35 436s | 436s 36 | not(any(miri, crossbeam_loom, crossbeam_sanitize_thread)), 436s | ^^^^^^^^^^^^^^^^^^^^^^^^^ 436s | 436s = help: consider using a Cargo feature instead 436s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 436s [lints.rust] 436s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_sanitize_thread)'] } 436s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_sanitize_thread)");` to the top of the `build.rs` 436s = note: see for more information about checking conditional configuration 436s 436s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 436s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:50:11 436s | 436s 50 | #[cfg(not(crossbeam_no_atomic))] 436s | ^^^^^^^^^^^^^^^^^^^ 436s | 436s = help: consider using a Cargo feature instead 436s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 436s [lints.rust] 436s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 436s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 436s = note: see for more information about checking conditional configuration 436s 436s warning: unexpected `cfg` condition name: `crossbeam_loom` 436s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:53:19 436s | 436s 53 | not(any(miri, crossbeam_loom, crossbeam_sanitize_thread)), 436s | ^^^^^^^^^^^^^^ 436s | 436s = help: consider using a Cargo feature instead 436s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 436s [lints.rust] 436s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 436s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 436s = note: see for more information about checking conditional configuration 436s 436s warning: unexpected `cfg` condition name: `crossbeam_sanitize_thread` 436s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:53:35 436s | 436s 53 | not(any(miri, crossbeam_loom, crossbeam_sanitize_thread)), 436s | ^^^^^^^^^^^^^^^^^^^^^^^^^ 436s | 436s = help: consider using a Cargo feature instead 436s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 436s [lints.rust] 436s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_sanitize_thread)'] } 436s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_sanitize_thread)");` to the top of the `build.rs` 436s = note: see for more information about checking conditional configuration 436s 436s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 436s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:101:11 436s | 436s 101 | #[cfg(not(crossbeam_no_atomic))] 436s | ^^^^^^^^^^^^^^^^^^^ 436s | 436s = help: consider using a Cargo feature instead 436s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 436s [lints.rust] 436s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 436s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 436s = note: see for more information about checking conditional configuration 436s 436s warning: unexpected `cfg` condition name: `crossbeam_loom` 436s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:107:7 436s | 436s 107 | #[cfg(crossbeam_loom)] 436s | ^^^^^^^^^^^^^^ 436s | 436s = help: consider using a Cargo feature instead 436s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 436s [lints.rust] 436s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 436s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 436s = note: see for more information about checking conditional configuration 436s 436s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 436s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:66:19 436s | 436s 66 | #[cfg(not(crossbeam_no_atomic))] 436s | ^^^^^^^^^^^^^^^^^^^ 436s ... 436s 79 | impl_atomic!(AtomicBool, bool); 436s | ------------------------------ in this macro invocation 436s | 436s = help: consider using a Cargo feature instead 436s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 436s [lints.rust] 436s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 436s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 436s = note: see for more information about checking conditional configuration 436s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 436s 436s warning: unexpected `cfg` condition name: `crossbeam_loom` 436s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:71:15 436s | 436s 71 | #[cfg(crossbeam_loom)] 436s | ^^^^^^^^^^^^^^ 436s ... 436s 79 | impl_atomic!(AtomicBool, bool); 436s | ------------------------------ in this macro invocation 436s | 436s = help: consider using a Cargo feature instead 436s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 436s [lints.rust] 436s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 436s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 436s = note: see for more information about checking conditional configuration 436s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 436s 436s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 436s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:66:19 436s | 436s 66 | #[cfg(not(crossbeam_no_atomic))] 436s | ^^^^^^^^^^^^^^^^^^^ 436s ... 436s 80 | impl_atomic!(AtomicUsize, usize); 436s | -------------------------------- in this macro invocation 436s | 436s = help: consider using a Cargo feature instead 436s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 436s [lints.rust] 436s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 436s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 436s = note: see for more information about checking conditional configuration 436s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 436s 436s warning: unexpected `cfg` condition name: `crossbeam_loom` 436s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:71:15 436s | 436s 71 | #[cfg(crossbeam_loom)] 436s | ^^^^^^^^^^^^^^ 436s ... 436s 80 | impl_atomic!(AtomicUsize, usize); 436s | -------------------------------- in this macro invocation 436s | 436s = help: consider using a Cargo feature instead 436s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 436s [lints.rust] 436s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 436s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 436s = note: see for more information about checking conditional configuration 436s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 436s 436s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 436s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:66:19 436s | 436s 66 | #[cfg(not(crossbeam_no_atomic))] 436s | ^^^^^^^^^^^^^^^^^^^ 436s ... 436s 81 | impl_atomic!(AtomicIsize, isize); 436s | -------------------------------- in this macro invocation 436s | 436s = help: consider using a Cargo feature instead 436s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 436s [lints.rust] 436s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 436s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 436s = note: see for more information about checking conditional configuration 436s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 436s 436s warning: unexpected `cfg` condition name: `crossbeam_loom` 436s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:71:15 436s | 436s 71 | #[cfg(crossbeam_loom)] 436s | ^^^^^^^^^^^^^^ 436s ... 436s 81 | impl_atomic!(AtomicIsize, isize); 436s | -------------------------------- in this macro invocation 436s | 436s = help: consider using a Cargo feature instead 436s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 436s [lints.rust] 436s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 436s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 436s = note: see for more information about checking conditional configuration 436s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 436s 436s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 436s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:66:19 436s | 436s 66 | #[cfg(not(crossbeam_no_atomic))] 436s | ^^^^^^^^^^^^^^^^^^^ 436s ... 436s 82 | impl_atomic!(AtomicU8, u8); 436s | -------------------------- in this macro invocation 436s | 436s = help: consider using a Cargo feature instead 436s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 436s [lints.rust] 436s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 436s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 436s = note: see for more information about checking conditional configuration 436s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 436s 436s warning: unexpected `cfg` condition name: `crossbeam_loom` 436s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:71:15 436s | 436s 71 | #[cfg(crossbeam_loom)] 436s | ^^^^^^^^^^^^^^ 436s ... 436s 82 | impl_atomic!(AtomicU8, u8); 436s | -------------------------- in this macro invocation 436s | 436s = help: consider using a Cargo feature instead 436s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 436s [lints.rust] 436s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 436s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 436s = note: see for more information about checking conditional configuration 436s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 436s 436s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 436s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:66:19 436s | 436s 66 | #[cfg(not(crossbeam_no_atomic))] 436s | ^^^^^^^^^^^^^^^^^^^ 436s ... 436s 83 | impl_atomic!(AtomicI8, i8); 436s | -------------------------- in this macro invocation 436s | 436s = help: consider using a Cargo feature instead 436s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 436s [lints.rust] 436s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 436s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 436s = note: see for more information about checking conditional configuration 436s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 436s 436s warning: unexpected `cfg` condition name: `crossbeam_loom` 436s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:71:15 436s | 436s 71 | #[cfg(crossbeam_loom)] 436s | ^^^^^^^^^^^^^^ 436s ... 436s 83 | impl_atomic!(AtomicI8, i8); 436s | -------------------------- in this macro invocation 436s | 436s = help: consider using a Cargo feature instead 436s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 436s [lints.rust] 436s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 436s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 436s = note: see for more information about checking conditional configuration 436s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 436s 436s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 436s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:66:19 436s | 436s 66 | #[cfg(not(crossbeam_no_atomic))] 436s | ^^^^^^^^^^^^^^^^^^^ 436s ... 436s 84 | impl_atomic!(AtomicU16, u16); 436s | ---------------------------- in this macro invocation 436s | 436s = help: consider using a Cargo feature instead 436s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 436s [lints.rust] 436s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 436s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 436s = note: see for more information about checking conditional configuration 436s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 436s 436s warning: unexpected `cfg` condition name: `crossbeam_loom` 436s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:71:15 436s | 436s 71 | #[cfg(crossbeam_loom)] 436s | ^^^^^^^^^^^^^^ 436s ... 436s 84 | impl_atomic!(AtomicU16, u16); 436s | ---------------------------- in this macro invocation 436s | 436s = help: consider using a Cargo feature instead 436s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 436s [lints.rust] 436s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 436s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 436s = note: see for more information about checking conditional configuration 436s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 436s 436s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 436s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:66:19 436s | 436s 66 | #[cfg(not(crossbeam_no_atomic))] 436s | ^^^^^^^^^^^^^^^^^^^ 436s ... 436s 85 | impl_atomic!(AtomicI16, i16); 436s | ---------------------------- in this macro invocation 436s | 436s = help: consider using a Cargo feature instead 436s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 436s [lints.rust] 436s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 436s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 436s = note: see for more information about checking conditional configuration 436s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 436s 436s warning: unexpected `cfg` condition name: `crossbeam_loom` 436s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:71:15 436s | 436s 71 | #[cfg(crossbeam_loom)] 436s | ^^^^^^^^^^^^^^ 436s ... 436s 85 | impl_atomic!(AtomicI16, i16); 436s | ---------------------------- in this macro invocation 436s | 436s = help: consider using a Cargo feature instead 436s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 436s [lints.rust] 436s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 436s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 436s = note: see for more information about checking conditional configuration 436s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 436s 436s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 436s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:66:19 436s | 436s 66 | #[cfg(not(crossbeam_no_atomic))] 436s | ^^^^^^^^^^^^^^^^^^^ 436s ... 436s 87 | impl_atomic!(AtomicU32, u32); 436s | ---------------------------- in this macro invocation 436s | 436s = help: consider using a Cargo feature instead 436s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 436s [lints.rust] 436s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 436s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 436s = note: see for more information about checking conditional configuration 436s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 436s 436s warning: unexpected `cfg` condition name: `crossbeam_loom` 436s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:71:15 436s | 436s 71 | #[cfg(crossbeam_loom)] 436s | ^^^^^^^^^^^^^^ 436s ... 436s 87 | impl_atomic!(AtomicU32, u32); 436s | ---------------------------- in this macro invocation 436s | 436s = help: consider using a Cargo feature instead 436s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 436s [lints.rust] 436s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 436s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 436s = note: see for more information about checking conditional configuration 436s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 436s 436s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 436s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:66:19 436s | 436s 66 | #[cfg(not(crossbeam_no_atomic))] 436s | ^^^^^^^^^^^^^^^^^^^ 436s ... 436s 89 | impl_atomic!(AtomicI32, i32); 436s | ---------------------------- in this macro invocation 436s | 436s = help: consider using a Cargo feature instead 436s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 436s [lints.rust] 436s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 436s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 436s = note: see for more information about checking conditional configuration 436s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 436s 436s warning: unexpected `cfg` condition name: `crossbeam_loom` 436s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:71:15 436s | 436s 71 | #[cfg(crossbeam_loom)] 436s | ^^^^^^^^^^^^^^ 436s ... 436s 89 | impl_atomic!(AtomicI32, i32); 436s | ---------------------------- in this macro invocation 436s | 436s = help: consider using a Cargo feature instead 436s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 436s [lints.rust] 436s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 436s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 436s = note: see for more information about checking conditional configuration 436s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 436s 436s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 436s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:66:19 436s | 436s 66 | #[cfg(not(crossbeam_no_atomic))] 436s | ^^^^^^^^^^^^^^^^^^^ 436s ... 436s 94 | impl_atomic!(AtomicU64, u64); 436s | ---------------------------- in this macro invocation 436s | 436s = help: consider using a Cargo feature instead 436s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 436s [lints.rust] 436s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 436s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 436s = note: see for more information about checking conditional configuration 436s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 436s 436s warning: unexpected `cfg` condition name: `crossbeam_loom` 436s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:71:15 436s | 436s 71 | #[cfg(crossbeam_loom)] 436s | ^^^^^^^^^^^^^^ 436s ... 436s 94 | impl_atomic!(AtomicU64, u64); 436s | ---------------------------- in this macro invocation 436s | 436s = help: consider using a Cargo feature instead 436s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 436s [lints.rust] 436s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 436s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 436s = note: see for more information about checking conditional configuration 436s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 436s 436s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 436s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:66:19 436s | 436s 66 | #[cfg(not(crossbeam_no_atomic))] 436s | ^^^^^^^^^^^^^^^^^^^ 436s ... 436s 99 | impl_atomic!(AtomicI64, i64); 436s | ---------------------------- in this macro invocation 436s | 436s = help: consider using a Cargo feature instead 436s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 436s [lints.rust] 436s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 436s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 436s = note: see for more information about checking conditional configuration 436s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 436s 436s warning: unexpected `cfg` condition name: `crossbeam_loom` 436s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:71:15 436s | 436s 71 | #[cfg(crossbeam_loom)] 436s | ^^^^^^^^^^^^^^ 436s ... 436s 99 | impl_atomic!(AtomicI64, i64); 436s | ---------------------------- in this macro invocation 436s | 436s = help: consider using a Cargo feature instead 436s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 436s [lints.rust] 436s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 436s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 436s = note: see for more information about checking conditional configuration 436s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 436s 436s warning: `crossbeam-utils` (lib) generated 40 warnings (1 duplicate) 436s Compiling zerocopy-derive v0.7.34 436s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=zerocopy_derive CARGO_MANIFEST_DIR=/tmp/tmp.qhGiLVvQuR/registry/zerocopy-derive-0.7.34 CARGO_MANIFEST_PATH=/tmp/tmp.qhGiLVvQuR/registry/zerocopy-derive-0.7.34/Cargo.toml CARGO_PKG_AUTHORS='Joshua Liebow-Feeser ' CARGO_PKG_DESCRIPTION='Custom derive for traits from the zerocopy crate' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='BSD-2-Clause OR Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=zerocopy-derive CARGO_PKG_README='' CARGO_PKG_REPOSITORY='https://github.com/google/zerocopy' CARGO_PKG_RUST_VERSION=1.60.0 CARGO_PKG_VERSION=0.7.34 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=7 CARGO_PKG_VERSION_PATCH=34 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.qhGiLVvQuR/target/debug/deps rustc --crate-name zerocopy_derive --edition=2018 /tmp/tmp.qhGiLVvQuR/registry/zerocopy-derive-0.7.34/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type proc-macro --emit=dep-info,link -C prefer-dynamic -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=676bad9287e184ca -C extra-filename=-676bad9287e184ca --out-dir /tmp/tmp.qhGiLVvQuR/target/debug/deps -L dependency=/tmp/tmp.qhGiLVvQuR/target/debug/deps --extern proc_macro2=/tmp/tmp.qhGiLVvQuR/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rlib --extern quote=/tmp/tmp.qhGiLVvQuR/target/debug/deps/libquote-dc92c6f25ee0f0c6.rlib --extern syn=/tmp/tmp.qhGiLVvQuR/target/debug/deps/libsyn-0167beed9e699402.rlib --extern proc_macro --cap-lints warn` 437s Compiling serde_derive v1.0.217 437s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=serde_derive CARGO_MANIFEST_DIR=/tmp/tmp.qhGiLVvQuR/registry/serde_derive-1.0.217 CARGO_MANIFEST_PATH=/tmp/tmp.qhGiLVvQuR/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.qhGiLVvQuR/target/debug/deps rustc --crate-name serde_derive --edition=2015 /tmp/tmp.qhGiLVvQuR/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=85fb19fec9ccb150 -C extra-filename=-85fb19fec9ccb150 --out-dir /tmp/tmp.qhGiLVvQuR/target/debug/deps -L dependency=/tmp/tmp.qhGiLVvQuR/target/debug/deps --extern proc_macro2=/tmp/tmp.qhGiLVvQuR/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rlib --extern quote=/tmp/tmp.qhGiLVvQuR/target/debug/deps/libquote-dc92c6f25ee0f0c6.rlib --extern syn=/tmp/tmp.qhGiLVvQuR/target/debug/deps/libsyn-0167beed9e699402.rlib --extern proc_macro --cap-lints warn` 438s Compiling zvariant_utils v2.1.0 438s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=zvariant_utils CARGO_MANIFEST_DIR=/tmp/tmp.qhGiLVvQuR/registry/zvariant_utils-2.1.0 CARGO_MANIFEST_PATH=/tmp/tmp.qhGiLVvQuR/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.qhGiLVvQuR/target/debug/deps rustc --crate-name zvariant_utils --edition=2021 /tmp/tmp.qhGiLVvQuR/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=555d90bad4acf190 -C extra-filename=-555d90bad4acf190 --out-dir /tmp/tmp.qhGiLVvQuR/target/debug/deps -L dependency=/tmp/tmp.qhGiLVvQuR/target/debug/deps --extern proc_macro2=/tmp/tmp.qhGiLVvQuR/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rmeta --extern quote=/tmp/tmp.qhGiLVvQuR/target/debug/deps/libquote-dc92c6f25ee0f0c6.rmeta --extern syn=/tmp/tmp.qhGiLVvQuR/target/debug/deps/libsyn-0167beed9e699402.rmeta --cap-lints warn` 438s Compiling futures-core v0.3.31 438s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=futures_core CARGO_MANIFEST_DIR=/tmp/tmp.qhGiLVvQuR/registry/futures-core-0.3.31 CARGO_MANIFEST_PATH=/tmp/tmp.qhGiLVvQuR/registry/futures-core-0.3.31/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='The core traits and types in for the `futures` library. 438s ' CARGO_PKG_HOMEPAGE='https://rust-lang.github.io/futures-rs' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=futures-core CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/futures-rs' CARGO_PKG_RUST_VERSION=1.36 CARGO_PKG_VERSION=0.3.31 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=31 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.qhGiLVvQuR/target/debug/deps rustc --crate-name futures_core --edition=2018 /tmp/tmp.qhGiLVvQuR/registry/futures-core-0.3.31/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --warn=unreachable_pub --warn=unexpected_cfgs --warn=single_use_lifetimes --warn=rust_2018_idioms --warn=missing_debug_implementations --check-cfg 'cfg(futures_sanitizer)' --cfg 'feature="alloc"' --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "cfg-target-has-atomic", "default", "portable-atomic", "std", "unstable"))' -C metadata=8d305950da6bf5c8 -C extra-filename=-8d305950da6bf5c8 --out-dir /tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.qhGiLVvQuR/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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.qhGiLVvQuR/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 438s warning: `futures-core` (lib) generated 1 warning (1 duplicate) 438s Compiling byteorder v1.5.0 438s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=byteorder CARGO_MANIFEST_DIR=/tmp/tmp.qhGiLVvQuR/registry/byteorder-1.5.0 CARGO_MANIFEST_PATH=/tmp/tmp.qhGiLVvQuR/registry/byteorder-1.5.0/Cargo.toml CARGO_PKG_AUTHORS='Andrew Gallant ' CARGO_PKG_DESCRIPTION='Library for reading/writing numbers in big-endian and little-endian.' CARGO_PKG_HOMEPAGE='https://github.com/BurntSushi/byteorder' CARGO_PKG_LICENSE='Unlicense OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=byteorder CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/BurntSushi/byteorder' CARGO_PKG_RUST_VERSION=1.60 CARGO_PKG_VERSION=1.5.0 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=5 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.qhGiLVvQuR/target/debug/deps rustc --crate-name byteorder --edition=2021 /tmp/tmp.qhGiLVvQuR/registry/byteorder-1.5.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "i128", "std"))' -C metadata=89ebf31d1f97ee77 -C extra-filename=-89ebf31d1f97ee77 --out-dir /tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.qhGiLVvQuR/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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.qhGiLVvQuR/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 438s warning: `byteorder` (lib) generated 1 warning (1 duplicate) 438s Compiling zerocopy v0.7.34 438s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=zerocopy CARGO_MANIFEST_DIR=/tmp/tmp.qhGiLVvQuR/registry/zerocopy-0.7.34 CARGO_MANIFEST_PATH=/tmp/tmp.qhGiLVvQuR/registry/zerocopy-0.7.34/Cargo.toml CARGO_PKG_AUTHORS='Joshua Liebow-Feeser ' CARGO_PKG_DESCRIPTION='Utilities for zero-copy parsing and serialization' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='BSD-2-Clause OR Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=zerocopy CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/google/zerocopy' CARGO_PKG_RUST_VERSION=1.60.0 CARGO_PKG_VERSION=0.7.34 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=7 CARGO_PKG_VERSION_PATCH=34 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.qhGiLVvQuR/target/debug/deps rustc --crate-name zerocopy --edition=2018 /tmp/tmp.qhGiLVvQuR/registry/zerocopy-0.7.34/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="byteorder"' --cfg 'feature="default"' --cfg 'feature="derive"' --cfg 'feature="simd"' --cfg 'feature="zerocopy-derive"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("__internal_use_only_features_that_work_on_stable", "alloc", "byteorder", "default", "derive", "simd", "simd-nightly", "zerocopy-derive"))' -C metadata=777d8c6c10ffcfc6 -C extra-filename=-777d8c6c10ffcfc6 --out-dir /tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.qhGiLVvQuR/target/debug/deps --extern byteorder=/tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/deps/libbyteorder-89ebf31d1f97ee77.rmeta --extern zerocopy_derive=/tmp/tmp.qhGiLVvQuR/target/debug/deps/libzerocopy_derive-676bad9287e184ca.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.qhGiLVvQuR/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 438s warning: unnecessary qualification 438s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/util.rs:597:32 438s | 438s 597 | let remainder = t.addr() % mem::align_of::(); 438s | ^^^^^^^^^^^^^^^^^^ 438s | 438s note: the lint level is defined here 438s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:174:5 438s | 438s 174 | unused_qualifications, 438s | ^^^^^^^^^^^^^^^^^^^^^ 438s help: remove the unnecessary path segments 438s | 438s 597 - let remainder = t.addr() % mem::align_of::(); 438s 597 + let remainder = t.addr() % align_of::(); 438s | 438s 438s warning: unnecessary qualification 438s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:333:35 438s | 438s 333 | const POINTER_WIDTH_BITS: usize = mem::size_of::() * 8; 438s | ^^^^^^^^^^^^^^^^^^^^^ 438s | 438s help: remove the unnecessary path segments 438s | 438s 333 - const POINTER_WIDTH_BITS: usize = mem::size_of::() * 8; 438s 333 + const POINTER_WIDTH_BITS: usize = size_of::() * 8; 438s | 438s 438s warning: unnecessary qualification 438s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:488:44 438s | 438s 488 | align: match NonZeroUsize::new(mem::align_of::()) { 438s | ^^^^^^^^^^^^^^^^^^ 438s | 438s help: remove the unnecessary path segments 438s | 438s 488 - align: match NonZeroUsize::new(mem::align_of::()) { 438s 488 + align: match NonZeroUsize::new(align_of::()) { 438s | 438s 438s warning: unnecessary qualification 438s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:492:49 438s | 438s 492 | size_info: SizeInfo::Sized { _size: mem::size_of::() }, 438s | ^^^^^^^^^^^^^^^^^ 438s | 438s help: remove the unnecessary path segments 438s | 438s 492 - size_info: SizeInfo::Sized { _size: mem::size_of::() }, 438s 492 + size_info: SizeInfo::Sized { _size: size_of::() }, 438s | 438s 438s warning: unnecessary qualification 438s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:511:44 438s | 438s 511 | align: match NonZeroUsize::new(mem::align_of::()) { 438s | ^^^^^^^^^^^^^^^^^^ 438s | 438s help: remove the unnecessary path segments 438s | 438s 511 - align: match NonZeroUsize::new(mem::align_of::()) { 438s 511 + align: match NonZeroUsize::new(align_of::()) { 438s | 438s 438s warning: unnecessary qualification 438s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:517:29 438s | 438s 517 | _elem_size: mem::size_of::(), 438s | ^^^^^^^^^^^^^^^^^ 438s | 438s help: remove the unnecessary path segments 438s | 438s 517 - _elem_size: mem::size_of::(), 438s 517 + _elem_size: size_of::(), 438s | 438s 438s warning: unnecessary qualification 438s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:1418:19 438s | 438s 1418 | let len = mem::size_of_val(self); 438s | ^^^^^^^^^^^^^^^^ 438s | 438s help: remove the unnecessary path segments 438s | 438s 1418 - let len = mem::size_of_val(self); 438s 1418 + let len = size_of_val(self); 438s | 438s 438s warning: unnecessary qualification 438s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:2714:19 438s | 438s 2714 | let len = mem::size_of_val(self); 438s | ^^^^^^^^^^^^^^^^ 438s | 438s help: remove the unnecessary path segments 438s | 438s 2714 - let len = mem::size_of_val(self); 438s 2714 + let len = size_of_val(self); 438s | 438s 438s warning: unnecessary qualification 438s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:2789:19 438s | 438s 2789 | let len = mem::size_of_val(self); 438s | ^^^^^^^^^^^^^^^^ 438s | 438s help: remove the unnecessary path segments 438s | 438s 2789 - let len = mem::size_of_val(self); 438s 2789 + let len = size_of_val(self); 438s | 438s 438s warning: unnecessary qualification 438s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:2863:27 438s | 438s 2863 | if bytes.len() != mem::size_of_val(self) { 438s | ^^^^^^^^^^^^^^^^ 438s | 438s help: remove the unnecessary path segments 438s | 438s 2863 - if bytes.len() != mem::size_of_val(self) { 438s 2863 + if bytes.len() != size_of_val(self) { 438s | 438s 438s warning: unnecessary qualification 438s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:2920:20 438s | 438s 2920 | let size = mem::size_of_val(self); 438s | ^^^^^^^^^^^^^^^^ 438s | 438s help: remove the unnecessary path segments 438s | 438s 2920 - let size = mem::size_of_val(self); 438s 2920 + let size = size_of_val(self); 438s | 438s 438s warning: unnecessary qualification 438s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:2981:45 438s | 438s 2981 | let start = bytes.len().checked_sub(mem::size_of_val(self))?; 438s | ^^^^^^^^^^^^^^^^ 438s | 438s help: remove the unnecessary path segments 438s | 438s 2981 - let start = bytes.len().checked_sub(mem::size_of_val(self))?; 438s 2981 + let start = bytes.len().checked_sub(size_of_val(self))?; 438s | 438s 438s warning: unnecessary qualification 438s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:4161:27 438s | 438s 4161 | if bytes.len() != mem::size_of::() || !util::aligned_to::<_, T>(bytes.deref()) { 438s | ^^^^^^^^^^^^^^^^^ 438s | 438s help: remove the unnecessary path segments 438s | 438s 4161 - if bytes.len() != mem::size_of::() || !util::aligned_to::<_, T>(bytes.deref()) { 438s 4161 + if bytes.len() != size_of::() || !util::aligned_to::<_, T>(bytes.deref()) { 438s | 438s 438s warning: unnecessary qualification 438s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:4176:26 438s | 438s 4176 | if bytes.len() < mem::size_of::() || !util::aligned_to::<_, T>(bytes.deref()) { 438s | ^^^^^^^^^^^^^^^^^ 438s | 438s help: remove the unnecessary path segments 438s | 438s 4176 - if bytes.len() < mem::size_of::() || !util::aligned_to::<_, T>(bytes.deref()) { 438s 4176 + if bytes.len() < size_of::() || !util::aligned_to::<_, T>(bytes.deref()) { 438s | 438s 438s warning: unnecessary qualification 438s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:4179:46 438s | 438s 4179 | let (bytes, suffix) = bytes.split_at(mem::size_of::()); 438s | ^^^^^^^^^^^^^^^^^ 438s | 438s help: remove the unnecessary path segments 438s | 438s 4179 - let (bytes, suffix) = bytes.split_at(mem::size_of::()); 438s 4179 + let (bytes, suffix) = bytes.split_at(size_of::()); 438s | 438s 438s warning: unnecessary qualification 438s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:4194:46 438s | 438s 4194 | let split_at = bytes_len.checked_sub(mem::size_of::())?; 438s | ^^^^^^^^^^^^^^^^^ 438s | 438s help: remove the unnecessary path segments 438s | 438s 4194 - let split_at = bytes_len.checked_sub(mem::size_of::())?; 438s 4194 + let split_at = bytes_len.checked_sub(size_of::())?; 438s | 438s 438s warning: unnecessary qualification 438s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:4221:26 438s | 438s 4221 | .checked_rem(mem::size_of::()) 438s | ^^^^^^^^^^^^^^^^^ 438s | 438s help: remove the unnecessary path segments 438s | 438s 4221 - .checked_rem(mem::size_of::()) 438s 4221 + .checked_rem(size_of::()) 438s | 438s 438s warning: unnecessary qualification 438s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:4243:34 438s | 438s 4243 | let expected_len = match mem::size_of::().checked_mul(count) { 438s | ^^^^^^^^^^^^^^^^^ 438s | 438s help: remove the unnecessary path segments 438s | 438s 4243 - let expected_len = match mem::size_of::().checked_mul(count) { 438s 4243 + let expected_len = match size_of::().checked_mul(count) { 438s | 438s 438s warning: unnecessary qualification 438s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:4268:34 438s | 438s 4268 | let expected_len = match mem::size_of::().checked_mul(count) { 438s | ^^^^^^^^^^^^^^^^^ 438s | 438s help: remove the unnecessary path segments 438s | 438s 4268 - let expected_len = match mem::size_of::().checked_mul(count) { 438s 4268 + let expected_len = match size_of::().checked_mul(count) { 438s | 438s 438s warning: unnecessary qualification 438s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:4795:25 438s | 438s 4795 | let elem_size = mem::size_of::(); 438s | ^^^^^^^^^^^^^^^^^ 438s | 438s help: remove the unnecessary path segments 438s | 438s 4795 - let elem_size = mem::size_of::(); 438s 4795 + let elem_size = size_of::(); 438s | 438s 438s warning: unnecessary qualification 438s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:4825:25 438s | 438s 4825 | let elem_size = mem::size_of::(); 438s | ^^^^^^^^^^^^^^^^^ 438s | 438s help: remove the unnecessary path segments 438s | 438s 4825 - let elem_size = mem::size_of::(); 438s 4825 + let elem_size = size_of::(); 438s | 438s 439s warning: `zerocopy` (lib) generated 22 warnings (1 duplicate) 439s Compiling concurrent-queue v2.5.0 439s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=concurrent_queue CARGO_MANIFEST_DIR=/tmp/tmp.qhGiLVvQuR/registry/concurrent-queue-2.5.0 CARGO_MANIFEST_PATH=/tmp/tmp.qhGiLVvQuR/registry/concurrent-queue-2.5.0/Cargo.toml CARGO_PKG_AUTHORS='Stjepan Glavina :Taiki Endo :John Nunley ' CARGO_PKG_DESCRIPTION='Concurrent multi-producer multi-consumer queue' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=concurrent-queue CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/smol-rs/concurrent-queue' CARGO_PKG_RUST_VERSION=1.60 CARGO_PKG_VERSION=2.5.0 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=5 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.qhGiLVvQuR/target/debug/deps rustc --crate-name concurrent_queue --edition=2021 /tmp/tmp.qhGiLVvQuR/registry/concurrent-queue-2.5.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "portable-atomic", "std"))' -C metadata=9bda17a56537581e -C extra-filename=-9bda17a56537581e --out-dir /tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.qhGiLVvQuR/target/debug/deps --extern crossbeam_utils=/tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/deps/libcrossbeam_utils-bcaf20eecaf4c1fc.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.qhGiLVvQuR/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 439s warning: unexpected `cfg` condition name: `loom` 439s --> /usr/share/cargo/registry/concurrent-queue-2.5.0/src/bounded.rs:209:23 439s | 439s 209 | #[cfg(loom)] 439s | ^^^^ 439s | 439s = help: expected names are: `clippy`, `debug_assertions`, `doc`, `docsrs`, `doctest`, `feature`, `fmt_debug`, `miri`, `overflow_checks`, `panic`, `proc_macro`, `relocation_model`, `rustfmt`, `sanitize`, `sanitizer_cfi_generalize_pointers`, `sanitizer_cfi_normalize_integers`, `target_abi`, `target_arch`, `target_endian`, `target_env`, `target_family`, `target_feature`, `target_has_atomic`, `target_has_atomic_equal_alignment`, `target_has_atomic_load_store`, `target_os`, `target_pointer_width`, `target_thread_local`, `target_vendor`, `test`, `ub_checks`, `unix`, and `windows` 439s = help: consider using a Cargo feature instead 439s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 439s [lints.rust] 439s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(loom)'] } 439s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(loom)");` to the top of the `build.rs` 439s = note: see for more information about checking conditional configuration 439s = note: `#[warn(unexpected_cfgs)]` on by default 439s 439s warning: unexpected `cfg` condition name: `loom` 439s --> /usr/share/cargo/registry/concurrent-queue-2.5.0/src/bounded.rs:281:23 439s | 439s 281 | #[cfg(loom)] 439s | ^^^^ 439s | 439s = help: consider using a Cargo feature instead 439s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 439s [lints.rust] 439s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(loom)'] } 439s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(loom)");` to the top of the `build.rs` 439s = note: see for more information about checking conditional configuration 439s 439s warning: unexpected `cfg` condition name: `loom` 439s --> /usr/share/cargo/registry/concurrent-queue-2.5.0/src/unbounded.rs:43:15 439s | 439s 43 | #[cfg(not(loom))] 439s | ^^^^ 439s | 439s = help: consider using a Cargo feature instead 439s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 439s [lints.rust] 439s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(loom)'] } 439s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(loom)");` to the top of the `build.rs` 439s = note: see for more information about checking conditional configuration 439s 439s warning: unexpected `cfg` condition name: `loom` 439s --> /usr/share/cargo/registry/concurrent-queue-2.5.0/src/unbounded.rs:49:15 439s | 439s 49 | #[cfg(not(loom))] 439s | ^^^^ 439s | 439s = help: consider using a Cargo feature instead 439s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 439s [lints.rust] 439s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(loom)'] } 439s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(loom)");` to the top of the `build.rs` 439s = note: see for more information about checking conditional configuration 439s 439s warning: unexpected `cfg` condition name: `loom` 439s --> /usr/share/cargo/registry/concurrent-queue-2.5.0/src/unbounded.rs:54:11 439s | 439s 54 | #[cfg(loom)] 439s | ^^^^ 439s | 439s = help: consider using a Cargo feature instead 439s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 439s [lints.rust] 439s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(loom)'] } 439s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(loom)");` to the top of the `build.rs` 439s = note: see for more information about checking conditional configuration 439s 439s warning: unexpected `cfg` condition name: `loom` 439s --> /usr/share/cargo/registry/concurrent-queue-2.5.0/src/unbounded.rs:153:29 439s | 439s 153 | const_if: #[cfg(not(loom))]; 439s | ^^^^ 439s | 439s = help: consider using a Cargo feature instead 439s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 439s [lints.rust] 439s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(loom)'] } 439s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(loom)");` to the top of the `build.rs` 439s = note: see for more information about checking conditional configuration 439s 439s warning: unexpected `cfg` condition name: `loom` 439s --> /usr/share/cargo/registry/concurrent-queue-2.5.0/src/sync.rs:3:44 439s | 439s 3 | #[cfg(all(feature = "portable-atomic", not(loom)))] 439s | ^^^^ 439s | 439s = help: consider using a Cargo feature instead 439s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 439s [lints.rust] 439s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(loom)'] } 439s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(loom)");` to the top of the `build.rs` 439s = note: see for more information about checking conditional configuration 439s 439s warning: unexpected `cfg` condition name: `loom` 439s --> /usr/share/cargo/registry/concurrent-queue-2.5.0/src/sync.rs:15:49 439s | 439s 15 | #[cfg(all(not(feature = "portable-atomic"), not(loom)))] 439s | ^^^^ 439s | 439s = help: consider using a Cargo feature instead 439s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 439s [lints.rust] 439s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(loom)'] } 439s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(loom)");` to the top of the `build.rs` 439s = note: see for more information about checking conditional configuration 439s 439s warning: unexpected `cfg` condition name: `loom` 439s --> /usr/share/cargo/registry/concurrent-queue-2.5.0/src/sync.rs:31:7 439s | 439s 31 | #[cfg(loom)] 439s | ^^^^ 439s | 439s = help: consider using a Cargo feature instead 439s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 439s [lints.rust] 439s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(loom)'] } 439s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(loom)");` to the top of the `build.rs` 439s = note: see for more information about checking conditional configuration 439s 439s warning: unexpected `cfg` condition name: `loom` 439s --> /usr/share/cargo/registry/concurrent-queue-2.5.0/src/sync.rs:57:7 439s | 439s 57 | #[cfg(loom)] 439s | ^^^^ 439s | 439s = help: consider using a Cargo feature instead 439s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 439s [lints.rust] 439s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(loom)'] } 439s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(loom)");` to the top of the `build.rs` 439s = note: see for more information about checking conditional configuration 439s 439s warning: unexpected `cfg` condition name: `loom` 439s --> /usr/share/cargo/registry/concurrent-queue-2.5.0/src/sync.rs:60:11 439s | 439s 60 | #[cfg(not(loom))] 439s | ^^^^ 439s | 439s = help: consider using a Cargo feature instead 439s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 439s [lints.rust] 439s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(loom)'] } 439s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(loom)");` to the top of the `build.rs` 439s = note: see for more information about checking conditional configuration 439s 439s warning: unexpected `cfg` condition name: `loom` 439s --> /usr/share/cargo/registry/concurrent-queue-2.5.0/src/lib.rs:153:29 439s | 439s 153 | const_if: #[cfg(not(loom))]; 439s | ^^^^ 439s | 439s = help: consider using a Cargo feature instead 439s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 439s [lints.rust] 439s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(loom)'] } 439s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(loom)");` to the top of the `build.rs` 439s = note: see for more information about checking conditional configuration 439s 439s warning: unexpected `cfg` condition name: `loom` 439s --> /usr/share/cargo/registry/concurrent-queue-2.5.0/src/lib.rs:633:80 439s | 439s 633 | #[cfg(all(any(target_arch = "x86", target_arch = "x86_64"), not(miri), not(loom)))] 439s | ^^^^ 439s | 439s = help: consider using a Cargo feature instead 439s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 439s [lints.rust] 439s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(loom)'] } 439s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(loom)");` to the top of the `build.rs` 439s = note: see for more information about checking conditional configuration 439s 439s warning: `concurrent-queue` (lib) generated 14 warnings (1 duplicate) 439s Compiling enumflags2_derive v0.7.10 439s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=enumflags2_derive CARGO_MANIFEST_DIR=/tmp/tmp.qhGiLVvQuR/registry/enumflags2_derive-0.7.10 CARGO_MANIFEST_PATH=/tmp/tmp.qhGiLVvQuR/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.qhGiLVvQuR/target/debug/deps rustc --crate-name enumflags2_derive --edition=2018 /tmp/tmp.qhGiLVvQuR/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=588090abb48fd7e4 -C extra-filename=-588090abb48fd7e4 --out-dir /tmp/tmp.qhGiLVvQuR/target/debug/deps -L dependency=/tmp/tmp.qhGiLVvQuR/target/debug/deps --extern proc_macro2=/tmp/tmp.qhGiLVvQuR/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rlib --extern quote=/tmp/tmp.qhGiLVvQuR/target/debug/deps/libquote-dc92c6f25ee0f0c6.rlib --extern syn=/tmp/tmp.qhGiLVvQuR/target/debug/deps/libsyn-0167beed9e699402.rlib --extern proc_macro --cap-lints warn` 440s Compiling getrandom v0.2.15 440s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=getrandom CARGO_MANIFEST_DIR=/tmp/tmp.qhGiLVvQuR/registry/getrandom-0.2.15 CARGO_MANIFEST_PATH=/tmp/tmp.qhGiLVvQuR/registry/getrandom-0.2.15/Cargo.toml CARGO_PKG_AUTHORS='The Rand Project Developers' CARGO_PKG_DESCRIPTION='A small cross-platform library for retrieving random data from system source' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=getrandom CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-random/getrandom' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.2.15 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=15 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.qhGiLVvQuR/target/debug/deps rustc --crate-name getrandom --edition=2018 /tmp/tmp.qhGiLVvQuR/registry/getrandom-0.2.15/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("compiler_builtins", "core", "custom", "linux_disable_fallback", "rdrand", "rustc-dep-of-std", "std", "test-in-browser"))' -C metadata=ed47f71499f7e17d -C extra-filename=-ed47f71499f7e17d --out-dir /tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.qhGiLVvQuR/target/debug/deps --extern cfg_if=/tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/deps/libcfg_if-ff3ff84a061de73f.rmeta --extern libc=/tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/deps/liblibc-cf2521928ac070dc.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.qhGiLVvQuR/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 440s warning: unexpected `cfg` condition value: `js` 440s --> /usr/share/cargo/registry/getrandom-0.2.15/src/lib.rs:334:25 440s | 440s 334 | } else if #[cfg(all(feature = "js", 440s | ^^^^^^^^^^^^^^ 440s | 440s = note: expected values for `feature` are: `compiler_builtins`, `core`, `custom`, `linux_disable_fallback`, `rdrand`, `rustc-dep-of-std`, `std`, and `test-in-browser` 440s = help: consider adding `js` as a feature in `Cargo.toml` 440s = note: see for more information about checking conditional configuration 440s = note: `#[warn(unexpected_cfgs)]` on by default 440s 440s warning: `getrandom` (lib) generated 2 warnings (1 duplicate) 440s Compiling slab v0.4.9 440s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.qhGiLVvQuR/registry/slab-0.4.9 CARGO_MANIFEST_PATH=/tmp/tmp.qhGiLVvQuR/registry/slab-0.4.9/Cargo.toml CARGO_PKG_AUTHORS='Carl Lerche ' CARGO_PKG_DESCRIPTION='Pre-allocated storage for a uniform data type' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=slab CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/tokio-rs/slab' CARGO_PKG_RUST_VERSION=1.31 CARGO_PKG_VERSION=0.4.9 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=4 CARGO_PKG_VERSION_PATCH=9 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.qhGiLVvQuR/target/debug/deps rustc --crate-name build_script_build --edition=2018 /tmp/tmp.qhGiLVvQuR/registry/slab-0.4.9/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "serde", "std"))' -C metadata=95cba3e02497b263 -C extra-filename=-95cba3e02497b263 --out-dir /tmp/tmp.qhGiLVvQuR/target/debug/build/slab-95cba3e02497b263 -L dependency=/tmp/tmp.qhGiLVvQuR/target/debug/deps --extern autocfg=/tmp/tmp.qhGiLVvQuR/target/debug/deps/libautocfg-9ebcd9511383083c.rlib --cap-lints warn` 440s Compiling memoffset v0.8.0 440s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.qhGiLVvQuR/registry/memoffset-0.8.0 CARGO_MANIFEST_PATH=/tmp/tmp.qhGiLVvQuR/registry/memoffset-0.8.0/Cargo.toml CARGO_PKG_AUTHORS='Gilad Naaman ' CARGO_PKG_DESCRIPTION='offset_of functionality for Rust structs.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=memoffset CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/Gilnaa/memoffset' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.8.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=8 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.qhGiLVvQuR/target/debug/deps rustc --crate-name build_script_build --edition=2015 /tmp/tmp.qhGiLVvQuR/registry/memoffset-0.8.0/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "unstable_const"))' -C metadata=b637076bbed49000 -C extra-filename=-b637076bbed49000 --out-dir /tmp/tmp.qhGiLVvQuR/target/debug/build/memoffset-b637076bbed49000 -L dependency=/tmp/tmp.qhGiLVvQuR/target/debug/deps --extern autocfg=/tmp/tmp.qhGiLVvQuR/target/debug/deps/libautocfg-9ebcd9511383083c.rlib --cap-lints warn` 440s Compiling parking v2.2.0 440s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=parking CARGO_MANIFEST_DIR=/tmp/tmp.qhGiLVvQuR/registry/parking-2.2.0 CARGO_MANIFEST_PATH=/tmp/tmp.qhGiLVvQuR/registry/parking-2.2.0/Cargo.toml CARGO_PKG_AUTHORS='Stjepan Glavina :The Rust Project Developers' CARGO_PKG_DESCRIPTION='Thread parking and unparking' CARGO_PKG_HOMEPAGE='https://github.com/smol-rs/parking' CARGO_PKG_LICENSE='Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=parking CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/smol-rs/parking' CARGO_PKG_RUST_VERSION=1.51 CARGO_PKG_VERSION=2.2.0 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.qhGiLVvQuR/target/debug/deps rustc --crate-name parking --edition=2018 /tmp/tmp.qhGiLVvQuR/registry/parking-2.2.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=0a38dc17b1bc33e2 -C extra-filename=-0a38dc17b1bc33e2 --out-dir /tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.qhGiLVvQuR/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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.qhGiLVvQuR/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 440s warning: unexpected `cfg` condition name: `loom` 440s --> /usr/share/cargo/registry/parking-2.2.0/src/lib.rs:41:15 440s | 440s 41 | #[cfg(not(all(loom, feature = "loom")))] 440s | ^^^^ 440s | 440s = help: expected names are: `clippy`, `debug_assertions`, `doc`, `docsrs`, `doctest`, `feature`, `fmt_debug`, `miri`, `overflow_checks`, `panic`, `proc_macro`, `relocation_model`, `rustfmt`, `sanitize`, `sanitizer_cfi_generalize_pointers`, `sanitizer_cfi_normalize_integers`, `target_abi`, `target_arch`, `target_endian`, `target_env`, `target_family`, `target_feature`, `target_has_atomic`, `target_has_atomic_equal_alignment`, `target_has_atomic_load_store`, `target_os`, `target_pointer_width`, `target_thread_local`, `target_vendor`, `test`, `ub_checks`, `unix`, and `windows` 440s = help: consider using a Cargo feature instead 440s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 440s [lints.rust] 440s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(loom)'] } 440s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(loom)");` to the top of the `build.rs` 440s = note: see for more information about checking conditional configuration 440s = note: `#[warn(unexpected_cfgs)]` on by default 440s 440s warning: unexpected `cfg` condition value: `loom` 440s --> /usr/share/cargo/registry/parking-2.2.0/src/lib.rs:41:21 440s | 440s 41 | #[cfg(not(all(loom, feature = "loom")))] 440s | ^^^^^^^^^^^^^^^^ help: remove the condition 440s | 440s = note: no expected values for `feature` 440s = help: consider adding `loom` as a feature in `Cargo.toml` 440s = note: see for more information about checking conditional configuration 440s 440s warning: unexpected `cfg` condition name: `loom` 440s --> /usr/share/cargo/registry/parking-2.2.0/src/lib.rs:44:11 440s | 440s 44 | #[cfg(all(loom, feature = "loom"))] 440s | ^^^^ 440s | 440s = help: consider using a Cargo feature instead 440s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 440s [lints.rust] 440s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(loom)'] } 440s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(loom)");` to the top of the `build.rs` 440s = note: see for more information about checking conditional configuration 440s 440s warning: unexpected `cfg` condition value: `loom` 440s --> /usr/share/cargo/registry/parking-2.2.0/src/lib.rs:44:17 440s | 440s 44 | #[cfg(all(loom, feature = "loom"))] 440s | ^^^^^^^^^^^^^^^^ help: remove the condition 440s | 440s = note: no expected values for `feature` 440s = help: consider adding `loom` as a feature in `Cargo.toml` 440s = note: see for more information about checking conditional configuration 440s 440s warning: unexpected `cfg` condition name: `loom` 440s --> /usr/share/cargo/registry/parking-2.2.0/src/lib.rs:54:15 440s | 440s 54 | #[cfg(not(all(loom, feature = "loom")))] 440s | ^^^^ 440s | 440s = help: consider using a Cargo feature instead 440s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 440s [lints.rust] 440s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(loom)'] } 440s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(loom)");` to the top of the `build.rs` 440s = note: see for more information about checking conditional configuration 440s 440s warning: unexpected `cfg` condition value: `loom` 440s --> /usr/share/cargo/registry/parking-2.2.0/src/lib.rs:54:21 440s | 440s 54 | #[cfg(not(all(loom, feature = "loom")))] 440s | ^^^^^^^^^^^^^^^^ help: remove the condition 440s | 440s = note: no expected values for `feature` 440s = help: consider adding `loom` as a feature in `Cargo.toml` 440s = note: see for more information about checking conditional configuration 440s 440s warning: unexpected `cfg` condition name: `loom` 440s --> /usr/share/cargo/registry/parking-2.2.0/src/lib.rs:140:15 440s | 440s 140 | #[cfg(not(loom))] 440s | ^^^^ 440s | 440s = help: consider using a Cargo feature instead 440s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 440s [lints.rust] 440s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(loom)'] } 440s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(loom)");` to the top of the `build.rs` 440s = note: see for more information about checking conditional configuration 440s 440s warning: unexpected `cfg` condition name: `loom` 440s --> /usr/share/cargo/registry/parking-2.2.0/src/lib.rs:160:15 440s | 440s 160 | #[cfg(not(loom))] 440s | ^^^^ 440s | 440s = help: consider using a Cargo feature instead 440s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 440s [lints.rust] 440s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(loom)'] } 440s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(loom)");` to the top of the `build.rs` 440s = note: see for more information about checking conditional configuration 440s 440s warning: unexpected `cfg` condition name: `loom` 440s --> /usr/share/cargo/registry/parking-2.2.0/src/lib.rs:379:27 440s | 440s 379 | #[cfg(not(loom))] 440s | ^^^^ 440s | 440s = help: consider using a Cargo feature instead 440s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 440s [lints.rust] 440s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(loom)'] } 440s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(loom)");` to the top of the `build.rs` 440s = note: see for more information about checking conditional configuration 440s 440s warning: unexpected `cfg` condition name: `loom` 440s --> /usr/share/cargo/registry/parking-2.2.0/src/lib.rs:393:23 440s | 440s 393 | #[cfg(loom)] 440s | ^^^^ 440s | 440s = help: consider using a Cargo feature instead 440s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 440s [lints.rust] 440s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(loom)'] } 440s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(loom)");` to the top of the `build.rs` 440s = note: see for more information about checking conditional configuration 440s 440s warning: `parking` (lib) generated 11 warnings (1 duplicate) 440s Compiling cfg_aliases v0.2.1 440s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=cfg_aliases CARGO_MANIFEST_DIR=/tmp/tmp.qhGiLVvQuR/registry/cfg_aliases-0.2.1 CARGO_MANIFEST_PATH=/tmp/tmp.qhGiLVvQuR/registry/cfg_aliases-0.2.1/Cargo.toml CARGO_PKG_AUTHORS='Zicklag ' CARGO_PKG_DESCRIPTION='A tiny utility to help save you a lot of effort with long winded `#[cfg()]` checks.' CARGO_PKG_HOMEPAGE='https://github.com/katharostech/cfg_aliases' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=cfg_aliases CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/katharostech/cfg_aliases' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.2.1 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.qhGiLVvQuR/target/debug/deps rustc --crate-name cfg_aliases --edition=2018 /tmp/tmp.qhGiLVvQuR/registry/cfg_aliases-0.2.1/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 '--deny=clippy::str_to_string' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=8701cbe9ff8ee006 -C extra-filename=-8701cbe9ff8ee006 --out-dir /tmp/tmp.qhGiLVvQuR/target/debug/deps -L dependency=/tmp/tmp.qhGiLVvQuR/target/debug/deps --cap-lints warn` 440s Compiling nix v0.29.0 440s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.qhGiLVvQuR/registry/nix-0.29.0 CARGO_MANIFEST_PATH=/tmp/tmp.qhGiLVvQuR/registry/nix-0.29.0/Cargo.toml CARGO_PKG_AUTHORS='The nix-rust Project Developers' CARGO_PKG_DESCRIPTION='Rust friendly bindings to *nix APIs' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=nix CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/nix-rust/nix' CARGO_PKG_RUST_VERSION=1.69 CARGO_PKG_VERSION=0.29.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=29 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.qhGiLVvQuR/target/debug/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.qhGiLVvQuR/registry/nix-0.29.0/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="feature"' --cfg 'feature="memoffset"' --cfg 'feature="socket"' --cfg 'feature="uio"' --cfg 'feature="user"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("acct", "aio", "default", "dir", "env", "event", "fanotify", "feature", "fs", "hostname", "inotify", "ioctl", "kmod", "memoffset", "mman", "mount", "mqueue", "net", "personality", "pin-utils", "poll", "process", "pthread", "ptrace", "quota", "reboot", "resource", "sched", "signal", "socket", "term", "time", "ucontext", "uio", "user", "zerocopy"))' -C metadata=9cc97a3a2fcb749b -C extra-filename=-9cc97a3a2fcb749b --out-dir /tmp/tmp.qhGiLVvQuR/target/debug/build/nix-9cc97a3a2fcb749b -L dependency=/tmp/tmp.qhGiLVvQuR/target/debug/deps --extern cfg_aliases=/tmp/tmp.qhGiLVvQuR/target/debug/deps/libcfg_aliases-8701cbe9ff8ee006.rlib --cap-lints warn` 441s Compiling event-listener v5.4.0 441s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=event_listener CARGO_MANIFEST_DIR=/tmp/tmp.qhGiLVvQuR/registry/event-listener-5.4.0 CARGO_MANIFEST_PATH=/tmp/tmp.qhGiLVvQuR/registry/event-listener-5.4.0/Cargo.toml CARGO_PKG_AUTHORS='Stjepan Glavina :John Nunley ' CARGO_PKG_DESCRIPTION='Notify async tasks or threads' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=event-listener CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/smol-rs/event-listener' CARGO_PKG_RUST_VERSION=1.60 CARGO_PKG_VERSION=5.4.0 CARGO_PKG_VERSION_MAJOR=5 CARGO_PKG_VERSION_MINOR=4 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.qhGiLVvQuR/target/debug/deps rustc --crate-name event_listener --edition=2021 /tmp/tmp.qhGiLVvQuR/registry/event-listener-5.4.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --warn=unexpected_cfgs --check-cfg 'cfg(loom)' --cfg 'feature="default"' --cfg 'feature="parking"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("critical-section", "default", "parking", "std"))' -C metadata=93bdad7496d4853a -C extra-filename=-93bdad7496d4853a --out-dir /tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.qhGiLVvQuR/target/debug/deps --extern concurrent_queue=/tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/deps/libconcurrent_queue-9bda17a56537581e.rmeta --extern parking=/tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/deps/libparking-0a38dc17b1bc33e2.rmeta --extern pin_project_lite=/tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/deps/libpin_project_lite-5dc815523e98d889.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.qhGiLVvQuR/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 441s warning: unexpected `cfg` condition value: `portable-atomic` 441s --> /usr/share/cargo/registry/event-listener-5.4.0/src/lib.rs:1362:15 441s | 441s 1362 | #[cfg(not(feature = "portable-atomic"))] 441s | ^^^^^^^^^^^^^^^^^^^^^^^^^^^ 441s | 441s = note: expected values for `feature` are: `critical-section`, `default`, `parking`, and `std` 441s = help: consider adding `portable-atomic` as a feature in `Cargo.toml` 441s = note: see for more information about checking conditional configuration 441s = note: requested on the command line with `-W unexpected-cfgs` 441s 441s warning: unexpected `cfg` condition value: `portable-atomic` 441s --> /usr/share/cargo/registry/event-listener-5.4.0/src/lib.rs:1364:15 441s | 441s 1364 | #[cfg(not(feature = "portable-atomic"))] 441s | ^^^^^^^^^^^^^^^^^^^^^^^^^^^ 441s | 441s = note: expected values for `feature` are: `critical-section`, `default`, `parking`, and `std` 441s = help: consider adding `portable-atomic` as a feature in `Cargo.toml` 441s = note: see for more information about checking conditional configuration 441s 441s warning: unexpected `cfg` condition value: `portable-atomic` 441s --> /usr/share/cargo/registry/event-listener-5.4.0/src/lib.rs:1367:11 441s | 441s 1367 | #[cfg(feature = "portable-atomic")] 441s | ^^^^^^^^^^^^^^^^^^^^^^^^^^^ 441s | 441s = note: expected values for `feature` are: `critical-section`, `default`, `parking`, and `std` 441s = help: consider adding `portable-atomic` as a feature in `Cargo.toml` 441s = note: see for more information about checking conditional configuration 441s 441s warning: unexpected `cfg` condition value: `portable-atomic` 441s --> /usr/share/cargo/registry/event-listener-5.4.0/src/lib.rs:1369:11 441s | 441s 1369 | #[cfg(feature = "portable-atomic")] 441s | ^^^^^^^^^^^^^^^^^^^^^^^^^^^ 441s | 441s = note: expected values for `feature` are: `critical-section`, `default`, `parking`, and `std` 441s = help: consider adding `portable-atomic` as a feature in `Cargo.toml` 441s = note: see for more information about checking conditional configuration 441s 441s warning: `event-listener` (lib) generated 5 warnings (1 duplicate) 441s 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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0--remap-path-prefix/tmp/tmp.qhGiLVvQuR/registry=/usr/share/cargo/registry-Ctarget-feature=+backchain' CARGO_FEATURE_DEFAULT=1 CARGO_MANIFEST_DIR=/tmp/tmp.qhGiLVvQuR/registry/memoffset-0.8.0 CARGO_MANIFEST_PATH=/tmp/tmp.qhGiLVvQuR/registry/memoffset-0.8.0/Cargo.toml CARGO_PKG_AUTHORS='Gilad Naaman ' CARGO_PKG_DESCRIPTION='offset_of functionality for Rust structs.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=memoffset CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/Gilnaa/memoffset' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.8.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=8 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' DEBUG=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.qhGiLVvQuR/target/debug/deps:/tmp/tmp.qhGiLVvQuR/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/build/memoffset-b32fed70cf81e31f/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.qhGiLVvQuR/target/debug/build/memoffset-b637076bbed49000/build-script-build` 441s [memoffset 0.8.0] warning: unstable feature specified for `-Ctarget-feature`: `backchain` 441s [memoffset 0.8.0] | 441s [memoffset 0.8.0] = note: this feature is not stably supported; its behavior can change in the future 441s [memoffset 0.8.0] 441s [memoffset 0.8.0] warning: 1 warning emitted 441s [memoffset 0.8.0] 441s [memoffset 0.8.0] cargo:rustc-cfg=tuple_ty 441s [memoffset 0.8.0] cargo:rustc-cfg=allow_clippy 441s [memoffset 0.8.0] cargo:rustc-cfg=maybe_uninit 441s [memoffset 0.8.0] cargo:rustc-cfg=doctests 441s [memoffset 0.8.0] cargo:rustc-cfg=raw_ref_macros 441s [memoffset 0.8.0] cargo:rustc-cfg=stable_const 441s 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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0--remap-path-prefix/tmp/tmp.qhGiLVvQuR/registry=/usr/share/cargo/registry-Ctarget-feature=+backchain' CARGO_FEATURE_DEFAULT=1 CARGO_FEATURE_STD=1 CARGO_MANIFEST_DIR=/tmp/tmp.qhGiLVvQuR/registry/slab-0.4.9 CARGO_MANIFEST_PATH=/tmp/tmp.qhGiLVvQuR/registry/slab-0.4.9/Cargo.toml CARGO_PKG_AUTHORS='Carl Lerche ' CARGO_PKG_DESCRIPTION='Pre-allocated storage for a uniform data type' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=slab CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/tokio-rs/slab' CARGO_PKG_RUST_VERSION=1.31 CARGO_PKG_VERSION=0.4.9 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=4 CARGO_PKG_VERSION_PATCH=9 CARGO_PKG_VERSION_PRE='' DEBUG=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.qhGiLVvQuR/target/debug/deps:/tmp/tmp.qhGiLVvQuR/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/build/slab-2c89ee66d35953a1/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.qhGiLVvQuR/target/debug/build/slab-95cba3e02497b263/build-script-build` 441s [slab 0.4.9] warning: unstable feature specified for `-Ctarget-feature`: `backchain` 441s [slab 0.4.9] | 441s [slab 0.4.9] = note: this feature is not stably supported; its behavior can change in the future 441s [slab 0.4.9] 441s [slab 0.4.9] warning: 1 warning emitted 441s [slab 0.4.9] 441s Compiling rand_core v0.6.4 441s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=rand_core CARGO_MANIFEST_DIR=/tmp/tmp.qhGiLVvQuR/registry/rand_core-0.6.4 CARGO_MANIFEST_PATH=/tmp/tmp.qhGiLVvQuR/registry/rand_core-0.6.4/Cargo.toml CARGO_PKG_AUTHORS='The Rand Project Developers:The Rust Project Developers' CARGO_PKG_DESCRIPTION='Core random number generator traits and tools for implementation. 441s ' CARGO_PKG_HOMEPAGE='https://rust-random.github.io/book' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=rand_core CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-random/rand' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.6.4 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=6 CARGO_PKG_VERSION_PATCH=4 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.qhGiLVvQuR/target/debug/deps rustc --crate-name rand_core --edition=2018 /tmp/tmp.qhGiLVvQuR/registry/rand_core-0.6.4/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="alloc"' --cfg 'feature="getrandom"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "getrandom", "serde", "serde1", "std"))' -C metadata=3c7246ca3f419bbc -C extra-filename=-3c7246ca3f419bbc --out-dir /tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.qhGiLVvQuR/target/debug/deps --extern getrandom=/tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/deps/libgetrandom-ed47f71499f7e17d.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.qhGiLVvQuR/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 441s warning: unexpected `cfg` condition name: `doc_cfg` 441s --> /usr/share/cargo/registry/rand_core-0.6.4/src/lib.rs:38:13 441s | 441s 38 | #![cfg_attr(doc_cfg, feature(doc_cfg))] 441s | ^^^^^^^ 441s | 441s = help: expected names are: `clippy`, `debug_assertions`, `doc`, `docsrs`, `doctest`, `feature`, `fmt_debug`, `miri`, `overflow_checks`, `panic`, `proc_macro`, `relocation_model`, `rustfmt`, `sanitize`, `sanitizer_cfi_generalize_pointers`, `sanitizer_cfi_normalize_integers`, `target_abi`, `target_arch`, `target_endian`, `target_env`, `target_family`, `target_feature`, `target_has_atomic`, `target_has_atomic_equal_alignment`, `target_has_atomic_load_store`, `target_os`, `target_pointer_width`, `target_thread_local`, `target_vendor`, `test`, `ub_checks`, `unix`, and `windows` 441s = help: consider using a Cargo feature instead 441s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 441s [lints.rust] 441s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 441s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 441s = note: see for more information about checking conditional configuration 441s = note: `#[warn(unexpected_cfgs)]` on by default 441s 441s warning: unexpected `cfg` condition name: `doc_cfg` 441s --> /usr/share/cargo/registry/rand_core-0.6.4/src/error.rs:50:16 441s | 441s 50 | #[cfg_attr(doc_cfg, doc(cfg(feature = "std")))] 441s | ^^^^^^^ 441s | 441s = help: consider using a Cargo feature instead 441s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 441s [lints.rust] 441s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 441s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 441s = note: see for more information about checking conditional configuration 441s 441s warning: unexpected `cfg` condition name: `doc_cfg` 441s --> /usr/share/cargo/registry/rand_core-0.6.4/src/error.rs:64:16 441s | 441s 64 | #[cfg_attr(doc_cfg, doc(cfg(feature = "std")))] 441s | ^^^^^^^ 441s | 441s = help: consider using a Cargo feature instead 441s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 441s [lints.rust] 441s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 441s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 441s = note: see for more information about checking conditional configuration 441s 441s warning: unexpected `cfg` condition name: `doc_cfg` 441s --> /usr/share/cargo/registry/rand_core-0.6.4/src/error.rs:75:16 441s | 441s 75 | #[cfg_attr(doc_cfg, doc(cfg(feature = "std")))] 441s | ^^^^^^^ 441s | 441s = help: consider using a Cargo feature instead 441s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 441s [lints.rust] 441s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 441s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 441s = note: see for more information about checking conditional configuration 441s 441s warning: unexpected `cfg` condition name: `doc_cfg` 441s --> /usr/share/cargo/registry/rand_core-0.6.4/src/os.rs:46:12 441s | 441s 46 | #[cfg_attr(doc_cfg, doc(cfg(feature = "getrandom")))] 441s | ^^^^^^^ 441s | 441s = help: consider using a Cargo feature instead 441s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 441s [lints.rust] 441s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 441s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 441s = note: see for more information about checking conditional configuration 441s 441s warning: unexpected `cfg` condition name: `doc_cfg` 441s --> /usr/share/cargo/registry/rand_core-0.6.4/src/lib.rs:411:16 441s | 441s 411 | #[cfg_attr(doc_cfg, doc(cfg(feature = "getrandom")))] 441s | ^^^^^^^ 441s | 441s = help: consider using a Cargo feature instead 441s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 441s [lints.rust] 441s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 441s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 441s = note: see for more information about checking conditional configuration 441s 441s warning: `rand_core` (lib) generated 7 warnings (1 duplicate) 441s Compiling ppv-lite86 v0.2.20 441s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=ppv_lite86 CARGO_MANIFEST_DIR=/tmp/tmp.qhGiLVvQuR/registry/ppv-lite86-0.2.20 CARGO_MANIFEST_PATH=/tmp/tmp.qhGiLVvQuR/registry/ppv-lite86-0.2.20/Cargo.toml CARGO_PKG_AUTHORS='The CryptoCorrosion Contributors' CARGO_PKG_DESCRIPTION='Implementation of the crypto-simd API for x86' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=ppv-lite86 CARGO_PKG_README='' CARGO_PKG_REPOSITORY='https://github.com/cryptocorrosion/cryptocorrosion' CARGO_PKG_RUST_VERSION=1.61 CARGO_PKG_VERSION=0.2.20 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=20 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.qhGiLVvQuR/target/debug/deps rustc --crate-name ppv_lite86 --edition=2021 /tmp/tmp.qhGiLVvQuR/registry/ppv-lite86-0.2.20/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="simd"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "no_simd", "simd", "std"))' -C metadata=57e5b566e2a71c09 -C extra-filename=-57e5b566e2a71c09 --out-dir /tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.qhGiLVvQuR/target/debug/deps --extern zerocopy=/tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/deps/libzerocopy-777d8c6c10ffcfc6.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.qhGiLVvQuR/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 441s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=serde CARGO_MANIFEST_DIR=/tmp/tmp.qhGiLVvQuR/registry/serde-1.0.217 CARGO_MANIFEST_PATH=/tmp/tmp.qhGiLVvQuR/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.qhGiLVvQuR/target/debug/deps OUT_DIR=/tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/build/serde-c08ea6899e623ec6/out rustc --crate-name serde --edition=2018 /tmp/tmp.qhGiLVvQuR/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=0e7dff716e38da0d -C extra-filename=-0e7dff716e38da0d --out-dir /tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.qhGiLVvQuR/target/debug/deps --extern serde_derive=/tmp/tmp.qhGiLVvQuR/target/debug/deps/libserde_derive-85fb19fec9ccb150.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.qhGiLVvQuR/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)'` 441s warning: `ppv-lite86` (lib) generated 1 warning (1 duplicate) 441s Compiling zvariant_derive v4.2.0 441s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=zvariant_derive CARGO_MANIFEST_DIR=/tmp/tmp.qhGiLVvQuR/registry/zvariant_derive-4.2.0 CARGO_MANIFEST_PATH=/tmp/tmp.qhGiLVvQuR/registry/zvariant_derive-4.2.0/Cargo.toml CARGO_PKG_AUTHORS='Zeeshan Ali Khan ' CARGO_PKG_DESCRIPTION='D-Bus & GVariant encoding & decoding' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=zvariant_derive CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dbus2/zbus/' CARGO_PKG_RUST_VERSION=1.75 CARGO_PKG_VERSION=4.2.0 CARGO_PKG_VERSION_MAJOR=4 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.qhGiLVvQuR/target/debug/deps rustc --crate-name zvariant_derive --edition=2021 /tmp/tmp.qhGiLVvQuR/registry/zvariant_derive-4.2.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type proc-macro --emit=dep-info,link -C prefer-dynamic -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=307afde79edbb6d8 -C extra-filename=-307afde79edbb6d8 --out-dir /tmp/tmp.qhGiLVvQuR/target/debug/deps -L dependency=/tmp/tmp.qhGiLVvQuR/target/debug/deps --extern proc_macro_crate=/tmp/tmp.qhGiLVvQuR/target/debug/deps/libproc_macro_crate-900b46bff7d8f3e2.rlib --extern proc_macro2=/tmp/tmp.qhGiLVvQuR/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rlib --extern quote=/tmp/tmp.qhGiLVvQuR/target/debug/deps/libquote-dc92c6f25ee0f0c6.rlib --extern syn=/tmp/tmp.qhGiLVvQuR/target/debug/deps/libsyn-0167beed9e699402.rlib --extern zvariant_utils=/tmp/tmp.qhGiLVvQuR/target/debug/deps/libzvariant_utils-555d90bad4acf190.rlib --extern proc_macro --cap-lints warn` 443s Compiling block-buffer v0.10.2 443s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=block_buffer CARGO_MANIFEST_DIR=/tmp/tmp.qhGiLVvQuR/registry/block-buffer-0.10.2 CARGO_MANIFEST_PATH=/tmp/tmp.qhGiLVvQuR/registry/block-buffer-0.10.2/Cargo.toml CARGO_PKG_AUTHORS='RustCrypto Developers' CARGO_PKG_DESCRIPTION='Buffer type for block processing of data' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=block-buffer CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/RustCrypto/utils' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.10.2 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=10 CARGO_PKG_VERSION_PATCH=2 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.qhGiLVvQuR/target/debug/deps rustc --crate-name block_buffer --edition=2018 /tmp/tmp.qhGiLVvQuR/registry/block-buffer-0.10.2/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=4cd3db619b1d8e9e -C extra-filename=-4cd3db619b1d8e9e --out-dir /tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.qhGiLVvQuR/target/debug/deps --extern generic_array=/tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/deps/libgeneric_array-d02d059964c7aee0.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.qhGiLVvQuR/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 443s warning: `block-buffer` (lib) generated 1 warning (1 duplicate) 443s Compiling crypto-common v0.1.6 443s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=crypto_common CARGO_MANIFEST_DIR=/tmp/tmp.qhGiLVvQuR/registry/crypto-common-0.1.6 CARGO_MANIFEST_PATH=/tmp/tmp.qhGiLVvQuR/registry/crypto-common-0.1.6/Cargo.toml CARGO_PKG_AUTHORS='RustCrypto Developers' CARGO_PKG_DESCRIPTION='Common cryptographic traits' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=crypto-common CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/RustCrypto/traits' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.1.6 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=6 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.qhGiLVvQuR/target/debug/deps rustc --crate-name crypto_common --edition=2018 /tmp/tmp.qhGiLVvQuR/registry/crypto-common-0.1.6/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("getrandom", "rand_core", "std"))' -C metadata=77cd648c700afbb2 -C extra-filename=-77cd648c700afbb2 --out-dir /tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.qhGiLVvQuR/target/debug/deps --extern generic_array=/tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/deps/libgeneric_array-d02d059964c7aee0.rmeta --extern typenum=/tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/deps/libtypenum-c66037e8139405ff.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.qhGiLVvQuR/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 443s warning: `crypto-common` (lib) generated 1 warning (1 duplicate) 443s Compiling static_assertions v1.1.0 443s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=static_assertions CARGO_MANIFEST_DIR=/tmp/tmp.qhGiLVvQuR/registry/static_assertions-1.1.0 CARGO_MANIFEST_PATH=/tmp/tmp.qhGiLVvQuR/registry/static_assertions-1.1.0/Cargo.toml CARGO_PKG_AUTHORS='Nikolai Vazquez' CARGO_PKG_DESCRIPTION='Compile-time assertions to ensure that invariants are met.' CARGO_PKG_HOMEPAGE='https://github.com/nvzqz/static-assertions-rs' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=static_assertions CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/nvzqz/static-assertions-rs' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=1.1.0 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.qhGiLVvQuR/target/debug/deps rustc --crate-name static_assertions --edition=2015 /tmp/tmp.qhGiLVvQuR/registry/static_assertions-1.1.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("nightly"))' -C metadata=18df01cc327facaa -C extra-filename=-18df01cc327facaa --out-dir /tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.qhGiLVvQuR/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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.qhGiLVvQuR/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 443s warning: `static_assertions` (lib) generated 1 warning (1 duplicate) 443s Compiling once_cell v1.20.2 443s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=once_cell CARGO_MANIFEST_DIR=/tmp/tmp.qhGiLVvQuR/registry/once_cell-1.20.2 CARGO_MANIFEST_PATH=/tmp/tmp.qhGiLVvQuR/registry/once_cell-1.20.2/Cargo.toml CARGO_PKG_AUTHORS='Aleksey Kladov ' CARGO_PKG_DESCRIPTION='Single assignment cells and lazy values.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=once_cell CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/matklad/once_cell' CARGO_PKG_RUST_VERSION=1.60 CARGO_PKG_VERSION=1.20.2 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=20 CARGO_PKG_VERSION_PATCH=2 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.qhGiLVvQuR/target/debug/deps rustc --crate-name once_cell --edition=2021 /tmp/tmp.qhGiLVvQuR/registry/once_cell-1.20.2/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="alloc"' --cfg 'feature="default"' --cfg 'feature="race"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "atomic-polyfill", "critical-section", "default", "parking_lot", "portable-atomic", "race", "std", "unstable"))' -C metadata=f9b984852945e4ac -C extra-filename=-f9b984852945e4ac --out-dir /tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.qhGiLVvQuR/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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.qhGiLVvQuR/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 443s warning: `once_cell` (lib) generated 1 warning (1 duplicate) 443s Compiling endi v1.1.0 443s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=endi CARGO_MANIFEST_DIR=/tmp/tmp.qhGiLVvQuR/registry/endi-1.1.0 CARGO_MANIFEST_PATH=/tmp/tmp.qhGiLVvQuR/registry/endi-1.1.0/Cargo.toml CARGO_PKG_AUTHORS='Zeeshan Ali Khan ' CARGO_PKG_DESCRIPTION='A simple endian-handling library' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=endi CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/zeenix/endi' CARGO_PKG_RUST_VERSION=1.60 CARGO_PKG_VERSION=1.1.0 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.qhGiLVvQuR/target/debug/deps rustc --crate-name endi --edition=2021 /tmp/tmp.qhGiLVvQuR/registry/endi-1.1.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "std"))' -C metadata=6479300693b4fccf -C extra-filename=-6479300693b4fccf --out-dir /tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.qhGiLVvQuR/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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.qhGiLVvQuR/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 443s warning: `endi` (lib) generated 1 warning (1 duplicate) 443s Compiling tracing-core v0.1.32 443s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=tracing_core CARGO_MANIFEST_DIR=/tmp/tmp.qhGiLVvQuR/registry/tracing-core-0.1.32 CARGO_MANIFEST_PATH=/tmp/tmp.qhGiLVvQuR/registry/tracing-core-0.1.32/Cargo.toml CARGO_PKG_AUTHORS='Tokio Contributors ' CARGO_PKG_DESCRIPTION='Core primitives for application-level tracing. 443s ' CARGO_PKG_HOMEPAGE='https://tokio.rs' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=tracing-core CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/tokio-rs/tracing' CARGO_PKG_RUST_VERSION=1.56.0 CARGO_PKG_VERSION=0.1.32 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=32 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.qhGiLVvQuR/target/debug/deps rustc --crate-name tracing_core --edition=2018 /tmp/tmp.qhGiLVvQuR/registry/tracing-core-0.1.32/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="once_cell"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "once_cell", "std", "valuable"))' -C metadata=4c8af7279fad1469 -C extra-filename=-4c8af7279fad1469 --out-dir /tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.qhGiLVvQuR/target/debug/deps --extern once_cell=/tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/deps/libonce_cell-f9b984852945e4ac.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.qhGiLVvQuR/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 443s warning: lint `private_in_public` has been removed: replaced with another group of lints, see RFC for more information 443s --> /usr/share/cargo/registry/tracing-core-0.1.32/src/lib.rs:138:5 443s | 443s 138 | private_in_public, 443s | ^^^^^^^^^^^^^^^^^ 443s | 443s = note: `#[warn(renamed_and_removed_lints)]` on by default 443s 443s warning: unexpected `cfg` condition value: `alloc` 443s --> /usr/share/cargo/registry/tracing-core-0.1.32/src/dispatcher.rs:147:7 443s | 443s 147 | #[cfg(feature = "alloc")] 443s | ^^^^^^^^^^^^^^^^^ 443s | 443s = note: expected values for `feature` are: `default`, `once_cell`, `std`, and `valuable` 443s = help: consider adding `alloc` as a feature in `Cargo.toml` 443s = note: see for more information about checking conditional configuration 443s = note: `#[warn(unexpected_cfgs)]` on by default 443s 443s warning: unexpected `cfg` condition value: `alloc` 443s --> /usr/share/cargo/registry/tracing-core-0.1.32/src/dispatcher.rs:150:7 443s | 443s 150 | #[cfg(feature = "alloc")] 443s | ^^^^^^^^^^^^^^^^^ 443s | 443s = note: expected values for `feature` are: `default`, `once_cell`, `std`, and `valuable` 443s = help: consider adding `alloc` as a feature in `Cargo.toml` 443s = note: see for more information about checking conditional configuration 443s 443s warning: unexpected `cfg` condition name: `tracing_unstable` 443s --> /usr/share/cargo/registry/tracing-core-0.1.32/src/field.rs:374:11 443s | 443s 374 | #[cfg(all(tracing_unstable, feature = "valuable"))] 443s | ^^^^^^^^^^^^^^^^ 443s | 443s = help: expected names are: `clippy`, `debug_assertions`, `doc`, `docsrs`, `doctest`, `feature`, `fmt_debug`, `miri`, `overflow_checks`, `panic`, `proc_macro`, `relocation_model`, `rustfmt`, `sanitize`, `sanitizer_cfi_generalize_pointers`, `sanitizer_cfi_normalize_integers`, `target_abi`, `target_arch`, `target_endian`, `target_env`, `target_family`, `target_feature`, `target_has_atomic`, `target_has_atomic_equal_alignment`, `target_has_atomic_load_store`, `target_os`, `target_pointer_width`, `target_thread_local`, `target_vendor`, `test`, `ub_checks`, `unix`, and `windows` 443s = help: consider using a Cargo feature instead 443s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 443s [lints.rust] 443s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tracing_unstable)'] } 443s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tracing_unstable)");` to the top of the `build.rs` 443s = note: see for more information about checking conditional configuration 443s 443s warning: unexpected `cfg` condition name: `tracing_unstable` 443s --> /usr/share/cargo/registry/tracing-core-0.1.32/src/field.rs:719:11 443s | 443s 719 | #[cfg(all(tracing_unstable, feature = "valuable"))] 443s | ^^^^^^^^^^^^^^^^ 443s | 443s = help: consider using a Cargo feature instead 443s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 443s [lints.rust] 443s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tracing_unstable)'] } 443s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tracing_unstable)");` to the top of the `build.rs` 443s = note: see for more information about checking conditional configuration 443s 443s warning: unexpected `cfg` condition name: `tracing_unstable` 443s --> /usr/share/cargo/registry/tracing-core-0.1.32/src/field.rs:722:11 443s | 443s 722 | #[cfg(all(tracing_unstable, feature = "valuable"))] 443s | ^^^^^^^^^^^^^^^^ 443s | 443s = help: consider using a Cargo feature instead 443s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 443s [lints.rust] 443s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tracing_unstable)'] } 443s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tracing_unstable)");` to the top of the `build.rs` 443s = note: see for more information about checking conditional configuration 443s 443s warning: unexpected `cfg` condition name: `tracing_unstable` 443s --> /usr/share/cargo/registry/tracing-core-0.1.32/src/field.rs:730:11 443s | 443s 730 | #[cfg(all(tracing_unstable, feature = "valuable"))] 443s | ^^^^^^^^^^^^^^^^ 443s | 443s = help: consider using a Cargo feature instead 443s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 443s [lints.rust] 443s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tracing_unstable)'] } 443s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tracing_unstable)");` to the top of the `build.rs` 443s = note: see for more information about checking conditional configuration 443s 443s warning: unexpected `cfg` condition name: `tracing_unstable` 443s --> /usr/share/cargo/registry/tracing-core-0.1.32/src/field.rs:733:11 443s | 443s 733 | #[cfg(all(tracing_unstable, feature = "valuable"))] 443s | ^^^^^^^^^^^^^^^^ 443s | 443s = help: consider using a Cargo feature instead 443s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 443s [lints.rust] 443s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tracing_unstable)'] } 443s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tracing_unstable)");` to the top of the `build.rs` 443s = note: see for more information about checking conditional configuration 443s 443s warning: unexpected `cfg` condition name: `tracing_unstable` 443s --> /usr/share/cargo/registry/tracing-core-0.1.32/src/field.rs:270:15 443s | 443s 270 | #[cfg(all(tracing_unstable, feature = "valuable"))] 443s | ^^^^^^^^^^^^^^^^ 443s | 443s = help: consider using a Cargo feature instead 443s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 443s [lints.rust] 443s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tracing_unstable)'] } 443s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tracing_unstable)");` to the top of the `build.rs` 443s = note: see for more information about checking conditional configuration 443s 443s warning: creating a shared reference to mutable static is discouraged 443s --> /usr/share/cargo/registry/tracing-core-0.1.32/src/dispatcher.rs:458:9 443s | 443s 458 | &GLOBAL_DISPATCH 443s | ^^^^^^^^^^^^^^^^ shared reference to mutable static 443s | 443s = note: for more information, see 443s = note: shared references to mutable statics are dangerous; it's undefined behavior if the static is mutated or if a mutable reference is created for it while the shared reference lives 443s = note: `#[warn(static_mut_refs)]` on by default 443s help: use `&raw const` instead to create a raw pointer 443s | 443s 458 | &raw const GLOBAL_DISPATCH 443s | ~~~~~~~~~~ 443s 444s warning: `tracing-core` (lib) generated 11 warnings (1 duplicate) 444s Compiling enumflags2 v0.7.10 444s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=enumflags2 CARGO_MANIFEST_DIR=/tmp/tmp.qhGiLVvQuR/registry/enumflags2-0.7.10 CARGO_MANIFEST_PATH=/tmp/tmp.qhGiLVvQuR/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.qhGiLVvQuR/target/debug/deps rustc --crate-name enumflags2 --edition=2018 /tmp/tmp.qhGiLVvQuR/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=2867d32c4b4f39e8 -C extra-filename=-2867d32c4b4f39e8 --out-dir /tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.qhGiLVvQuR/target/debug/deps --extern enumflags2_derive=/tmp/tmp.qhGiLVvQuR/target/debug/deps/libenumflags2_derive-588090abb48fd7e4.so --extern serde=/tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/deps/libserde-0e7dff716e38da0d.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.qhGiLVvQuR/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 444s warning: `serde` (lib) generated 1 warning (1 duplicate) 444s Compiling digest v0.10.7 444s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=digest CARGO_MANIFEST_DIR=/tmp/tmp.qhGiLVvQuR/registry/digest-0.10.7 CARGO_MANIFEST_PATH=/tmp/tmp.qhGiLVvQuR/registry/digest-0.10.7/Cargo.toml CARGO_PKG_AUTHORS='RustCrypto Developers' CARGO_PKG_DESCRIPTION='Traits for cryptographic hash functions and message authentication codes' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=digest CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/RustCrypto/traits' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.10.7 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=10 CARGO_PKG_VERSION_PATCH=7 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.qhGiLVvQuR/target/debug/deps rustc --crate-name digest --edition=2018 /tmp/tmp.qhGiLVvQuR/registry/digest-0.10.7/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="alloc"' --cfg 'feature="block-buffer"' --cfg 'feature="core-api"' --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "blobby", "block-buffer", "const-oid", "core-api", "default", "dev", "mac", "oid", "rand_core", "std", "subtle"))' -C metadata=027272cf65436a63 -C extra-filename=-027272cf65436a63 --out-dir /tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.qhGiLVvQuR/target/debug/deps --extern block_buffer=/tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/deps/libblock_buffer-4cd3db619b1d8e9e.rmeta --extern crypto_common=/tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/deps/libcrypto_common-77cd648c700afbb2.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.qhGiLVvQuR/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 444s warning: `digest` (lib) generated 1 warning (1 duplicate) 444s Compiling zvariant v4.2.0 444s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=zvariant CARGO_MANIFEST_DIR=/tmp/tmp.qhGiLVvQuR/registry/zvariant-4.2.0 CARGO_MANIFEST_PATH=/tmp/tmp.qhGiLVvQuR/registry/zvariant-4.2.0/Cargo.toml CARGO_PKG_AUTHORS='Zeeshan Ali Khan ' CARGO_PKG_DESCRIPTION='D-Bus & GVariant encoding & decoding' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=zvariant CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dbus2/zbus/' CARGO_PKG_RUST_VERSION=1.75 CARGO_PKG_VERSION=4.2.0 CARGO_PKG_VERSION_MAJOR=4 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.qhGiLVvQuR/target/debug/deps rustc --crate-name zvariant --edition=2021 /tmp/tmp.qhGiLVvQuR/registry/zvariant-4.2.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="enumflags2"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("arrayvec", "chrono", "default", "enumflags2", "gvariant", "heapless", "option-as-array", "ostree-tests", "serde_bytes", "time", "url", "uuid"))' -C metadata=f63ab59735f855c5 -C extra-filename=-f63ab59735f855c5 --out-dir /tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.qhGiLVvQuR/target/debug/deps --extern endi=/tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/deps/libendi-6479300693b4fccf.rmeta --extern enumflags2=/tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/deps/libenumflags2-2867d32c4b4f39e8.rmeta --extern serde=/tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/deps/libserde-0e7dff716e38da0d.rmeta --extern static_assertions=/tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/deps/libstatic_assertions-18df01cc327facaa.rmeta --extern zvariant_derive=/tmp/tmp.qhGiLVvQuR/target/debug/deps/libzvariant_derive-307afde79edbb6d8.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.qhGiLVvQuR/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 444s warning: `enumflags2` (lib) generated 1 warning (1 duplicate) 444s Compiling rand_chacha v0.3.1 444s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=rand_chacha CARGO_MANIFEST_DIR=/tmp/tmp.qhGiLVvQuR/registry/rand_chacha-0.3.1 CARGO_MANIFEST_PATH=/tmp/tmp.qhGiLVvQuR/registry/rand_chacha-0.3.1/Cargo.toml CARGO_PKG_AUTHORS='The Rand Project Developers:The Rust Project Developers:The CryptoCorrosion Contributors' CARGO_PKG_DESCRIPTION='ChaCha random number generator 444s ' CARGO_PKG_HOMEPAGE='https://rust-random.github.io/book' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=rand_chacha CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-random/rand' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.3.1 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.qhGiLVvQuR/target/debug/deps rustc --crate-name rand_chacha --edition=2018 /tmp/tmp.qhGiLVvQuR/registry/rand_chacha-0.3.1/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "serde", "serde1", "simd", "std"))' -C metadata=dd56c23de683d750 -C extra-filename=-dd56c23de683d750 --out-dir /tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.qhGiLVvQuR/target/debug/deps --extern ppv_lite86=/tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/deps/libppv_lite86-57e5b566e2a71c09.rmeta --extern rand_core=/tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/deps/librand_core-3c7246ca3f419bbc.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.qhGiLVvQuR/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 444s warning: `rand_chacha` (lib) generated 1 warning (1 duplicate) 444s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=slab CARGO_MANIFEST_DIR=/tmp/tmp.qhGiLVvQuR/registry/slab-0.4.9 CARGO_MANIFEST_PATH=/tmp/tmp.qhGiLVvQuR/registry/slab-0.4.9/Cargo.toml CARGO_PKG_AUTHORS='Carl Lerche ' CARGO_PKG_DESCRIPTION='Pre-allocated storage for a uniform data type' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=slab CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/tokio-rs/slab' CARGO_PKG_RUST_VERSION=1.31 CARGO_PKG_VERSION=0.4.9 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=4 CARGO_PKG_VERSION_PATCH=9 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.qhGiLVvQuR/target/debug/deps OUT_DIR=/tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/build/slab-2c89ee66d35953a1/out rustc --crate-name slab --edition=2018 /tmp/tmp.qhGiLVvQuR/registry/slab-0.4.9/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "serde", "std"))' -C metadata=36320af34be0827b -C extra-filename=-36320af34be0827b --out-dir /tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.qhGiLVvQuR/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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.qhGiLVvQuR/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 444s warning: unexpected `cfg` condition name: `slab_no_const_vec_new` 444s --> /usr/share/cargo/registry/slab-0.4.9/src/lib.rs:250:15 444s | 444s 250 | #[cfg(not(slab_no_const_vec_new))] 444s | ^^^^^^^^^^^^^^^^^^^^^ 444s | 444s = help: expected names are: `clippy`, `debug_assertions`, `doc`, `docsrs`, `doctest`, `feature`, `fmt_debug`, `miri`, `overflow_checks`, `panic`, `proc_macro`, `relocation_model`, `rustfmt`, `sanitize`, `sanitizer_cfi_generalize_pointers`, `sanitizer_cfi_normalize_integers`, `target_abi`, `target_arch`, `target_endian`, `target_env`, `target_family`, `target_feature`, `target_has_atomic`, `target_has_atomic_equal_alignment`, `target_has_atomic_load_store`, `target_os`, `target_pointer_width`, `target_thread_local`, `target_vendor`, `test`, `ub_checks`, `unix`, and `windows` 444s = help: consider using a Cargo feature instead 444s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 444s [lints.rust] 444s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(slab_no_const_vec_new)'] } 444s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(slab_no_const_vec_new)");` to the top of the `build.rs` 444s = note: see for more information about checking conditional configuration 444s = note: `#[warn(unexpected_cfgs)]` on by default 444s 444s warning: unexpected `cfg` condition name: `slab_no_const_vec_new` 444s --> /usr/share/cargo/registry/slab-0.4.9/src/lib.rs:264:11 444s | 444s 264 | #[cfg(slab_no_const_vec_new)] 444s | ^^^^^^^^^^^^^^^^^^^^^ 444s | 444s = help: consider using a Cargo feature instead 444s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 444s [lints.rust] 444s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(slab_no_const_vec_new)'] } 444s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(slab_no_const_vec_new)");` to the top of the `build.rs` 444s = note: see for more information about checking conditional configuration 444s 444s warning: unexpected `cfg` condition name: `slab_no_track_caller` 444s --> /usr/share/cargo/registry/slab-0.4.9/src/lib.rs:929:20 444s | 444s 929 | #[cfg_attr(not(slab_no_track_caller), track_caller)] 444s | ^^^^^^^^^^^^^^^^^^^^ 444s | 444s = help: consider using a Cargo feature instead 444s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 444s [lints.rust] 444s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(slab_no_track_caller)'] } 444s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(slab_no_track_caller)");` to the top of the `build.rs` 444s = note: see for more information about checking conditional configuration 444s 444s warning: unexpected `cfg` condition name: `slab_no_track_caller` 444s --> /usr/share/cargo/registry/slab-0.4.9/src/lib.rs:1098:20 444s | 444s 1098 | #[cfg_attr(not(slab_no_track_caller), track_caller)] 444s | ^^^^^^^^^^^^^^^^^^^^ 444s | 444s = help: consider using a Cargo feature instead 444s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 444s [lints.rust] 444s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(slab_no_track_caller)'] } 444s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(slab_no_track_caller)");` to the top of the `build.rs` 444s = note: see for more information about checking conditional configuration 444s 444s warning: unexpected `cfg` condition name: `slab_no_track_caller` 444s --> /usr/share/cargo/registry/slab-0.4.9/src/lib.rs:1206:20 444s | 444s 1206 | #[cfg_attr(not(slab_no_track_caller), track_caller)] 444s | ^^^^^^^^^^^^^^^^^^^^ 444s | 444s = help: consider using a Cargo feature instead 444s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 444s [lints.rust] 444s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(slab_no_track_caller)'] } 444s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(slab_no_track_caller)");` to the top of the `build.rs` 444s = note: see for more information about checking conditional configuration 444s 444s warning: unexpected `cfg` condition name: `slab_no_track_caller` 444s --> /usr/share/cargo/registry/slab-0.4.9/src/lib.rs:1216:20 444s | 444s 1216 | #[cfg_attr(not(slab_no_track_caller), track_caller)] 444s | ^^^^^^^^^^^^^^^^^^^^ 444s | 444s = help: consider using a Cargo feature instead 444s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 444s [lints.rust] 444s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(slab_no_track_caller)'] } 444s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(slab_no_track_caller)");` to the top of the `build.rs` 444s = note: see for more information about checking conditional configuration 444s 444s warning: `slab` (lib) generated 7 warnings (1 duplicate) 444s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=memoffset CARGO_MANIFEST_DIR=/tmp/tmp.qhGiLVvQuR/registry/memoffset-0.8.0 CARGO_MANIFEST_PATH=/tmp/tmp.qhGiLVvQuR/registry/memoffset-0.8.0/Cargo.toml CARGO_PKG_AUTHORS='Gilad Naaman ' CARGO_PKG_DESCRIPTION='offset_of functionality for Rust structs.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=memoffset CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/Gilnaa/memoffset' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.8.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=8 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.qhGiLVvQuR/target/debug/deps OUT_DIR=/tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/build/memoffset-b32fed70cf81e31f/out rustc --crate-name memoffset --edition=2015 /tmp/tmp.qhGiLVvQuR/registry/memoffset-0.8.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "unstable_const"))' -C metadata=2f432c32070b84ca -C extra-filename=-2f432c32070b84ca --out-dir /tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.qhGiLVvQuR/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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.qhGiLVvQuR/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain --cfg tuple_ty --cfg allow_clippy --cfg maybe_uninit --cfg doctests --cfg raw_ref_macros --cfg stable_const` 444s warning: unexpected `cfg` condition name: `stable_const` 444s --> /usr/share/cargo/registry/memoffset-0.8.0/src/lib.rs:60:41 444s | 444s 60 | all(feature = "unstable_const", not(stable_const)), 444s | ^^^^^^^^^^^^ 444s | 444s = help: expected names are: `clippy`, `debug_assertions`, `doc`, `docsrs`, `doctest`, `feature`, `fmt_debug`, `miri`, `overflow_checks`, `panic`, `proc_macro`, `relocation_model`, `rustfmt`, `sanitize`, `sanitizer_cfi_generalize_pointers`, `sanitizer_cfi_normalize_integers`, `target_abi`, `target_arch`, `target_endian`, `target_env`, `target_family`, `target_feature`, `target_has_atomic`, `target_has_atomic_equal_alignment`, `target_has_atomic_load_store`, `target_os`, `target_pointer_width`, `target_thread_local`, `target_vendor`, `test`, `ub_checks`, `unix`, and `windows` 444s = help: consider using a Cargo feature instead 444s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 444s [lints.rust] 444s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(stable_const)'] } 444s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(stable_const)");` to the top of the `build.rs` 444s = note: see for more information about checking conditional configuration 444s = note: `#[warn(unexpected_cfgs)]` on by default 444s 444s warning: unexpected `cfg` condition name: `doctests` 444s --> /usr/share/cargo/registry/memoffset-0.8.0/src/lib.rs:66:7 444s | 444s 66 | #[cfg(doctests)] 444s | ^^^^^^^^ help: there is a config with a similar name: `doctest` 444s | 444s = help: consider using a Cargo feature instead 444s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 444s [lints.rust] 444s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doctests)'] } 444s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doctests)");` to the top of the `build.rs` 444s = note: see for more information about checking conditional configuration 444s 444s warning: unexpected `cfg` condition name: `doctests` 444s --> /usr/share/cargo/registry/memoffset-0.8.0/src/lib.rs:69:7 444s | 444s 69 | #[cfg(doctests)] 444s | ^^^^^^^^ help: there is a config with a similar name: `doctest` 444s | 444s = help: consider using a Cargo feature instead 444s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 444s [lints.rust] 444s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doctests)'] } 444s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doctests)");` to the top of the `build.rs` 444s = note: see for more information about checking conditional configuration 444s 444s warning: unexpected `cfg` condition name: `raw_ref_macros` 444s --> /usr/share/cargo/registry/memoffset-0.8.0/src/raw_field.rs:22:7 444s | 444s 22 | #[cfg(raw_ref_macros)] 444s | ^^^^^^^^^^^^^^ 444s | 444s = help: consider using a Cargo feature instead 444s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 444s [lints.rust] 444s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(raw_ref_macros)'] } 444s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(raw_ref_macros)");` to the top of the `build.rs` 444s = note: see for more information about checking conditional configuration 444s 444s warning: unexpected `cfg` condition name: `raw_ref_macros` 444s --> /usr/share/cargo/registry/memoffset-0.8.0/src/raw_field.rs:30:11 444s | 444s 30 | #[cfg(not(raw_ref_macros))] 444s | ^^^^^^^^^^^^^^ 444s | 444s = help: consider using a Cargo feature instead 444s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 444s [lints.rust] 444s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(raw_ref_macros)'] } 444s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(raw_ref_macros)");` to the top of the `build.rs` 444s = note: see for more information about checking conditional configuration 444s 444s warning: unexpected `cfg` condition name: `allow_clippy` 444s --> /usr/share/cargo/registry/memoffset-0.8.0/src/raw_field.rs:57:7 444s | 444s 57 | #[cfg(allow_clippy)] 444s | ^^^^^^^^^^^^ 444s | 444s = help: consider using a Cargo feature instead 444s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 444s [lints.rust] 444s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(allow_clippy)'] } 444s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(allow_clippy)");` to the top of the `build.rs` 444s = note: see for more information about checking conditional configuration 444s 444s warning: unexpected `cfg` condition name: `allow_clippy` 444s --> /usr/share/cargo/registry/memoffset-0.8.0/src/raw_field.rs:69:11 444s | 444s 69 | #[cfg(not(allow_clippy))] 444s | ^^^^^^^^^^^^ 444s | 444s = help: consider using a Cargo feature instead 444s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 444s [lints.rust] 444s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(allow_clippy)'] } 444s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(allow_clippy)");` to the top of the `build.rs` 444s = note: see for more information about checking conditional configuration 444s 444s warning: unexpected `cfg` condition name: `allow_clippy` 444s --> /usr/share/cargo/registry/memoffset-0.8.0/src/raw_field.rs:90:7 444s | 444s 90 | #[cfg(allow_clippy)] 444s | ^^^^^^^^^^^^ 444s | 444s = help: consider using a Cargo feature instead 444s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 444s [lints.rust] 444s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(allow_clippy)'] } 444s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(allow_clippy)");` to the top of the `build.rs` 444s = note: see for more information about checking conditional configuration 444s 444s warning: unexpected `cfg` condition name: `allow_clippy` 444s --> /usr/share/cargo/registry/memoffset-0.8.0/src/raw_field.rs:100:11 444s | 444s 100 | #[cfg(not(allow_clippy))] 444s | ^^^^^^^^^^^^ 444s | 444s = help: consider using a Cargo feature instead 444s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 444s [lints.rust] 444s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(allow_clippy)'] } 444s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(allow_clippy)");` to the top of the `build.rs` 444s = note: see for more information about checking conditional configuration 444s 444s warning: unexpected `cfg` condition name: `allow_clippy` 444s --> /usr/share/cargo/registry/memoffset-0.8.0/src/raw_field.rs:125:7 444s | 444s 125 | #[cfg(allow_clippy)] 444s | ^^^^^^^^^^^^ 444s | 444s = help: consider using a Cargo feature instead 444s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 444s [lints.rust] 444s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(allow_clippy)'] } 444s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(allow_clippy)");` to the top of the `build.rs` 444s = note: see for more information about checking conditional configuration 444s 444s warning: unexpected `cfg` condition name: `allow_clippy` 444s --> /usr/share/cargo/registry/memoffset-0.8.0/src/raw_field.rs:141:11 444s | 444s 141 | #[cfg(not(allow_clippy))] 444s | ^^^^^^^^^^^^ 444s | 444s = help: consider using a Cargo feature instead 444s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 444s [lints.rust] 444s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(allow_clippy)'] } 444s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(allow_clippy)");` to the top of the `build.rs` 444s = note: see for more information about checking conditional configuration 444s 444s warning: unexpected `cfg` condition name: `tuple_ty` 444s --> /usr/share/cargo/registry/memoffset-0.8.0/src/raw_field.rs:183:7 444s | 444s 183 | #[cfg(tuple_ty)] 444s | ^^^^^^^^ 444s | 444s = help: consider using a Cargo feature instead 444s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 444s [lints.rust] 444s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tuple_ty)'] } 444s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tuple_ty)");` to the top of the `build.rs` 444s = note: see for more information about checking conditional configuration 444s 444s warning: unexpected `cfg` condition name: `maybe_uninit` 444s --> /usr/share/cargo/registry/memoffset-0.8.0/src/offset_of.rs:23:7 444s | 444s 23 | #[cfg(maybe_uninit)] 444s | ^^^^^^^^^^^^ 444s | 444s = help: consider using a Cargo feature instead 444s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 444s [lints.rust] 444s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(maybe_uninit)'] } 444s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(maybe_uninit)");` to the top of the `build.rs` 444s = note: see for more information about checking conditional configuration 444s 444s warning: unexpected `cfg` condition name: `maybe_uninit` 444s --> /usr/share/cargo/registry/memoffset-0.8.0/src/offset_of.rs:37:11 444s | 444s 37 | #[cfg(not(maybe_uninit))] 444s | ^^^^^^^^^^^^ 444s | 444s = help: consider using a Cargo feature instead 444s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 444s [lints.rust] 444s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(maybe_uninit)'] } 444s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(maybe_uninit)");` to the top of the `build.rs` 444s = note: see for more information about checking conditional configuration 444s 444s warning: unexpected `cfg` condition name: `stable_const` 444s --> /usr/share/cargo/registry/memoffset-0.8.0/src/offset_of.rs:49:39 444s | 444s 49 | #[cfg(any(feature = "unstable_const", stable_const))] 444s | ^^^^^^^^^^^^ 444s | 444s = help: consider using a Cargo feature instead 444s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 444s [lints.rust] 444s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(stable_const)'] } 444s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(stable_const)");` to the top of the `build.rs` 444s = note: see for more information about checking conditional configuration 444s 444s warning: unexpected `cfg` condition name: `stable_const` 444s --> /usr/share/cargo/registry/memoffset-0.8.0/src/offset_of.rs:61:43 444s | 444s 61 | #[cfg(not(any(feature = "unstable_const", stable_const)))] 444s | ^^^^^^^^^^^^ 444s | 444s = help: consider using a Cargo feature instead 444s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 444s [lints.rust] 444s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(stable_const)'] } 444s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(stable_const)");` to the top of the `build.rs` 444s = note: see for more information about checking conditional configuration 444s 444s warning: unexpected `cfg` condition name: `tuple_ty` 444s --> /usr/share/cargo/registry/memoffset-0.8.0/src/offset_of.rs:121:7 444s | 444s 121 | #[cfg(tuple_ty)] 444s | ^^^^^^^^ 444s | 444s = help: consider using a Cargo feature instead 444s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 444s [lints.rust] 444s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tuple_ty)'] } 444s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tuple_ty)");` to the top of the `build.rs` 444s = note: see for more information about checking conditional configuration 444s 444s warning: `memoffset` (lib) generated 18 warnings (1 duplicate) 444s Compiling event-listener-strategy v0.5.3 444s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=event_listener_strategy CARGO_MANIFEST_DIR=/tmp/tmp.qhGiLVvQuR/registry/event-listener-strategy-0.5.3 CARGO_MANIFEST_PATH=/tmp/tmp.qhGiLVvQuR/registry/event-listener-strategy-0.5.3/Cargo.toml CARGO_PKG_AUTHORS='John Nunley ' CARGO_PKG_DESCRIPTION='Block or poll on event_listener easily' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=event-listener-strategy CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/smol-rs/event-listener-strategy' CARGO_PKG_RUST_VERSION=1.60 CARGO_PKG_VERSION=0.5.3 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=5 CARGO_PKG_VERSION_PATCH=3 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.qhGiLVvQuR/target/debug/deps rustc --crate-name event_listener_strategy --edition=2021 /tmp/tmp.qhGiLVvQuR/registry/event-listener-strategy-0.5.3/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --warn=unexpected_cfgs --check-cfg 'cfg(wasm_bindgen_unstable_test_coverage)' --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "std"))' -C metadata=c155ba63305d40fd -C extra-filename=-c155ba63305d40fd --out-dir /tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.qhGiLVvQuR/target/debug/deps --extern event_listener=/tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/deps/libevent_listener-93bdad7496d4853a.rmeta --extern pin_project_lite=/tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/deps/libpin_project_lite-5dc815523e98d889.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.qhGiLVvQuR/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 444s warning: `event-listener-strategy` (lib) generated 1 warning (1 duplicate) 444s 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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0--remap-path-prefix/tmp/tmp.qhGiLVvQuR/registry=/usr/share/cargo/registry-Ctarget-feature=+backchain' CARGO_FEATURE_FEATURE=1 CARGO_FEATURE_MEMOFFSET=1 CARGO_FEATURE_SOCKET=1 CARGO_FEATURE_UIO=1 CARGO_FEATURE_USER=1 CARGO_MANIFEST_DIR=/tmp/tmp.qhGiLVvQuR/registry/nix-0.29.0 CARGO_MANIFEST_PATH=/tmp/tmp.qhGiLVvQuR/registry/nix-0.29.0/Cargo.toml CARGO_PKG_AUTHORS='The nix-rust Project Developers' CARGO_PKG_DESCRIPTION='Rust friendly bindings to *nix APIs' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=nix CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/nix-rust/nix' CARGO_PKG_RUST_VERSION=1.69 CARGO_PKG_VERSION=0.29.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=29 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' DEBUG=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.qhGiLVvQuR/target/debug/deps:/tmp/tmp.qhGiLVvQuR/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/build/nix-8065280fb097eaec/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.qhGiLVvQuR/target/debug/build/nix-9cc97a3a2fcb749b/build-script-build` 444s [nix 0.29.0] cargo:rustc-check-cfg=cfg(android) 444s [nix 0.29.0] cargo:rustc-check-cfg=cfg(dragonfly) 444s [nix 0.29.0] cargo:rustc-check-cfg=cfg(ios) 444s [nix 0.29.0] cargo:rustc-check-cfg=cfg(freebsd) 444s [nix 0.29.0] cargo:rustc-check-cfg=cfg(illumos) 444s [nix 0.29.0] cargo:rustc-check-cfg=cfg(linux) 444s [nix 0.29.0] cargo:rustc-cfg=linux 444s [nix 0.29.0] cargo:rustc-check-cfg=cfg(macos) 444s [nix 0.29.0] cargo:rustc-check-cfg=cfg(netbsd) 444s [nix 0.29.0] cargo:rustc-check-cfg=cfg(openbsd) 444s [nix 0.29.0] cargo:rustc-check-cfg=cfg(solaris) 444s [nix 0.29.0] cargo:rustc-check-cfg=cfg(watchos) 444s [nix 0.29.0] cargo:rustc-check-cfg=cfg(tvos) 444s [nix 0.29.0] cargo:rustc-check-cfg=cfg(visionos) 444s [nix 0.29.0] cargo:rustc-check-cfg=cfg(apple_targets) 444s [nix 0.29.0] cargo:rustc-check-cfg=cfg(bsd) 444s [nix 0.29.0] cargo:rustc-check-cfg=cfg(bsd_without_apple) 444s [nix 0.29.0] cargo:rustc-check-cfg=cfg(linux_android) 444s [nix 0.29.0] cargo:rustc-cfg=linux_android 444s [nix 0.29.0] cargo:rustc-check-cfg=cfg(freebsdlike) 444s [nix 0.29.0] cargo:rustc-check-cfg=cfg(netbsdlike) 444s [nix 0.29.0] cargo:rustc-check-cfg=cfg(solarish) 444s [nix 0.29.0] cargo:rustc-check-cfg=cfg(apple_targets) 444s [nix 0.29.0] cargo:rustc-check-cfg=cfg(bsd) 444s [nix 0.29.0] cargo:rustc-check-cfg=cfg(bsd_without_apple) 444s [nix 0.29.0] cargo:rustc-check-cfg=cfg(linux_android) 444s [nix 0.29.0] cargo:rustc-check-cfg=cfg(freebsdlike) 444s [nix 0.29.0] cargo:rustc-check-cfg=cfg(netbsdlike) 444s [nix 0.29.0] cargo:rustc-check-cfg=cfg(solarish) 444s [nix 0.29.0] cargo:rustc-check-cfg=cfg(fbsd14) 444s [nix 0.29.0] cargo:rustc-check-cfg=cfg(qemu) 444s Compiling tracing-attributes v0.1.27 444s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=tracing_attributes CARGO_MANIFEST_DIR=/tmp/tmp.qhGiLVvQuR/registry/tracing-attributes-0.1.27 CARGO_MANIFEST_PATH=/tmp/tmp.qhGiLVvQuR/registry/tracing-attributes-0.1.27/Cargo.toml CARGO_PKG_AUTHORS='Tokio Contributors :Eliza Weisman :David Barsky ' CARGO_PKG_DESCRIPTION='Procedural macro attributes for automatically instrumenting functions. 444s ' CARGO_PKG_HOMEPAGE='https://tokio.rs' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=tracing-attributes CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/tokio-rs/tracing' CARGO_PKG_RUST_VERSION=1.56.0 CARGO_PKG_VERSION=0.1.27 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=27 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.qhGiLVvQuR/target/debug/deps rustc --crate-name tracing_attributes --edition=2018 /tmp/tmp.qhGiLVvQuR/registry/tracing-attributes-0.1.27/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("async-await"))' -C metadata=7f00f49c1aac99bb -C extra-filename=-7f00f49c1aac99bb --out-dir /tmp/tmp.qhGiLVvQuR/target/debug/deps -L dependency=/tmp/tmp.qhGiLVvQuR/target/debug/deps --extern proc_macro2=/tmp/tmp.qhGiLVvQuR/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rlib --extern quote=/tmp/tmp.qhGiLVvQuR/target/debug/deps/libquote-dc92c6f25ee0f0c6.rlib --extern syn=/tmp/tmp.qhGiLVvQuR/target/debug/deps/libsyn-0167beed9e699402.rlib --extern proc_macro --cap-lints warn` 444s warning: lint `private_in_public` has been removed: replaced with another group of lints, see RFC for more information 444s --> /tmp/tmp.qhGiLVvQuR/registry/tracing-attributes-0.1.27/src/lib.rs:73:5 444s | 444s 73 | private_in_public, 444s | ^^^^^^^^^^^^^^^^^ 444s | 444s = note: `#[warn(renamed_and_removed_lints)]` on by default 444s 446s warning: `zvariant` (lib) generated 1 warning (1 duplicate) 446s Compiling futures-macro v0.3.31 446s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=futures_macro CARGO_MANIFEST_DIR=/tmp/tmp.qhGiLVvQuR/registry/futures-macro-0.3.31 CARGO_MANIFEST_PATH=/tmp/tmp.qhGiLVvQuR/registry/futures-macro-0.3.31/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='The futures-rs procedural macro implementations. 446s ' CARGO_PKG_HOMEPAGE='https://rust-lang.github.io/futures-rs' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=futures-macro CARGO_PKG_README='' CARGO_PKG_REPOSITORY='https://github.com/rust-lang/futures-rs' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=0.3.31 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=31 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.qhGiLVvQuR/target/debug/deps rustc --crate-name futures_macro --edition=2018 /tmp/tmp.qhGiLVvQuR/registry/futures-macro-0.3.31/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type proc-macro --emit=dep-info,link -C prefer-dynamic -C embed-bitcode=no -C debuginfo=2 --warn=unreachable_pub --warn=unexpected_cfgs --warn=single_use_lifetimes --warn=rust_2018_idioms --warn=missing_debug_implementations --check-cfg 'cfg(futures_sanitizer)' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=4cace2739cb7abd5 -C extra-filename=-4cace2739cb7abd5 --out-dir /tmp/tmp.qhGiLVvQuR/target/debug/deps -L dependency=/tmp/tmp.qhGiLVvQuR/target/debug/deps --extern proc_macro2=/tmp/tmp.qhGiLVvQuR/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rlib --extern quote=/tmp/tmp.qhGiLVvQuR/target/debug/deps/libquote-dc92c6f25ee0f0c6.rlib --extern syn=/tmp/tmp.qhGiLVvQuR/target/debug/deps/libsyn-0167beed9e699402.rlib --extern proc_macro --cap-lints warn` 446s warning: `tracing-attributes` (lib) generated 1 warning 446s Compiling bitflags v2.8.0 446s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=bitflags CARGO_MANIFEST_DIR=/tmp/tmp.qhGiLVvQuR/registry/bitflags-2.8.0 CARGO_MANIFEST_PATH=/tmp/tmp.qhGiLVvQuR/registry/bitflags-2.8.0/Cargo.toml CARGO_PKG_AUTHORS='The Rust Project Developers' CARGO_PKG_DESCRIPTION='A macro to generate structures which behave like bitflags. 446s ' CARGO_PKG_HOMEPAGE='https://github.com/bitflags/bitflags' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=bitflags CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/bitflags/bitflags' CARGO_PKG_RUST_VERSION=1.56.0 CARGO_PKG_VERSION=2.8.0 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=8 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.qhGiLVvQuR/target/debug/deps rustc --crate-name bitflags --edition=2021 /tmp/tmp.qhGiLVvQuR/registry/bitflags-2.8.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("arbitrary", "bytemuck", "compiler_builtins", "core", "example_generated", "rustc-dep-of-std", "serde", "std"))' -C metadata=4b295667124b9dc6 -C extra-filename=-4b295667124b9dc6 --out-dir /tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.qhGiLVvQuR/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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.qhGiLVvQuR/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 446s warning: `bitflags` (lib) generated 1 warning (1 duplicate) 446s Compiling futures-task v0.3.31 446s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=futures_task CARGO_MANIFEST_DIR=/tmp/tmp.qhGiLVvQuR/registry/futures-task-0.3.31 CARGO_MANIFEST_PATH=/tmp/tmp.qhGiLVvQuR/registry/futures-task-0.3.31/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='Tools for working with tasks. 446s ' CARGO_PKG_HOMEPAGE='https://rust-lang.github.io/futures-rs' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=futures-task CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/futures-rs' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=0.3.31 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=31 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.qhGiLVvQuR/target/debug/deps rustc --crate-name futures_task --edition=2018 /tmp/tmp.qhGiLVvQuR/registry/futures-task-0.3.31/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --warn=unreachable_pub --warn=unexpected_cfgs --warn=single_use_lifetimes --warn=rust_2018_idioms --warn=missing_debug_implementations --check-cfg 'cfg(futures_sanitizer)' --cfg 'feature="alloc"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "cfg-target-has-atomic", "default", "std", "unstable"))' -C metadata=47c3a7d17767e18f -C extra-filename=-47c3a7d17767e18f --out-dir /tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.qhGiLVvQuR/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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.qhGiLVvQuR/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 447s warning: `futures-task` (lib) generated 1 warning (1 duplicate) 447s Compiling pin-utils v0.1.0 447s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=pin_utils CARGO_MANIFEST_DIR=/tmp/tmp.qhGiLVvQuR/registry/pin-utils-0.1.0 CARGO_MANIFEST_PATH=/tmp/tmp.qhGiLVvQuR/registry/pin-utils-0.1.0/Cargo.toml CARGO_PKG_AUTHORS='Josef Brandl ' CARGO_PKG_DESCRIPTION='Utilities for pinning 447s ' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=pin-utils CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang-nursery/pin-utils' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.1.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.qhGiLVvQuR/target/debug/deps rustc --crate-name pin_utils --edition=2018 /tmp/tmp.qhGiLVvQuR/registry/pin-utils-0.1.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=9646380a39f6bb39 -C extra-filename=-9646380a39f6bb39 --out-dir /tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.qhGiLVvQuR/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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.qhGiLVvQuR/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 447s warning: `pin-utils` (lib) generated 1 warning (1 duplicate) 447s Compiling futures-sink v0.3.31 447s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=futures_sink CARGO_MANIFEST_DIR=/tmp/tmp.qhGiLVvQuR/registry/futures-sink-0.3.31 CARGO_MANIFEST_PATH=/tmp/tmp.qhGiLVvQuR/registry/futures-sink-0.3.31/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='The asynchronous `Sink` trait for the futures-rs library. 447s ' CARGO_PKG_HOMEPAGE='https://rust-lang.github.io/futures-rs' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=futures-sink CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/futures-rs' CARGO_PKG_RUST_VERSION=1.36 CARGO_PKG_VERSION=0.3.31 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=31 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.qhGiLVvQuR/target/debug/deps rustc --crate-name futures_sink --edition=2018 /tmp/tmp.qhGiLVvQuR/registry/futures-sink-0.3.31/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --warn=unreachable_pub --warn=unexpected_cfgs --warn=single_use_lifetimes --warn=rust_2018_idioms --warn=missing_debug_implementations --check-cfg 'cfg(futures_sanitizer)' --cfg 'feature="alloc"' --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "default", "std"))' -C metadata=2335bc9d806f8753 -C extra-filename=-2335bc9d806f8753 --out-dir /tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.qhGiLVvQuR/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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.qhGiLVvQuR/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 447s warning: `futures-sink` (lib) generated 1 warning (1 duplicate) 447s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=nix CARGO_MANIFEST_DIR=/tmp/tmp.qhGiLVvQuR/registry/nix-0.29.0 CARGO_MANIFEST_PATH=/tmp/tmp.qhGiLVvQuR/registry/nix-0.29.0/Cargo.toml CARGO_PKG_AUTHORS='The nix-rust Project Developers' CARGO_PKG_DESCRIPTION='Rust friendly bindings to *nix APIs' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=nix CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/nix-rust/nix' CARGO_PKG_RUST_VERSION=1.69 CARGO_PKG_VERSION=0.29.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=29 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.qhGiLVvQuR/target/debug/deps OUT_DIR=/tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/build/nix-8065280fb097eaec/out rustc --crate-name nix --edition=2021 /tmp/tmp.qhGiLVvQuR/registry/nix-0.29.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="feature"' --cfg 'feature="memoffset"' --cfg 'feature="socket"' --cfg 'feature="uio"' --cfg 'feature="user"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("acct", "aio", "default", "dir", "env", "event", "fanotify", "feature", "fs", "hostname", "inotify", "ioctl", "kmod", "memoffset", "mman", "mount", "mqueue", "net", "personality", "pin-utils", "poll", "process", "pthread", "ptrace", "quota", "reboot", "resource", "sched", "signal", "socket", "term", "time", "ucontext", "uio", "user", "zerocopy"))' -C metadata=1c06771599af3024 -C extra-filename=-1c06771599af3024 --out-dir /tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.qhGiLVvQuR/target/debug/deps --extern bitflags=/tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/deps/libbitflags-4b295667124b9dc6.rmeta --extern cfg_if=/tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/deps/libcfg_if-ff3ff84a061de73f.rmeta --extern libc=/tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/deps/liblibc-cf2521928ac070dc.rmeta --extern memoffset=/tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/deps/libmemoffset-2f432c32070b84ca.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.qhGiLVvQuR/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain --cfg linux --cfg linux_android --check-cfg 'cfg(android)' --check-cfg 'cfg(dragonfly)' --check-cfg 'cfg(ios)' --check-cfg 'cfg(freebsd)' --check-cfg 'cfg(illumos)' --check-cfg 'cfg(linux)' --check-cfg 'cfg(macos)' --check-cfg 'cfg(netbsd)' --check-cfg 'cfg(openbsd)' --check-cfg 'cfg(solaris)' --check-cfg 'cfg(watchos)' --check-cfg 'cfg(tvos)' --check-cfg 'cfg(visionos)' --check-cfg 'cfg(apple_targets)' --check-cfg 'cfg(bsd)' --check-cfg 'cfg(bsd_without_apple)' --check-cfg 'cfg(linux_android)' --check-cfg 'cfg(freebsdlike)' --check-cfg 'cfg(netbsdlike)' --check-cfg 'cfg(solarish)' --check-cfg 'cfg(apple_targets)' --check-cfg 'cfg(bsd)' --check-cfg 'cfg(bsd_without_apple)' --check-cfg 'cfg(linux_android)' --check-cfg 'cfg(freebsdlike)' --check-cfg 'cfg(netbsdlike)' --check-cfg 'cfg(solarish)' --check-cfg 'cfg(fbsd14)' --check-cfg 'cfg(qemu)'` 447s warning: elided lifetime has a name 447s --> /usr/share/cargo/registry/nix-0.29.0/src/sys/socket/sockopt.rs:1577:34 447s | 447s 1576 | impl<'a> Set<'a, OsString> for SetOsString<'a> { 447s | -- lifetime `'a` declared here 447s 1577 | fn new(val: &'a OsString) -> SetOsString { 447s | ^^^^^^^^^^^ this elided lifetime gets resolved as `'a` 447s | 447s = note: `#[warn(elided_named_lifetimes)]` on by default 447s 447s warning: struct `GetU8` is never constructed 447s --> /usr/share/cargo/registry/nix-0.29.0/src/sys/socket/sockopt.rs:1441:8 447s | 447s 1441 | struct GetU8 { 447s | ^^^^^ 447s | 447s = note: `#[warn(dead_code)]` on by default 447s 447s warning: struct `SetU8` is never constructed 447s --> /usr/share/cargo/registry/nix-0.29.0/src/sys/socket/sockopt.rs:1473:8 447s | 447s 1473 | struct SetU8 { 447s | ^^^^^ 447s 447s warning: struct `GetCString` is never constructed 447s --> /usr/share/cargo/registry/nix-0.29.0/src/sys/socket/sockopt.rs:1593:8 447s | 447s 1593 | struct GetCString> { 447s | ^^^^^^^^^^ 447s 447s Compiling futures-util v0.3.31 447s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=futures_util CARGO_MANIFEST_DIR=/tmp/tmp.qhGiLVvQuR/registry/futures-util-0.3.31 CARGO_MANIFEST_PATH=/tmp/tmp.qhGiLVvQuR/registry/futures-util-0.3.31/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='Common utilities and extension traits for the futures-rs library. 447s ' CARGO_PKG_HOMEPAGE='https://rust-lang.github.io/futures-rs' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=futures-util CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/futures-rs' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=0.3.31 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=31 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.qhGiLVvQuR/target/debug/deps rustc --crate-name futures_util --edition=2018 /tmp/tmp.qhGiLVvQuR/registry/futures-util-0.3.31/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --warn=unreachable_pub --warn=unexpected_cfgs --warn=single_use_lifetimes --warn=rust_2018_idioms --warn=missing_debug_implementations --check-cfg 'cfg(futures_sanitizer)' --cfg 'feature="alloc"' --cfg 'feature="async-await"' --cfg 'feature="async-await-macro"' --cfg 'feature="default"' --cfg 'feature="futures-macro"' --cfg 'feature="futures-sink"' --cfg 'feature="sink"' --cfg 'feature="slab"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "async-await", "async-await-macro", "bilock", "channel", "default", "futures-channel", "futures-io", "futures-macro", "futures-sink", "io", "memchr", "sink", "slab", "std", "unstable", "write-all-vectored"))' -C metadata=23beed03671fe7d3 -C extra-filename=-23beed03671fe7d3 --out-dir /tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.qhGiLVvQuR/target/debug/deps --extern futures_core=/tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/deps/libfutures_core-8d305950da6bf5c8.rmeta --extern futures_macro=/tmp/tmp.qhGiLVvQuR/target/debug/deps/libfutures_macro-4cace2739cb7abd5.so --extern futures_sink=/tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/deps/libfutures_sink-2335bc9d806f8753.rmeta --extern futures_task=/tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/deps/libfutures_task-47c3a7d17767e18f.rmeta --extern pin_project_lite=/tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/deps/libpin_project_lite-5dc815523e98d889.rmeta --extern pin_utils=/tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/deps/libpin_utils-9646380a39f6bb39.rmeta --extern slab=/tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/deps/libslab-36320af34be0827b.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.qhGiLVvQuR/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 448s warning: unexpected `cfg` condition value: `compat` 448s --> /usr/share/cargo/registry/futures-util-0.3.31/src/lib.rs:308:7 448s | 448s 308 | #[cfg(feature = "compat")] 448s | ^^^^^^^^^^^^^^^^^^ 448s | 448s = note: expected values for `feature` are: `alloc`, `async-await`, `async-await-macro`, `bilock`, `channel`, `default`, `futures-channel`, `futures-io`, `futures-macro`, `futures-sink`, `io`, `memchr`, `sink`, `slab`, `std`, `unstable`, and `write-all-vectored` 448s = help: consider adding `compat` as a feature in `Cargo.toml` 448s = note: see for more information about checking conditional configuration 448s = note: requested on the command line with `-W unexpected-cfgs` 448s 448s warning: unexpected `cfg` condition value: `compat` 448s --> /usr/share/cargo/registry/futures-util-0.3.31/src/future/try_future/mod.rs:6:7 448s | 448s 6 | #[cfg(feature = "compat")] 448s | ^^^^^^^^^^^^^^^^^^ 448s | 448s = note: expected values for `feature` are: `alloc`, `async-await`, `async-await-macro`, `bilock`, `channel`, `default`, `futures-channel`, `futures-io`, `futures-macro`, `futures-sink`, `io`, `memchr`, `sink`, `slab`, `std`, `unstable`, and `write-all-vectored` 448s = help: consider adding `compat` as a feature in `Cargo.toml` 448s = note: see for more information about checking conditional configuration 448s 448s warning: unexpected `cfg` condition value: `compat` 448s --> /usr/share/cargo/registry/futures-util-0.3.31/src/future/try_future/mod.rs:580:11 448s | 448s 580 | #[cfg(feature = "compat")] 448s | ^^^^^^^^^^^^^^^^^^ 448s | 448s = note: expected values for `feature` are: `alloc`, `async-await`, `async-await-macro`, `bilock`, `channel`, `default`, `futures-channel`, `futures-io`, `futures-macro`, `futures-sink`, `io`, `memchr`, `sink`, `slab`, `std`, `unstable`, and `write-all-vectored` 448s = help: consider adding `compat` as a feature in `Cargo.toml` 448s = note: see for more information about checking conditional configuration 448s 448s warning: unexpected `cfg` condition value: `compat` 448s --> /usr/share/cargo/registry/futures-util-0.3.31/src/stream/try_stream/mod.rs:6:7 448s | 448s 6 | #[cfg(feature = "compat")] 448s | ^^^^^^^^^^^^^^^^^^ 448s | 448s = note: expected values for `feature` are: `alloc`, `async-await`, `async-await-macro`, `bilock`, `channel`, `default`, `futures-channel`, `futures-io`, `futures-macro`, `futures-sink`, `io`, `memchr`, `sink`, `slab`, `std`, `unstable`, and `write-all-vectored` 448s = help: consider adding `compat` as a feature in `Cargo.toml` 448s = note: see for more information about checking conditional configuration 448s 448s warning: unexpected `cfg` condition value: `compat` 448s --> /usr/share/cargo/registry/futures-util-0.3.31/src/stream/try_stream/mod.rs:1154:11 448s | 448s 1154 | #[cfg(feature = "compat")] 448s | ^^^^^^^^^^^^^^^^^^ 448s | 448s = note: expected values for `feature` are: `alloc`, `async-await`, `async-await-macro`, `bilock`, `channel`, `default`, `futures-channel`, `futures-io`, `futures-macro`, `futures-sink`, `io`, `memchr`, `sink`, `slab`, `std`, `unstable`, and `write-all-vectored` 448s = help: consider adding `compat` as a feature in `Cargo.toml` 448s = note: see for more information about checking conditional configuration 448s 448s warning: unexpected `cfg` condition value: `compat` 448s --> /usr/share/cargo/registry/futures-util-0.3.31/src/sink/mod.rs:15:7 448s | 448s 15 | #[cfg(feature = "compat")] 448s | ^^^^^^^^^^^^^^^^^^ 448s | 448s = note: expected values for `feature` are: `alloc`, `async-await`, `async-await-macro`, `bilock`, `channel`, `default`, `futures-channel`, `futures-io`, `futures-macro`, `futures-sink`, `io`, `memchr`, `sink`, `slab`, `std`, `unstable`, and `write-all-vectored` 448s = help: consider adding `compat` as a feature in `Cargo.toml` 448s = note: see for more information about checking conditional configuration 448s 448s warning: unexpected `cfg` condition value: `compat` 448s --> /usr/share/cargo/registry/futures-util-0.3.31/src/sink/mod.rs:291:11 448s | 448s 291 | #[cfg(feature = "compat")] 448s | ^^^^^^^^^^^^^^^^^^ 448s | 448s = note: expected values for `feature` are: `alloc`, `async-await`, `async-await-macro`, `bilock`, `channel`, `default`, `futures-channel`, `futures-io`, `futures-macro`, `futures-sink`, `io`, `memchr`, `sink`, `slab`, `std`, `unstable`, and `write-all-vectored` 448s = help: consider adding `compat` as a feature in `Cargo.toml` 448s = note: see for more information about checking conditional configuration 448s 448s warning: unexpected `cfg` condition value: `compat` 448s --> /usr/share/cargo/registry/futures-util-0.3.31/src/task/spawn.rs:3:7 448s | 448s 3 | #[cfg(feature = "compat")] 448s | ^^^^^^^^^^^^^^^^^^ 448s | 448s = note: expected values for `feature` are: `alloc`, `async-await`, `async-await-macro`, `bilock`, `channel`, `default`, `futures-channel`, `futures-io`, `futures-macro`, `futures-sink`, `io`, `memchr`, `sink`, `slab`, `std`, `unstable`, and `write-all-vectored` 448s = help: consider adding `compat` as a feature in `Cargo.toml` 448s = note: see for more information about checking conditional configuration 448s 448s warning: unexpected `cfg` condition value: `compat` 448s --> /usr/share/cargo/registry/futures-util-0.3.31/src/task/spawn.rs:92:11 448s | 448s 92 | #[cfg(feature = "compat")] 448s | ^^^^^^^^^^^^^^^^^^ 448s | 448s = note: expected values for `feature` are: `alloc`, `async-await`, `async-await-macro`, `bilock`, `channel`, `default`, `futures-channel`, `futures-io`, `futures-macro`, `futures-sink`, `io`, `memchr`, `sink`, `slab`, `std`, `unstable`, and `write-all-vectored` 448s = help: consider adding `compat` as a feature in `Cargo.toml` 448s = note: see for more information about checking conditional configuration 448s 448s warning: `nix` (lib) generated 5 warnings (1 duplicate) 448s Compiling tracing v0.1.40 448s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=tracing CARGO_MANIFEST_DIR=/tmp/tmp.qhGiLVvQuR/registry/tracing-0.1.40 CARGO_MANIFEST_PATH=/tmp/tmp.qhGiLVvQuR/registry/tracing-0.1.40/Cargo.toml CARGO_PKG_AUTHORS='Eliza Weisman :Tokio Contributors ' CARGO_PKG_DESCRIPTION='Application-level tracing for Rust. 448s ' CARGO_PKG_HOMEPAGE='https://tokio.rs' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=tracing CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/tokio-rs/tracing' CARGO_PKG_RUST_VERSION=1.56.0 CARGO_PKG_VERSION=0.1.40 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=40 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.qhGiLVvQuR/target/debug/deps rustc --crate-name tracing --edition=2018 /tmp/tmp.qhGiLVvQuR/registry/tracing-0.1.40/src/lib.rs --error-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="attributes"' --cfg 'feature="default"' --cfg 'feature="std"' --cfg 'feature="tracing-attributes"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("async-await", "attributes", "default", "log", "log-always", "max_level_debug", "max_level_error", "max_level_info", "max_level_off", "max_level_trace", "max_level_warn", "release_max_level_debug", "release_max_level_error", "release_max_level_info", "release_max_level_off", "release_max_level_trace", "release_max_level_warn", "std", "tracing-attributes"))' -C metadata=5f8a2432d30b4ef1 -C extra-filename=-5f8a2432d30b4ef1 --out-dir /tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.qhGiLVvQuR/target/debug/deps --extern pin_project_lite=/tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/deps/libpin_project_lite-5dc815523e98d889.rmeta --extern tracing_attributes=/tmp/tmp.qhGiLVvQuR/target/debug/deps/libtracing_attributes-7f00f49c1aac99bb.so --extern tracing_core=/tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/deps/libtracing_core-4c8af7279fad1469.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.qhGiLVvQuR/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 448s warning: lint `private_in_public` has been removed: replaced with another group of lints, see RFC for more information 448s --> /usr/share/cargo/registry/tracing-0.1.40/src/lib.rs:932:5 448s | 448s 932 | private_in_public, 448s | ^^^^^^^^^^^^^^^^^ 448s | 448s = note: `#[warn(renamed_and_removed_lints)]` on by default 448s 448s warning: `tracing` (lib) generated 2 warnings (1 duplicate) 448s Compiling zbus_names v3.0.0 448s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=zbus_names CARGO_MANIFEST_DIR=/tmp/tmp.qhGiLVvQuR/registry/zbus_names-3.0.0 CARGO_MANIFEST_PATH=/tmp/tmp.qhGiLVvQuR/registry/zbus_names-3.0.0/Cargo.toml CARGO_PKG_AUTHORS='Zeeshan Ali Khan ' CARGO_PKG_DESCRIPTION='A collection of D-Bus bus names types' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=zbus_names CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dbus2/zbus/' CARGO_PKG_RUST_VERSION=1.75 CARGO_PKG_VERSION=3.0.0 CARGO_PKG_VERSION_MAJOR=3 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.qhGiLVvQuR/target/debug/deps rustc --crate-name zbus_names --edition=2021 /tmp/tmp.qhGiLVvQuR/registry/zbus_names-3.0.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=68f942ce83c6099a -C extra-filename=-68f942ce83c6099a --out-dir /tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.qhGiLVvQuR/target/debug/deps --extern serde=/tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/deps/libserde-0e7dff716e38da0d.rmeta --extern static_assertions=/tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/deps/libstatic_assertions-18df01cc327facaa.rmeta --extern zvariant=/tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/deps/libzvariant-f63ab59735f855c5.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.qhGiLVvQuR/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 448s warning: `zbus_names` (lib) generated 1 warning (1 duplicate) 448s Compiling async-broadcast v0.7.1 448s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=async_broadcast CARGO_MANIFEST_DIR=/tmp/tmp.qhGiLVvQuR/registry/async-broadcast-0.7.1 CARGO_MANIFEST_PATH=/tmp/tmp.qhGiLVvQuR/registry/async-broadcast-0.7.1/Cargo.toml CARGO_PKG_AUTHORS='Stjepan Glavina :Yoshua Wuyts :Zeeshan Ali Khan ' CARGO_PKG_DESCRIPTION='Async broadcast channels' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=async-broadcast CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/smol-rs/async-broadcast' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.7.1 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=7 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.qhGiLVvQuR/target/debug/deps rustc --crate-name async_broadcast --edition=2018 /tmp/tmp.qhGiLVvQuR/registry/async-broadcast-0.7.1/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=852b859fbdd9a4f4 -C extra-filename=-852b859fbdd9a4f4 --out-dir /tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.qhGiLVvQuR/target/debug/deps --extern event_listener=/tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/deps/libevent_listener-93bdad7496d4853a.rmeta --extern event_listener_strategy=/tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/deps/libevent_listener_strategy-c155ba63305d40fd.rmeta --extern futures_core=/tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/deps/libfutures_core-8d305950da6bf5c8.rmeta --extern pin_project_lite=/tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/deps/libpin_project_lite-5dc815523e98d889.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.qhGiLVvQuR/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 448s warning: `async-broadcast` (lib) generated 1 warning (1 duplicate) 448s Compiling rand v0.8.5 448s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=rand CARGO_MANIFEST_DIR=/tmp/tmp.qhGiLVvQuR/registry/rand-0.8.5 CARGO_MANIFEST_PATH=/tmp/tmp.qhGiLVvQuR/registry/rand-0.8.5/Cargo.toml CARGO_PKG_AUTHORS='The Rand Project Developers:The Rust Project Developers' CARGO_PKG_DESCRIPTION='Random number generators and other randomness functionality. 448s ' CARGO_PKG_HOMEPAGE='https://rust-random.github.io/book' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=rand CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-random/rand' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.8.5 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=8 CARGO_PKG_VERSION_PATCH=5 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.qhGiLVvQuR/target/debug/deps rustc --crate-name rand --edition=2018 /tmp/tmp.qhGiLVvQuR/registry/rand-0.8.5/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="alloc"' --cfg 'feature="default"' --cfg 'feature="getrandom"' --cfg 'feature="libc"' --cfg 'feature="rand_chacha"' --cfg 'feature="std"' --cfg 'feature="std_rng"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "default", "getrandom", "libc", "log", "min_const_gen", "nightly", "rand_chacha", "serde", "serde1", "small_rng", "std", "std_rng"))' -C metadata=da2a195293a4eb5f -C extra-filename=-da2a195293a4eb5f --out-dir /tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.qhGiLVvQuR/target/debug/deps --extern libc=/tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/deps/liblibc-cf2521928ac070dc.rmeta --extern rand_chacha=/tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/deps/librand_chacha-dd56c23de683d750.rmeta --extern rand_core=/tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/deps/librand_core-3c7246ca3f419bbc.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.qhGiLVvQuR/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 449s warning: unexpected `cfg` condition value: `simd_support` 449s --> /usr/share/cargo/registry/rand-0.8.5/src/lib.rs:52:13 449s | 449s 52 | #![cfg_attr(feature = "simd_support", feature(stdsimd))] 449s | ^^^^^^^^^^^^^^^^^^^^^^^^ 449s | 449s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 449s = help: consider adding `simd_support` as a feature in `Cargo.toml` 449s = note: see for more information about checking conditional configuration 449s = note: `#[warn(unexpected_cfgs)]` on by default 449s 449s warning: unexpected `cfg` condition name: `doc_cfg` 449s --> /usr/share/cargo/registry/rand-0.8.5/src/lib.rs:53:13 449s | 449s 53 | #![cfg_attr(doc_cfg, feature(doc_cfg))] 449s | ^^^^^^^ 449s | 449s = help: expected names are: `clippy`, `debug_assertions`, `doc`, `docsrs`, `doctest`, `feature`, `fmt_debug`, `miri`, `overflow_checks`, `panic`, `proc_macro`, `relocation_model`, `rustfmt`, `sanitize`, `sanitizer_cfi_generalize_pointers`, `sanitizer_cfi_normalize_integers`, `target_abi`, `target_arch`, `target_endian`, `target_env`, `target_family`, `target_feature`, `target_has_atomic`, `target_has_atomic_equal_alignment`, `target_has_atomic_load_store`, `target_os`, `target_pointer_width`, `target_thread_local`, `target_vendor`, `test`, `ub_checks`, `unix`, and `windows` 449s = help: consider using a Cargo feature instead 449s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 449s [lints.rust] 449s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 449s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 449s = note: see for more information about checking conditional configuration 449s 449s warning: unexpected `cfg` condition name: `doc_cfg` 449s --> /usr/share/cargo/registry/rand-0.8.5/src/lib.rs:181:12 449s | 449s 181 | #[cfg_attr(doc_cfg, doc(cfg(all(feature = "std", feature = "std_rng"))))] 449s | ^^^^^^^ 449s | 449s = help: consider using a Cargo feature instead 449s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 449s [lints.rust] 449s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 449s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 449s = note: see for more information about checking conditional configuration 449s 449s warning: unexpected `cfg` condition name: `doc_cfg` 449s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/mod.rs:116:12 449s | 449s 116 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 449s | ^^^^^^^ 449s | 449s = help: consider using a Cargo feature instead 449s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 449s [lints.rust] 449s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 449s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 449s = note: see for more information about checking conditional configuration 449s 449s warning: unexpected `cfg` condition name: `features` 449s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/distribution.rs:162:7 449s | 449s 162 | #[cfg(features = "nightly")] 449s | ^^^^^^^^^^^^^^^^^^^^ 449s | 449s = note: see for more information about checking conditional configuration 449s help: there is a config with a similar name and value 449s | 449s 162 | #[cfg(feature = "nightly")] 449s | ~~~~~~~ 449s 449s warning: unexpected `cfg` condition value: `simd_support` 449s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/float.rs:15:7 449s | 449s 15 | #[cfg(feature = "simd_support")] use packed_simd::*; 449s | ^^^^^^^^^^^^^^^^^^^^^^^^ 449s | 449s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 449s = help: consider adding `simd_support` as a feature in `Cargo.toml` 449s = note: see for more information about checking conditional configuration 449s 449s warning: unexpected `cfg` condition value: `simd_support` 449s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/float.rs:156:7 449s | 449s 156 | #[cfg(feature = "simd_support")] 449s | ^^^^^^^^^^^^^^^^^^^^^^^^ 449s | 449s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 449s = help: consider adding `simd_support` as a feature in `Cargo.toml` 449s = note: see for more information about checking conditional configuration 449s 449s warning: unexpected `cfg` condition value: `simd_support` 449s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/float.rs:158:7 449s | 449s 158 | #[cfg(feature = "simd_support")] 449s | ^^^^^^^^^^^^^^^^^^^^^^^^ 449s | 449s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 449s = help: consider adding `simd_support` as a feature in `Cargo.toml` 449s = note: see for more information about checking conditional configuration 449s 449s warning: unexpected `cfg` condition value: `simd_support` 449s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/float.rs:160:7 449s | 449s 160 | #[cfg(feature = "simd_support")] 449s | ^^^^^^^^^^^^^^^^^^^^^^^^ 449s | 449s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 449s = help: consider adding `simd_support` as a feature in `Cargo.toml` 449s = note: see for more information about checking conditional configuration 449s 449s warning: unexpected `cfg` condition value: `simd_support` 449s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/float.rs:162:7 449s | 449s 162 | #[cfg(feature = "simd_support")] 449s | ^^^^^^^^^^^^^^^^^^^^^^^^ 449s | 449s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 449s = help: consider adding `simd_support` as a feature in `Cargo.toml` 449s = note: see for more information about checking conditional configuration 449s 449s warning: unexpected `cfg` condition value: `simd_support` 449s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/float.rs:165:7 449s | 449s 165 | #[cfg(feature = "simd_support")] 449s | ^^^^^^^^^^^^^^^^^^^^^^^^ 449s | 449s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 449s = help: consider adding `simd_support` as a feature in `Cargo.toml` 449s = note: see for more information about checking conditional configuration 449s 449s warning: unexpected `cfg` condition value: `simd_support` 449s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/float.rs:167:7 449s | 449s 167 | #[cfg(feature = "simd_support")] 449s | ^^^^^^^^^^^^^^^^^^^^^^^^ 449s | 449s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 449s = help: consider adding `simd_support` as a feature in `Cargo.toml` 449s = note: see for more information about checking conditional configuration 449s 449s warning: unexpected `cfg` condition value: `simd_support` 449s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/float.rs:169:7 449s | 449s 169 | #[cfg(feature = "simd_support")] 449s | ^^^^^^^^^^^^^^^^^^^^^^^^ 449s | 449s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 449s = help: consider adding `simd_support` as a feature in `Cargo.toml` 449s = note: see for more information about checking conditional configuration 449s 449s warning: unexpected `cfg` condition value: `simd_support` 449s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/integer.rs:13:32 449s | 449s 13 | #[cfg(all(target_arch = "x86", feature = "simd_support"))] 449s | ^^^^^^^^^^^^^^^^^^^^^^^^ 449s | 449s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 449s = help: consider adding `simd_support` as a feature in `Cargo.toml` 449s = note: see for more information about checking conditional configuration 449s 449s warning: unexpected `cfg` condition value: `simd_support` 449s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/integer.rs:15:35 449s | 449s 15 | #[cfg(all(target_arch = "x86_64", feature = "simd_support"))] 449s | ^^^^^^^^^^^^^^^^^^^^^^^^ 449s | 449s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 449s = help: consider adding `simd_support` as a feature in `Cargo.toml` 449s = note: see for more information about checking conditional configuration 449s 449s warning: unexpected `cfg` condition value: `simd_support` 449s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/integer.rs:19:7 449s | 449s 19 | #[cfg(feature = "simd_support")] use packed_simd::*; 449s | ^^^^^^^^^^^^^^^^^^^^^^^^ 449s | 449s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 449s = help: consider adding `simd_support` as a feature in `Cargo.toml` 449s = note: see for more information about checking conditional configuration 449s 449s warning: unexpected `cfg` condition value: `simd_support` 449s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/integer.rs:112:7 449s | 449s 112 | #[cfg(feature = "simd_support")] 449s | ^^^^^^^^^^^^^^^^^^^^^^^^ 449s | 449s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 449s = help: consider adding `simd_support` as a feature in `Cargo.toml` 449s = note: see for more information about checking conditional configuration 449s 449s warning: unexpected `cfg` condition value: `simd_support` 449s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/integer.rs:142:7 449s | 449s 142 | #[cfg(feature = "simd_support")] 449s | ^^^^^^^^^^^^^^^^^^^^^^^^ 449s | 449s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 449s = help: consider adding `simd_support` as a feature in `Cargo.toml` 449s = note: see for more information about checking conditional configuration 449s 449s warning: unexpected `cfg` condition value: `simd_support` 449s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/integer.rs:144:7 449s | 449s 144 | #[cfg(feature = "simd_support")] 449s | ^^^^^^^^^^^^^^^^^^^^^^^^ 449s | 449s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 449s = help: consider adding `simd_support` as a feature in `Cargo.toml` 449s = note: see for more information about checking conditional configuration 449s 449s warning: unexpected `cfg` condition value: `simd_support` 449s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/integer.rs:146:7 449s | 449s 146 | #[cfg(feature = "simd_support")] 449s | ^^^^^^^^^^^^^^^^^^^^^^^^ 449s | 449s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 449s = help: consider adding `simd_support` as a feature in `Cargo.toml` 449s = note: see for more information about checking conditional configuration 449s 449s warning: unexpected `cfg` condition value: `simd_support` 449s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/integer.rs:148:7 449s | 449s 148 | #[cfg(feature = "simd_support")] 449s | ^^^^^^^^^^^^^^^^^^^^^^^^ 449s | 449s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 449s = help: consider adding `simd_support` as a feature in `Cargo.toml` 449s = note: see for more information about checking conditional configuration 449s 449s warning: unexpected `cfg` condition value: `simd_support` 449s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/integer.rs:150:7 449s | 449s 150 | #[cfg(feature = "simd_support")] 449s | ^^^^^^^^^^^^^^^^^^^^^^^^ 449s | 449s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 449s = help: consider adding `simd_support` as a feature in `Cargo.toml` 449s = note: see for more information about checking conditional configuration 449s 449s warning: unexpected `cfg` condition value: `simd_support` 449s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/integer.rs:152:7 449s | 449s 152 | #[cfg(feature = "simd_support")] 449s | ^^^^^^^^^^^^^^^^^^^^^^^^ 449s | 449s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 449s = help: consider adding `simd_support` as a feature in `Cargo.toml` 449s = note: see for more information about checking conditional configuration 449s 449s warning: unexpected `cfg` condition value: `simd_support` 449s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/integer.rs:155:5 449s | 449s 155 | feature = "simd_support", 449s | ^^^^^^^^^^^^^^^^^^^^^^^^ 449s | 449s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 449s = help: consider adding `simd_support` as a feature in `Cargo.toml` 449s = note: see for more information about checking conditional configuration 449s 449s warning: unexpected `cfg` condition value: `simd_support` 449s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:11:7 449s | 449s 11 | #[cfg(feature = "simd_support")] use packed_simd::*; 449s | ^^^^^^^^^^^^^^^^^^^^^^^^ 449s | 449s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 449s = help: consider adding `simd_support` as a feature in `Cargo.toml` 449s = note: see for more information about checking conditional configuration 449s 449s warning: unexpected `cfg` condition value: `simd_support` 449s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:144:7 449s | 449s 144 | #[cfg(feature = "simd_support")] 449s | ^^^^^^^^^^^^^^^^^^^^^^^^ 449s | 449s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 449s = help: consider adding `simd_support` as a feature in `Cargo.toml` 449s = note: see for more information about checking conditional configuration 449s 449s warning: unexpected `cfg` condition name: `std` 449s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:235:11 449s | 449s 235 | #[cfg(not(std))] 449s | ^^^ help: found config with similar value: `feature = "std"` 449s | 449s = help: consider using a Cargo feature instead 449s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 449s [lints.rust] 449s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(std)'] } 449s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(std)");` to the top of the `build.rs` 449s = note: see for more information about checking conditional configuration 449s 449s warning: unexpected `cfg` condition value: `simd_support` 449s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:363:7 449s | 449s 363 | #[cfg(feature = "simd_support")] 449s | ^^^^^^^^^^^^^^^^^^^^^^^^ 449s | 449s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 449s = help: consider adding `simd_support` as a feature in `Cargo.toml` 449s = note: see for more information about checking conditional configuration 449s 449s warning: unexpected `cfg` condition value: `simd_support` 449s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:423:7 449s | 449s 423 | #[cfg(feature="simd_support")] simd_impl! { f32x2, f32, m32x2, u32x2 } 449s | ^^^^^^^^^^^^^^^^^^^^^^ 449s | 449s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 449s = help: consider adding `simd_support` as a feature in `Cargo.toml` 449s = note: see for more information about checking conditional configuration 449s 449s warning: unexpected `cfg` condition value: `simd_support` 449s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:424:7 449s | 449s 424 | #[cfg(feature="simd_support")] simd_impl! { f32x4, f32, m32x4, u32x4 } 449s | ^^^^^^^^^^^^^^^^^^^^^^ 449s | 449s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 449s = help: consider adding `simd_support` as a feature in `Cargo.toml` 449s = note: see for more information about checking conditional configuration 449s 449s warning: unexpected `cfg` condition value: `simd_support` 449s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:425:7 449s | 449s 425 | #[cfg(feature="simd_support")] simd_impl! { f32x8, f32, m32x8, u32x8 } 449s | ^^^^^^^^^^^^^^^^^^^^^^ 449s | 449s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 449s = help: consider adding `simd_support` as a feature in `Cargo.toml` 449s = note: see for more information about checking conditional configuration 449s 449s warning: unexpected `cfg` condition value: `simd_support` 449s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:426:7 449s | 449s 426 | #[cfg(feature="simd_support")] simd_impl! { f32x16, f32, m32x16, u32x16 } 449s | ^^^^^^^^^^^^^^^^^^^^^^ 449s | 449s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 449s = help: consider adding `simd_support` as a feature in `Cargo.toml` 449s = note: see for more information about checking conditional configuration 449s 449s warning: unexpected `cfg` condition value: `simd_support` 449s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:427:7 449s | 449s 427 | #[cfg(feature="simd_support")] simd_impl! { f64x2, f64, m64x2, u64x2 } 449s | ^^^^^^^^^^^^^^^^^^^^^^ 449s | 449s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 449s = help: consider adding `simd_support` as a feature in `Cargo.toml` 449s = note: see for more information about checking conditional configuration 449s 449s warning: unexpected `cfg` condition value: `simd_support` 449s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:428:7 449s | 449s 428 | #[cfg(feature="simd_support")] simd_impl! { f64x4, f64, m64x4, u64x4 } 449s | ^^^^^^^^^^^^^^^^^^^^^^ 449s | 449s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 449s = help: consider adding `simd_support` as a feature in `Cargo.toml` 449s = note: see for more information about checking conditional configuration 449s 449s warning: unexpected `cfg` condition value: `simd_support` 449s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:429:7 449s | 449s 429 | #[cfg(feature="simd_support")] simd_impl! { f64x8, f64, m64x8, u64x8 } 449s | ^^^^^^^^^^^^^^^^^^^^^^ 449s | 449s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 449s = help: consider adding `simd_support` as a feature in `Cargo.toml` 449s = note: see for more information about checking conditional configuration 449s 449s warning: unexpected `cfg` condition name: `std` 449s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:291:19 449s | 449s 291 | #[cfg(not(std))] 449s | ^^^ help: found config with similar value: `feature = "std"` 449s ... 449s 359 | scalar_float_impl!(f32, u32); 449s | ---------------------------- in this macro invocation 449s | 449s = help: consider using a Cargo feature instead 449s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 449s [lints.rust] 449s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(std)'] } 449s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(std)");` to the top of the `build.rs` 449s = note: see for more information about checking conditional configuration 449s = note: this warning originates in the macro `scalar_float_impl` (in Nightly builds, run with -Z macro-backtrace for more info) 449s 449s warning: unexpected `cfg` condition name: `std` 449s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:291:19 449s | 449s 291 | #[cfg(not(std))] 449s | ^^^ help: found config with similar value: `feature = "std"` 449s ... 449s 360 | scalar_float_impl!(f64, u64); 449s | ---------------------------- in this macro invocation 449s | 449s = help: consider using a Cargo feature instead 449s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 449s [lints.rust] 449s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(std)'] } 449s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(std)");` to the top of the `build.rs` 449s = note: see for more information about checking conditional configuration 449s = note: this warning originates in the macro `scalar_float_impl` (in Nightly builds, run with -Z macro-backtrace for more info) 449s 449s warning: unexpected `cfg` condition name: `doc_cfg` 449s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/weighted_index.rs:80:12 449s | 449s 80 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 449s | ^^^^^^^ 449s | 449s = help: consider using a Cargo feature instead 449s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 449s [lints.rust] 449s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 449s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 449s = note: see for more information about checking conditional configuration 449s 449s warning: unexpected `cfg` condition name: `doc_cfg` 449s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/weighted_index.rs:429:12 449s | 449s 429 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 449s | ^^^^^^^ 449s | 449s = help: consider using a Cargo feature instead 449s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 449s [lints.rust] 449s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 449s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 449s = note: see for more information about checking conditional configuration 449s 449s warning: unexpected `cfg` condition value: `simd_support` 449s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/uniform.rs:121:7 449s | 449s 121 | #[cfg(feature = "simd_support")] use packed_simd::*; 449s | ^^^^^^^^^^^^^^^^^^^^^^^^ 449s | 449s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 449s = help: consider adding `simd_support` as a feature in `Cargo.toml` 449s = note: see for more information about checking conditional configuration 449s 449s warning: unexpected `cfg` condition value: `simd_support` 449s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/uniform.rs:572:7 449s | 449s 572 | #[cfg(feature = "simd_support")] 449s | ^^^^^^^^^^^^^^^^^^^^^^^^ 449s | 449s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 449s = help: consider adding `simd_support` as a feature in `Cargo.toml` 449s = note: see for more information about checking conditional configuration 449s 449s warning: unexpected `cfg` condition value: `simd_support` 449s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/uniform.rs:679:7 449s | 449s 679 | #[cfg(feature = "simd_support")] 449s | ^^^^^^^^^^^^^^^^^^^^^^^^ 449s | 449s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 449s = help: consider adding `simd_support` as a feature in `Cargo.toml` 449s = note: see for more information about checking conditional configuration 449s 449s warning: unexpected `cfg` condition value: `simd_support` 449s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/uniform.rs:687:7 449s | 449s 687 | #[cfg(feature = "simd_support")] 449s | ^^^^^^^^^^^^^^^^^^^^^^^^ 449s | 449s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 449s = help: consider adding `simd_support` as a feature in `Cargo.toml` 449s = note: see for more information about checking conditional configuration 449s 449s warning: unexpected `cfg` condition value: `simd_support` 449s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/uniform.rs:696:7 449s | 449s 696 | #[cfg(feature = "simd_support")] 449s | ^^^^^^^^^^^^^^^^^^^^^^^^ 449s | 449s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 449s = help: consider adding `simd_support` as a feature in `Cargo.toml` 449s = note: see for more information about checking conditional configuration 449s 449s warning: unexpected `cfg` condition value: `simd_support` 449s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/uniform.rs:706:7 449s | 449s 706 | #[cfg(feature = "simd_support")] 449s | ^^^^^^^^^^^^^^^^^^^^^^^^ 449s | 449s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 449s = help: consider adding `simd_support` as a feature in `Cargo.toml` 449s = note: see for more information about checking conditional configuration 449s 449s warning: unexpected `cfg` condition value: `simd_support` 449s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/uniform.rs:1001:7 449s | 449s 1001 | #[cfg(feature = "simd_support")] 449s | ^^^^^^^^^^^^^^^^^^^^^^^^ 449s | 449s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 449s = help: consider adding `simd_support` as a feature in `Cargo.toml` 449s = note: see for more information about checking conditional configuration 449s 449s warning: unexpected `cfg` condition value: `simd_support` 449s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/uniform.rs:1003:7 449s | 449s 1003 | #[cfg(feature = "simd_support")] 449s | ^^^^^^^^^^^^^^^^^^^^^^^^ 449s | 449s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 449s = help: consider adding `simd_support` as a feature in `Cargo.toml` 449s = note: see for more information about checking conditional configuration 449s 449s warning: unexpected `cfg` condition value: `simd_support` 449s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/uniform.rs:1005:7 449s | 449s 1005 | #[cfg(feature = "simd_support")] 449s | ^^^^^^^^^^^^^^^^^^^^^^^^ 449s | 449s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 449s = help: consider adding `simd_support` as a feature in `Cargo.toml` 449s = note: see for more information about checking conditional configuration 449s 449s warning: unexpected `cfg` condition value: `simd_support` 449s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/uniform.rs:1007:7 449s | 449s 1007 | #[cfg(feature = "simd_support")] 449s | ^^^^^^^^^^^^^^^^^^^^^^^^ 449s | 449s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 449s = help: consider adding `simd_support` as a feature in `Cargo.toml` 449s = note: see for more information about checking conditional configuration 449s 449s warning: unexpected `cfg` condition value: `simd_support` 449s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/uniform.rs:1010:7 449s | 449s 1010 | #[cfg(feature = "simd_support")] 449s | ^^^^^^^^^^^^^^^^^^^^^^^^ 449s | 449s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 449s = help: consider adding `simd_support` as a feature in `Cargo.toml` 449s = note: see for more information about checking conditional configuration 449s 449s warning: unexpected `cfg` condition value: `simd_support` 449s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/uniform.rs:1012:7 449s | 449s 1012 | #[cfg(feature = "simd_support")] 449s | ^^^^^^^^^^^^^^^^^^^^^^^^ 449s | 449s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 449s = help: consider adding `simd_support` as a feature in `Cargo.toml` 449s = note: see for more information about checking conditional configuration 449s 449s warning: unexpected `cfg` condition value: `simd_support` 449s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/uniform.rs:1014:7 449s | 449s 1014 | #[cfg(feature = "simd_support")] 449s | ^^^^^^^^^^^^^^^^^^^^^^^^ 449s | 449s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 449s = help: consider adding `simd_support` as a feature in `Cargo.toml` 449s = note: see for more information about checking conditional configuration 449s 449s warning: unexpected `cfg` condition name: `doc_cfg` 449s --> /usr/share/cargo/registry/rand-0.8.5/src/rng.rs:395:12 449s | 449s 395 | #[cfg_attr(doc_cfg, doc(cfg(feature = "min_const_gen")))] 449s | ^^^^^^^ 449s | 449s = help: consider using a Cargo feature instead 449s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 449s [lints.rust] 449s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 449s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 449s = note: see for more information about checking conditional configuration 449s 449s warning: unexpected `cfg` condition name: `doc_cfg` 449s --> /usr/share/cargo/registry/rand-0.8.5/src/rngs/mod.rs:99:12 449s | 449s 99 | #[cfg_attr(doc_cfg, doc(cfg(feature = "std")))] 449s | ^^^^^^^ 449s | 449s = help: consider using a Cargo feature instead 449s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 449s [lints.rust] 449s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 449s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 449s = note: see for more information about checking conditional configuration 449s 449s warning: unexpected `cfg` condition name: `doc_cfg` 449s --> /usr/share/cargo/registry/rand-0.8.5/src/rngs/mod.rs:118:12 449s | 449s 118 | #[cfg_attr(doc_cfg, doc(cfg(feature = "getrandom")))] 449s | ^^^^^^^ 449s | 449s = help: consider using a Cargo feature instead 449s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 449s [lints.rust] 449s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 449s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 449s = note: see for more information about checking conditional configuration 449s 449s warning: unexpected `cfg` condition name: `doc_cfg` 449s --> /usr/share/cargo/registry/rand-0.8.5/src/rngs/std.rs:32:12 449s | 449s 32 | #[cfg_attr(doc_cfg, doc(cfg(feature = "std_rng")))] 449s | ^^^^^^^ 449s | 449s = help: consider using a Cargo feature instead 449s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 449s [lints.rust] 449s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 449s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 449s = note: see for more information about checking conditional configuration 449s 449s warning: unexpected `cfg` condition name: `doc_cfg` 449s --> /usr/share/cargo/registry/rand-0.8.5/src/rngs/thread.rs:60:12 449s | 449s 60 | #[cfg_attr(doc_cfg, doc(cfg(all(feature = "std", feature = "std_rng"))))] 449s | ^^^^^^^ 449s | 449s = help: consider using a Cargo feature instead 449s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 449s [lints.rust] 449s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 449s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 449s = note: see for more information about checking conditional configuration 449s 449s warning: unexpected `cfg` condition name: `doc_cfg` 449s --> /usr/share/cargo/registry/rand-0.8.5/src/rngs/thread.rs:87:12 449s | 449s 87 | #[cfg_attr(doc_cfg, doc(cfg(all(feature = "std", feature = "std_rng"))))] 449s | ^^^^^^^ 449s | 449s = help: consider using a Cargo feature instead 449s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 449s [lints.rust] 449s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 449s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 449s = note: see for more information about checking conditional configuration 449s 449s warning: unexpected `cfg` condition name: `doc_cfg` 449s --> /usr/share/cargo/registry/rand-0.8.5/src/seq/mod.rs:29:12 449s | 449s 29 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 449s | ^^^^^^^ 449s | 449s = help: consider using a Cargo feature instead 449s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 449s [lints.rust] 449s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 449s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 449s = note: see for more information about checking conditional configuration 449s 449s warning: unexpected `cfg` condition name: `doc_cfg` 449s --> /usr/share/cargo/registry/rand-0.8.5/src/seq/mod.rs:623:12 449s | 449s 623 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 449s | ^^^^^^^ 449s | 449s = help: consider using a Cargo feature instead 449s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 449s [lints.rust] 449s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 449s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 449s = note: see for more information about checking conditional configuration 449s 449s warning: unexpected `cfg` condition name: `doc_cfg` 449s --> /usr/share/cargo/registry/rand-0.8.5/src/seq/index.rs:276:12 449s | 449s 276 | #[cfg_attr(doc_cfg, doc(cfg(feature = "std")))] 449s | ^^^^^^^ 449s | 449s = help: consider using a Cargo feature instead 449s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 449s [lints.rust] 449s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 449s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 449s = note: see for more information about checking conditional configuration 449s 449s warning: unexpected `cfg` condition name: `doc_cfg` 449s --> /usr/share/cargo/registry/rand-0.8.5/src/seq/mod.rs:114:16 449s | 449s 114 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 449s | ^^^^^^^ 449s | 449s = help: consider using a Cargo feature instead 449s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 449s [lints.rust] 449s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 449s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 449s = note: see for more information about checking conditional configuration 449s 449s warning: unexpected `cfg` condition name: `doc_cfg` 449s --> /usr/share/cargo/registry/rand-0.8.5/src/seq/mod.rs:142:16 449s | 449s 142 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 449s | ^^^^^^^ 449s | 449s = help: consider using a Cargo feature instead 449s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 449s [lints.rust] 449s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 449s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 449s = note: see for more information about checking conditional configuration 449s 449s warning: unexpected `cfg` condition name: `doc_cfg` 449s --> /usr/share/cargo/registry/rand-0.8.5/src/seq/mod.rs:170:16 449s | 449s 170 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 449s | ^^^^^^^ 449s | 449s = help: consider using a Cargo feature instead 449s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 449s [lints.rust] 449s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 449s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 449s = note: see for more information about checking conditional configuration 449s 449s warning: unexpected `cfg` condition name: `doc_cfg` 449s --> /usr/share/cargo/registry/rand-0.8.5/src/seq/mod.rs:219:16 449s | 449s 219 | #[cfg_attr(doc_cfg, doc(cfg(feature = "std")))] 449s | ^^^^^^^ 449s | 449s = help: consider using a Cargo feature instead 449s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 449s [lints.rust] 449s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 449s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 449s = note: see for more information about checking conditional configuration 449s 449s warning: unexpected `cfg` condition name: `doc_cfg` 449s --> /usr/share/cargo/registry/rand-0.8.5/src/seq/mod.rs:465:16 449s | 449s 465 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 449s | ^^^^^^^ 449s | 449s = help: consider using a Cargo feature instead 449s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 449s [lints.rust] 449s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 449s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 449s = note: see for more information about checking conditional configuration 449s 449s warning: trait `Float` is never used 449s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:238:18 449s | 449s 238 | pub(crate) trait Float: Sized { 449s | ^^^^^ 449s | 449s = note: `#[warn(dead_code)]` on by default 449s 449s warning: associated items `lanes`, `extract`, and `replace` are never used 449s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:247:8 449s | 449s 245 | pub(crate) trait FloatAsSIMD: Sized { 449s | ----------- associated items in this trait 449s 246 | #[inline(always)] 449s 247 | fn lanes() -> usize { 449s | ^^^^^ 449s ... 449s 255 | fn extract(self, index: usize) -> Self { 449s | ^^^^^^^ 449s ... 449s 260 | fn replace(self, index: usize, new_value: Self) -> Self { 449s | ^^^^^^^ 449s 449s warning: method `all` is never used 449s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:268:8 449s | 449s 266 | pub(crate) trait BoolAsSIMD: Sized { 449s | ---------- method in this trait 449s 267 | fn any(self) -> bool; 449s 268 | fn all(self) -> bool; 449s | ^^^ 449s 449s warning: `rand` (lib) generated 70 warnings (1 duplicate) 449s Compiling sha1 v0.10.6 449s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=sha1 CARGO_MANIFEST_DIR=/tmp/tmp.qhGiLVvQuR/registry/sha1-0.10.6 CARGO_MANIFEST_PATH=/tmp/tmp.qhGiLVvQuR/registry/sha1-0.10.6/Cargo.toml CARGO_PKG_AUTHORS='RustCrypto Developers' CARGO_PKG_DESCRIPTION='SHA-1 hash function' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=sha1 CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/RustCrypto/hashes' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.10.6 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=10 CARGO_PKG_VERSION_PATCH=6 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.qhGiLVvQuR/target/debug/deps rustc --crate-name sha1 --edition=2018 /tmp/tmp.qhGiLVvQuR/registry/sha1-0.10.6/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("asm", "compress", "default", "force-soft", "loongarch64_asm", "oid", "sha1-asm", "std"))' -C metadata=7a229c14a1ac9b31 -C extra-filename=-7a229c14a1ac9b31 --out-dir /tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.qhGiLVvQuR/target/debug/deps --extern cfg_if=/tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/deps/libcfg_if-ff3ff84a061de73f.rmeta --extern digest=/tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/deps/libdigest-027272cf65436a63.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.qhGiLVvQuR/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 449s warning: `futures-util` (lib) generated 10 warnings (1 duplicate) 449s Compiling ordered-stream v0.2.0 449s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=ordered_stream CARGO_MANIFEST_DIR=/tmp/tmp.qhGiLVvQuR/registry/ordered-stream-0.2.0 CARGO_MANIFEST_PATH=/tmp/tmp.qhGiLVvQuR/registry/ordered-stream-0.2.0/Cargo.toml CARGO_PKG_AUTHORS='Daniel De Graaf :Zeeshan Ali Khan ' CARGO_PKG_DESCRIPTION='Streams that are ordered relative to external events' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=ordered-stream CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/danieldg/ordered-stream' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.2.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.qhGiLVvQuR/target/debug/deps rustc --crate-name ordered_stream --edition=2018 /tmp/tmp.qhGiLVvQuR/registry/ordered-stream-0.2.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=5d03c0a21a4bd5e4 -C extra-filename=-5d03c0a21a4bd5e4 --out-dir /tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.qhGiLVvQuR/target/debug/deps --extern futures_core=/tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/deps/libfutures_core-8d305950da6bf5c8.rmeta --extern pin_project_lite=/tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/deps/libpin_project_lite-5dc815523e98d889.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.qhGiLVvQuR/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 449s warning: `sha1` (lib) generated 1 warning (1 duplicate) 449s Compiling zbus_macros v4.4.0 449s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=zbus_macros CARGO_MANIFEST_DIR=/tmp/tmp.qhGiLVvQuR/registry/zbus_macros-4.4.0 CARGO_MANIFEST_PATH=/tmp/tmp.qhGiLVvQuR/registry/zbus_macros-4.4.0/Cargo.toml CARGO_PKG_AUTHORS='Marc-André Lureau :Zeeshan Ali Khan ' CARGO_PKG_DESCRIPTION='proc-macros for zbus' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=zbus_macros CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dbus2/zbus/' CARGO_PKG_RUST_VERSION=1.75 CARGO_PKG_VERSION=4.4.0 CARGO_PKG_VERSION_MAJOR=4 CARGO_PKG_VERSION_MINOR=4 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.qhGiLVvQuR/target/debug/deps rustc --crate-name zbus_macros --edition=2021 /tmp/tmp.qhGiLVvQuR/registry/zbus_macros-4.4.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type proc-macro --emit=dep-info,link -C prefer-dynamic -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=fbbb45642851aa97 -C extra-filename=-fbbb45642851aa97 --out-dir /tmp/tmp.qhGiLVvQuR/target/debug/deps -L dependency=/tmp/tmp.qhGiLVvQuR/target/debug/deps --extern proc_macro_crate=/tmp/tmp.qhGiLVvQuR/target/debug/deps/libproc_macro_crate-900b46bff7d8f3e2.rlib --extern proc_macro2=/tmp/tmp.qhGiLVvQuR/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rlib --extern quote=/tmp/tmp.qhGiLVvQuR/target/debug/deps/libquote-dc92c6f25ee0f0c6.rlib --extern syn=/tmp/tmp.qhGiLVvQuR/target/debug/deps/libsyn-0167beed9e699402.rlib --extern zvariant_utils=/tmp/tmp.qhGiLVvQuR/target/debug/deps/libzvariant_utils-555d90bad4acf190.rlib --extern proc_macro --cap-lints warn` 450s warning: `ordered-stream` (lib) generated 1 warning (1 duplicate) 450s Compiling async-trait v0.1.83 450s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=async_trait CARGO_MANIFEST_DIR=/tmp/tmp.qhGiLVvQuR/registry/async-trait-0.1.83 CARGO_MANIFEST_PATH=/tmp/tmp.qhGiLVvQuR/registry/async-trait-0.1.83/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='Type erasure for async trait methods' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=async-trait CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/async-trait' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=0.1.83 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=83 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.qhGiLVvQuR/target/debug/deps rustc --crate-name async_trait --edition=2021 /tmp/tmp.qhGiLVvQuR/registry/async-trait-0.1.83/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=e4c90cfd514ad223 -C extra-filename=-e4c90cfd514ad223 --out-dir /tmp/tmp.qhGiLVvQuR/target/debug/deps -L dependency=/tmp/tmp.qhGiLVvQuR/target/debug/deps --extern proc_macro2=/tmp/tmp.qhGiLVvQuR/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rlib --extern quote=/tmp/tmp.qhGiLVvQuR/target/debug/deps/libquote-dc92c6f25ee0f0c6.rlib --extern syn=/tmp/tmp.qhGiLVvQuR/target/debug/deps/libsyn-0167beed9e699402.rlib --extern proc_macro --cap-lints warn` 451s Compiling serde_repr v0.1.12 451s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=serde_repr CARGO_MANIFEST_DIR=/tmp/tmp.qhGiLVvQuR/registry/serde_repr-0.1.12 CARGO_MANIFEST_PATH=/tmp/tmp.qhGiLVvQuR/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.qhGiLVvQuR/target/debug/deps rustc --crate-name serde_repr --edition=2018 /tmp/tmp.qhGiLVvQuR/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=79727398b79ecac5 -C extra-filename=-79727398b79ecac5 --out-dir /tmp/tmp.qhGiLVvQuR/target/debug/deps -L dependency=/tmp/tmp.qhGiLVvQuR/target/debug/deps --extern proc_macro2=/tmp/tmp.qhGiLVvQuR/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rlib --extern quote=/tmp/tmp.qhGiLVvQuR/target/debug/deps/libquote-dc92c6f25ee0f0c6.rlib --extern syn=/tmp/tmp.qhGiLVvQuR/target/debug/deps/libsyn-0167beed9e699402.rlib --extern proc_macro --cap-lints warn` 452s Compiling xdg-home v1.3.0 452s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=xdg_home CARGO_MANIFEST_DIR=/tmp/tmp.qhGiLVvQuR/registry/xdg-home-1.3.0 CARGO_MANIFEST_PATH=/tmp/tmp.qhGiLVvQuR/registry/xdg-home-1.3.0/Cargo.toml CARGO_PKG_AUTHORS='Zeeshan Ali Khan ' CARGO_PKG_DESCRIPTION='The user'\''s home directory as per XDG Specification' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=xdg-home CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/zeenix/xdg-home' CARGO_PKG_RUST_VERSION=1.60 CARGO_PKG_VERSION=1.3.0 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.qhGiLVvQuR/target/debug/deps rustc --crate-name xdg_home --edition=2021 /tmp/tmp.qhGiLVvQuR/registry/xdg-home-1.3.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=4230920bfa085c8c -C extra-filename=-4230920bfa085c8c --out-dir /tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.qhGiLVvQuR/target/debug/deps --extern libc=/tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/deps/liblibc-cf2521928ac070dc.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.qhGiLVvQuR/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 452s warning: `xdg-home` (lib) generated 1 warning (1 duplicate) 452s Compiling hex v0.4.3 452s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=hex CARGO_MANIFEST_DIR=/tmp/tmp.qhGiLVvQuR/registry/hex-0.4.3 CARGO_MANIFEST_PATH=/tmp/tmp.qhGiLVvQuR/registry/hex-0.4.3/Cargo.toml CARGO_PKG_AUTHORS='KokaKiwi ' CARGO_PKG_DESCRIPTION='Encoding and decoding data into/from hexadecimal representation.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=hex CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/KokaKiwi/rust-hex' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.4.3 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=4 CARGO_PKG_VERSION_PATCH=3 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.qhGiLVvQuR/target/debug/deps rustc --crate-name hex --edition=2018 /tmp/tmp.qhGiLVvQuR/registry/hex-0.4.3/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="alloc"' --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "default", "serde", "std"))' -C metadata=d04eec135ea2b5a3 -C extra-filename=-d04eec135ea2b5a3 --out-dir /tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.qhGiLVvQuR/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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.qhGiLVvQuR/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 452s warning: `hex` (lib) generated 1 warning (1 duplicate) 452s Compiling futures-channel v0.3.31 452s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=futures_channel CARGO_MANIFEST_DIR=/tmp/tmp.qhGiLVvQuR/registry/futures-channel-0.3.31 CARGO_MANIFEST_PATH=/tmp/tmp.qhGiLVvQuR/registry/futures-channel-0.3.31/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='Channels for asynchronous communication using futures-rs. 452s ' CARGO_PKG_HOMEPAGE='https://rust-lang.github.io/futures-rs' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=futures-channel CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/futures-rs' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=0.3.31 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=31 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.qhGiLVvQuR/target/debug/deps rustc --crate-name futures_channel --edition=2018 /tmp/tmp.qhGiLVvQuR/registry/futures-channel-0.3.31/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --warn=unreachable_pub --warn=unexpected_cfgs --warn=single_use_lifetimes --warn=rust_2018_idioms --warn=missing_debug_implementations --check-cfg 'cfg(futures_sanitizer)' --cfg 'feature="alloc"' --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "cfg-target-has-atomic", "default", "futures-sink", "sink", "std", "unstable"))' -C metadata=8ed485ea134c933c -C extra-filename=-8ed485ea134c933c --out-dir /tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.qhGiLVvQuR/target/debug/deps --extern futures_core=/tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/deps/libfutures_core-8d305950da6bf5c8.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.qhGiLVvQuR/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 452s warning: `futures-channel` (lib) generated 1 warning (1 duplicate) 453s Compiling zbus v4.4.0 453s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=zbus CARGO_MANIFEST_DIR=/tmp/tmp.qhGiLVvQuR/registry/zbus-4.4.0 CARGO_MANIFEST_PATH=/tmp/tmp.qhGiLVvQuR/registry/zbus-4.4.0/Cargo.toml CARGO_PKG_AUTHORS='Zeeshan Ali Khan ' CARGO_PKG_DESCRIPTION='API for D-Bus communication' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=zbus CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dbus2/zbus/' CARGO_PKG_RUST_VERSION=1.75 CARGO_PKG_VERSION=4.4.0 CARGO_PKG_VERSION_MAJOR=4 CARGO_PKG_VERSION_MINOR=4 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.qhGiLVvQuR/target/debug/deps rustc --crate-name zbus --edition=2021 /tmp/tmp.qhGiLVvQuR/registry/zbus-4.4.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("async-executor", "async-fs", "async-io", "async-lock", "async-task", "blocking", "bus-impl", "chrono", "default", "heapless", "option-as-array", "p2p", "time", "tokio", "tokio-vsock", "url", "uuid", "vsock"))' -C metadata=cbe98a51282d17de -C extra-filename=-cbe98a51282d17de --out-dir /tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.qhGiLVvQuR/target/debug/deps --extern async_broadcast=/tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/deps/libasync_broadcast-852b859fbdd9a4f4.rmeta --extern async_trait=/tmp/tmp.qhGiLVvQuR/target/debug/deps/libasync_trait-e4c90cfd514ad223.so --extern enumflags2=/tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/deps/libenumflags2-2867d32c4b4f39e8.rmeta --extern event_listener=/tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/deps/libevent_listener-93bdad7496d4853a.rmeta --extern futures_core=/tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/deps/libfutures_core-8d305950da6bf5c8.rmeta --extern futures_sink=/tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/deps/libfutures_sink-2335bc9d806f8753.rmeta --extern futures_util=/tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/deps/libfutures_util-23beed03671fe7d3.rmeta --extern hex=/tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/deps/libhex-d04eec135ea2b5a3.rmeta --extern nix=/tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/deps/libnix-1c06771599af3024.rmeta --extern ordered_stream=/tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/deps/libordered_stream-5d03c0a21a4bd5e4.rmeta --extern rand=/tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/deps/librand-da2a195293a4eb5f.rmeta --extern serde=/tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/deps/libserde-0e7dff716e38da0d.rmeta --extern serde_repr=/tmp/tmp.qhGiLVvQuR/target/debug/deps/libserde_repr-79727398b79ecac5.so --extern sha1=/tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/deps/libsha1-7a229c14a1ac9b31.rmeta --extern static_assertions=/tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/deps/libstatic_assertions-18df01cc327facaa.rmeta --extern tracing=/tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/deps/libtracing-5f8a2432d30b4ef1.rmeta --extern xdg_home=/tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/deps/libxdg_home-4230920bfa085c8c.rmeta --extern zbus_macros=/tmp/tmp.qhGiLVvQuR/target/debug/deps/libzbus_macros-fbbb45642851aa97.so --extern zbus_names=/tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/deps/libzbus_names-68f942ce83c6099a.rmeta --extern zvariant=/tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/deps/libzvariant-f63ab59735f855c5.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.qhGiLVvQuR/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 453s error: Either "async-io" (default) or "tokio" must be enabled. 453s --> /usr/share/cargo/registry/zbus-4.4.0/src/lib.rs:37:5 453s | 453s 37 | compile_error!("Either \"async-io\" (default) or \"tokio\" must be enabled."); 453s | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 453s 453s error[E0432]: unresolved import `async_lock` 453s --> /usr/share/cargo/registry/zbus-4.4.0/src/abstractions/async_lock.rs:2:16 453s | 453s 2 | pub(crate) use async_lock::{Mutex, RwLock, RwLockReadGuard, RwLockWriteGuard}; 453s | ^^^^^^^^^^ help: a similar path exists: `crate::async_lock` 453s | 453s = note: `use` statements changed in Rust 2018; read more at 453s 453s error[E0432]: unresolved import `async_io` 453s --> /usr/share/cargo/registry/zbus-4.4.0/src/address/transport/mod.rs:9:5 453s | 453s 9 | use async_io::Async; 453s | ^^^^^^^^ use of undeclared crate or module `async_io` 453s 453s error[E0432]: unresolved import `async_io` 453s --> /usr/share/cargo/registry/zbus-4.4.0/src/address/transport/tcp.rs:4:5 453s | 453s 4 | use async_io::Async; 453s | ^^^^^^^^ use of undeclared crate or module `async_io` 453s 453s error[E0432]: unresolved import `async_io` 453s --> /usr/share/cargo/registry/zbus-4.4.0/src/connection/builder.rs:2:5 453s | 453s 2 | use async_io::Async; 453s | ^^^^^^^^ use of undeclared crate or module `async_io` 453s 453s error[E0432]: unresolved import `async_io` 453s --> /usr/share/cargo/registry/zbus-4.4.0/src/connection/socket/tcp.rs:2:5 453s | 453s 2 | use async_io::Async; 453s | ^^^^^^^^ use of undeclared crate or module `async_io` 453s 453s error[E0432]: unresolved import `async_io` 453s --> /usr/share/cargo/registry/zbus-4.4.0/src/connection/socket/unix.rs:2:5 453s | 453s 2 | use async_io::Async; 453s | ^^^^^^^^ use of undeclared crate or module `async_io` 453s 453s error[E0432]: unresolved import `async_io` 453s --> /usr/share/cargo/registry/zbus-4.4.0/src/connection/socket/mod.rs:14:5 453s | 453s 14 | use async_io::Async; 453s | ^^^^^^^^ use of undeclared crate or module `async_io` 453s 453s error[E0432]: unresolved import `async_executor` 453s --> /usr/share/cargo/registry/zbus-4.4.0/src/abstractions/executor.rs:2:5 453s | 453s 2 | use async_executor::Executor as AsyncExecutor; 453s | ^^^^^^^^^^^^^^ use of undeclared crate or module `async_executor` 453s 453s error[E0432]: unresolved import `async_task` 453s --> /usr/share/cargo/registry/zbus-4.4.0/src/abstractions/executor.rs:4:5 453s | 453s 4 | use async_task::Task as AsyncTask; 453s | ^^^^^^^^^^ use of undeclared crate or module `async_task` 453s | 453s help: there is a crate or module with a similar name 453s | 453s 4 | use async_trait::Task as AsyncTask; 453s | ~~~~~~~~~~~ 453s 453s error[E0433]: failed to resolve: could not find `AsyncReadExt` in `futures_util` 453s --> /usr/share/cargo/registry/zbus-4.4.0/src/connection/socket/tcp.rs:17:29 453s | 453s 17 | match futures_util::AsyncReadExt::read(&mut self.as_ref(), buf).await { 453s | ^^^^^^^^^^^^ could not find `AsyncReadExt` in `futures_util` 453s | 453s note: found an item that was configured out 453s --> /usr/share/cargo/registry/futures-util-0.3.31/src/lib.rs:320:47 453s | 453s 320 | AsyncBufRead, AsyncBufReadExt, AsyncRead, AsyncReadExt, AsyncSeek, AsyncSeekExt, AsyncWrite, 453s | ^^^^^^^^^^^^ 453s note: the item is gated behind the `io` feature 453s --> /usr/share/cargo/registry/futures-util-0.3.31/src/lib.rs:316:7 453s | 453s 316 | #[cfg(feature = "io")] 453s | ^^^^^^^^^^^^^^ 453s 453s error[E0433]: failed to resolve: could not find `AsyncWriteExt` in `futures_util` 453s --> /usr/share/cargo/registry/zbus-4.4.0/src/connection/socket/tcp.rs:67:23 453s | 453s 67 | futures_util::AsyncWriteExt::write(&mut self.as_ref(), buf).await 453s | ^^^^^^^^^^^^^ could not find `AsyncWriteExt` in `futures_util` 453s | 453s note: found an item that was configured out 453s --> /usr/share/cargo/registry/futures-util-0.3.31/src/lib.rs:321:5 453s | 453s 321 | AsyncWriteExt, 453s | ^^^^^^^^^^^^^ 453s note: the item is gated behind the `io` feature 453s --> /usr/share/cargo/registry/futures-util-0.3.31/src/lib.rs:316:7 453s | 453s 316 | #[cfg(feature = "io")] 453s | ^^^^^^^^^^^^^^ 453s 453s error[E0433]: failed to resolve: use of undeclared crate or module `async_lock` 453s --> /usr/share/cargo/registry/zbus-4.4.0/src/abstractions/async_lock.rs:15:25 453s | 453s 15 | let semaphore = async_lock::Semaphore::new(permits); 453s | ^^^^^^^^^^ use of undeclared crate or module `async_lock` 453s 453s error[E0433]: failed to resolve: could not find `AsyncBufReadExt` in `futures_util` 453s --> /usr/share/cargo/registry/zbus-4.4.0/src/abstractions/file.rs:30:36 453s | 453s 30 | .map(futures_util::AsyncBufReadExt::lines) 453s | ^^^^^^^^^^^^^^^ could not find `AsyncBufReadExt` in `futures_util` 453s | 453s note: found an item that was configured out 453s --> /usr/share/cargo/registry/futures-util-0.3.31/src/lib.rs:320:19 453s | 453s 320 | AsyncBufRead, AsyncBufReadExt, AsyncRead, AsyncReadExt, AsyncSeek, AsyncSeekExt, AsyncWrite, 453s | ^^^^^^^^^^^^^^^ 453s note: the item is gated behind the `io` feature 453s --> /usr/share/cargo/registry/futures-util-0.3.31/src/lib.rs:316:7 453s | 453s 316 | #[cfg(feature = "io")] 453s | ^^^^^^^^^^^^^^ 453s 453s error[E0433]: failed to resolve: could not find `io` in `futures_util` 453s --> /usr/share/cargo/registry/zbus-4.4.0/src/abstractions/file.rs:18:36 453s | 453s 18 | pub struct FileLines(futures_util::io::Lines>); 453s | ^^ could not find `io` in `futures_util` 453s | 453s note: found an item that was configured out 453s --> /usr/share/cargo/registry/futures-util-0.3.31/src/lib.rs:315:9 453s | 453s 315 | pub mod io; 453s | ^^ 453s note: the item is gated behind the `io` feature 453s --> /usr/share/cargo/registry/futures-util-0.3.31/src/lib.rs:312:7 453s | 453s 312 | #[cfg(feature = "io")] 453s | ^^^^^^^^^^^^^^ 453s help: consider importing this module 453s | 453s 5 + use std::io; 453s | 453s help: if you import `io`, refer to it directly 453s | 453s 18 - pub struct FileLines(futures_util::io::Lines>); 453s 18 + pub struct FileLines(io::Lines>); 453s | 453s 453s error[E0433]: failed to resolve: could not find `io` in `futures_util` 453s --> /usr/share/cargo/registry/zbus-4.4.0/src/abstractions/file.rs:18:60 453s | 453s 18 | pub struct FileLines(futures_util::io::Lines>); 453s | ^^ could not find `io` in `futures_util` 453s | 453s note: found an item that was configured out 453s --> /usr/share/cargo/registry/futures-util-0.3.31/src/lib.rs:315:9 453s | 453s 315 | pub mod io; 453s | ^^ 453s note: the item is gated behind the `io` feature 453s --> /usr/share/cargo/registry/futures-util-0.3.31/src/lib.rs:312:7 453s | 453s 312 | #[cfg(feature = "io")] 453s | ^^^^^^^^^^^^^^ 453s help: consider importing this module 453s | 453s 5 + use std::io; 453s | 453s help: if you import `io`, refer to it directly 453s | 453s 18 - pub struct FileLines(futures_util::io::Lines>); 453s 18 + pub struct FileLines(futures_util::io::Lines>); 453s | 453s 453s error[E0433]: failed to resolve: use of undeclared crate or module `async_fs` 453s --> /usr/share/cargo/registry/zbus-4.4.0/src/abstractions/file.rs:27:13 453s | 453s 27 | async_fs::File::open(path) 453s | ^^^^^^^^ use of undeclared crate or module `async_fs` 453s | 453s help: consider importing this struct 453s | 453s 5 + use std::fs::File; 453s | 453s help: if you import `File`, refer to it directly 453s | 453s 27 - async_fs::File::open(path) 453s 27 + File::open(path) 453s | 453s 453s error[E0433]: failed to resolve: could not find `io` in `futures_util` 453s --> /usr/share/cargo/registry/zbus-4.4.0/src/abstractions/file.rs:29:36 453s | 453s 29 | .map(futures_util::io::BufReader::new) 453s | ^^ could not find `io` in `futures_util` 453s | 453s note: found an item that was configured out 453s --> /usr/share/cargo/registry/futures-util-0.3.31/src/lib.rs:315:9 453s | 453s 315 | pub mod io; 453s | ^^ 453s note: the item is gated behind the `io` feature 453s --> /usr/share/cargo/registry/futures-util-0.3.31/src/lib.rs:312:7 453s | 453s 312 | #[cfg(feature = "io")] 453s | ^^^^^^^^^^^^^^ 453s help: consider importing this struct 453s | 453s 5 + use std::io::BufReader; 453s | 453s help: if you import `BufReader`, refer to it directly 453s | 453s 29 - .map(futures_util::io::BufReader::new) 453s 29 + .map(BufReader::new) 453s | 453s 454s error[E0282]: type annotations needed 454s --> /usr/share/cargo/registry/zbus-4.4.0/src/connection/mod.rs:1047:49 454s | 454s 1047 | .add_match_rule(e.key().inner().clone()) 454s | ^^^^^ cannot infer type for type parameter `K` declared on the enum `Entry` 454s 454s error[E0282]: type annotations needed for `&mut (_, _)` 454s --> /usr/share/cargo/registry/zbus-4.4.0/src/connection/mod.rs:1060:21 454s | 454s 1060 | let (num_subscriptions, receiver) = e.get_mut(); 454s | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 454s ... 454s 1063 | if max_queued > receiver.capacity() { 454s | -------- type must be known at this point 454s | 454s help: consider giving this pattern a type, where the placeholders `_` are specified 454s | 454s 1060 | let (num_subscriptions, receiver): &mut (_, _) = e.get_mut(); 454s | +++++++++++++ 454s 454s error[E0282]: type annotations needed 454s --> /usr/share/cargo/registry/zbus-4.4.0/src/connection/mod.rs:1082:36 454s | 454s 1082 | let rule = e.key().inner().clone(); 454s | ^^^^^ cannot infer type for type parameter `K` declared on the enum `Entry` 454s 454s error[E0599]: the method `next` exists for struct `Enumerate`, but its trait bounds were not satisfied 454s --> /usr/share/cargo/registry/zbus-4.4.0/src/connection/handshake/cookies.rs:54:43 454s | 454s 54 | while let Some((n, line)) = lines.next().await { 454s | ^^^^ method cannot be called on `Enumerate` due to unsatisfied trait bounds 454s | 454s ::: /usr/share/cargo/registry/futures-util-0.3.31/src/stream/stream/enumerate.rs:9:1 454s | 454s 9 | / pin_project! { 454s 10 | | /// Stream for the [`enumerate`](super::StreamExt::enumerate) method. 454s 11 | | #[derive(Debug)] 454s 12 | | #[must_use = "streams do nothing unless polled"] 454s ... | 454s 17 | | } 454s 18 | | } 454s | |_- doesn't satisfy `_: StreamExt` or `_: Stream` 454s | 454s = note: the following trait bounds were not satisfied: 454s `futures_util::stream::Enumerate: futures_core::Stream` 454s which is required by `futures_util::stream::Enumerate: StreamExt` 454s 454s error[E0433]: failed to resolve: use of undeclared crate or module `async_fs` 454s --> /usr/share/cargo/registry/zbus-4.4.0/src/abstractions/file.rs:73:9 454s | 454s 73 | async_fs::metadata(path).await 454s | ^^^^^^^^ use of undeclared crate or module `async_fs` 454s 454s error[E0599]: the method `get_or_init` exists for struct `OnceLock`, but its trait bounds were not satisfied 454s --> /usr/share/cargo/registry/zbus-4.4.0/src/connection/mod.rs:917:14 454s | 454s 915 | / self.inner 454s 916 | | .object_server 454s 917 | | .get_or_init(move || self.setup_object_server(start, started_event)) 454s | | -^^^^^^^^^^^ method cannot be called on `OnceLock` due to unsatisfied trait bounds 454s | |_____________| 454s | 454s | 454s ::: /usr/share/cargo/registry/zbus-4.4.0/src/blocking/object_server.rs:126:1 454s | 454s 126 | pub struct ObjectServer { 454s | ----------------------- doesn't satisfy `blocking::object_server::ObjectServer: Sized` 454s | 454s = note: the following trait bounds were not satisfied: 454s `{type error}: Sized` 454s which is required by `blocking::object_server::ObjectServer: Sized` 454s 454s error[E0433]: failed to resolve: use of undeclared crate or module `blocking` 454s --> /usr/share/cargo/registry/zbus-4.4.0/src/abstractions/executor.rs:172:23 454s | 454s 172 | Self(Some(blocking::unblock(f))) 454s | ^^^^^^^^ use of undeclared crate or module `blocking` 454s 455s error[E0433]: failed to resolve: use of undeclared crate or module `async_io` 455s --> /usr/share/cargo/registry/zbus-4.4.0/src/utils.rs:34:5 455s | 455s 34 | async_io::block_on(future) 455s | ^^^^^^^^ use of undeclared crate or module `async_io` 455s 455s error[E0433]: failed to resolve: use of undeclared crate or module `async_fs` 455s --> /usr/share/cargo/registry/zbus-4.4.0/src/abstractions/file.rs:18:74 455s | 455s 18 | pub struct FileLines(futures_util::io::Lines>); 455s | ^^^^^^^^ use of undeclared crate or module `async_fs` 455s 455s error[E0433]: failed to resolve: use of undeclared crate or module `async_lock` 455s --> /usr/share/cargo/registry/zbus-4.4.0/src/abstractions/async_lock.rs:8:29 455s | 455s 8 | pub(crate) struct Semaphore(async_lock::Semaphore); 455s | ^^^^^^^^^^ use of undeclared crate or module `async_lock` 455s 455s error[E0433]: failed to resolve: use of undeclared crate or module `async_lock` 455s --> /usr/share/cargo/registry/zbus-4.4.0/src/abstractions/async_lock.rs:36:39 455s | 455s 36 | pub(crate) type SemaphorePermit<'a> = async_lock::SemaphoreGuard<'a>; 455s | ^^^^^^^^^^ use of undeclared crate or module `async_lock` 455s 455s Some errors have detailed explanations: E0282, E0432, E0433, E0599. 455s For more information about an error, try `rustc --explain E0282`. 455s error: could not compile `zbus` (lib) due to 29 previous errors 455s 455s Caused by: 455s process didn't exit successfully: `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=zbus CARGO_MANIFEST_DIR=/tmp/tmp.qhGiLVvQuR/registry/zbus-4.4.0 CARGO_MANIFEST_PATH=/tmp/tmp.qhGiLVvQuR/registry/zbus-4.4.0/Cargo.toml CARGO_PKG_AUTHORS='Zeeshan Ali Khan ' CARGO_PKG_DESCRIPTION='API for D-Bus communication' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=zbus CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dbus2/zbus/' CARGO_PKG_RUST_VERSION=1.75 CARGO_PKG_VERSION=4.4.0 CARGO_PKG_VERSION_MAJOR=4 CARGO_PKG_VERSION_MINOR=4 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.qhGiLVvQuR/target/debug/deps rustc --crate-name zbus --edition=2021 /tmp/tmp.qhGiLVvQuR/registry/zbus-4.4.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("async-executor", "async-fs", "async-io", "async-lock", "async-task", "blocking", "bus-impl", "chrono", "default", "heapless", "option-as-array", "p2p", "time", "tokio", "tokio-vsock", "url", "uuid", "vsock"))' -C metadata=cbe98a51282d17de -C extra-filename=-cbe98a51282d17de --out-dir /tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.qhGiLVvQuR/target/debug/deps --extern async_broadcast=/tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/deps/libasync_broadcast-852b859fbdd9a4f4.rmeta --extern async_trait=/tmp/tmp.qhGiLVvQuR/target/debug/deps/libasync_trait-e4c90cfd514ad223.so --extern enumflags2=/tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/deps/libenumflags2-2867d32c4b4f39e8.rmeta --extern event_listener=/tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/deps/libevent_listener-93bdad7496d4853a.rmeta --extern futures_core=/tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/deps/libfutures_core-8d305950da6bf5c8.rmeta --extern futures_sink=/tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/deps/libfutures_sink-2335bc9d806f8753.rmeta --extern futures_util=/tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/deps/libfutures_util-23beed03671fe7d3.rmeta --extern hex=/tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/deps/libhex-d04eec135ea2b5a3.rmeta --extern nix=/tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/deps/libnix-1c06771599af3024.rmeta --extern ordered_stream=/tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/deps/libordered_stream-5d03c0a21a4bd5e4.rmeta --extern rand=/tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/deps/librand-da2a195293a4eb5f.rmeta --extern serde=/tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/deps/libserde-0e7dff716e38da0d.rmeta --extern serde_repr=/tmp/tmp.qhGiLVvQuR/target/debug/deps/libserde_repr-79727398b79ecac5.so --extern sha1=/tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/deps/libsha1-7a229c14a1ac9b31.rmeta --extern static_assertions=/tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/deps/libstatic_assertions-18df01cc327facaa.rmeta --extern tracing=/tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/deps/libtracing-5f8a2432d30b4ef1.rmeta --extern xdg_home=/tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/deps/libxdg_home-4230920bfa085c8c.rmeta --extern zbus_macros=/tmp/tmp.qhGiLVvQuR/target/debug/deps/libzbus_macros-fbbb45642851aa97.so --extern zbus_names=/tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/deps/libzbus_names-68f942ce83c6099a.rmeta --extern zvariant=/tmp/tmp.qhGiLVvQuR/target/s390x-unknown-linux-gnu/debug/deps/libzvariant-f63ab59735f855c5.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/search-provider-0.10.0=/usr/share/cargo/registry/search-provider-0.10.0 --remap-path-prefix /tmp/tmp.qhGiLVvQuR/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` (exit status: 1) 456s /tmp/autopkgtest.9UAdYD/wrapper.sh: checking for leaked background processes... 456s /tmp/autopkgtest.9UAdYD/wrapper.sh: waiting for tee/cat subprocesses... 456s /tmp/autopkgtest.9UAdYD/wrapper.sh: cleaning up... 456s /tmp/autopkgtest.9UAdYD/wrapper.sh: Exit status: 101 456s autopkgtest: DBG: testbed command exited with code 101 456s autopkgtest [18:33:03]: test librust-search-provider-dev:: -----------------------] 456s autopkgtest: DBG: testbed executing test finished with exit status 101 456s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.9UAdYD/librust-search-provider-dev%3A-stdout /tmp/autopkgtest-work.fgzbr70j/out/librust-search-provider-dev%3A-stdout 456s autopkgtest: DBG: got reply from testbed: ok 456s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.9UAdYD/librust-search-provider-dev%3A-stderr /tmp/autopkgtest-work.fgzbr70j/out/librust-search-provider-dev%3A-stderr 456s autopkgtest: DBG: got reply from testbed: ok 457s librust-search-provider-dev: FLAKY non-zero exit status 101 457s autopkgtest [18:33:04]: test librust-search-provider-dev:: - - - - - - - - - - results - - - - - - - - - - 457s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.9UAdYD/librust-search-provider-dev%3A-artifacts/ /tmp/autopkgtest-work.fgzbr70j/out/artifacts/ 457s autopkgtest: DBG: got reply from testbed: ok 457s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.9UAdYD/librust-search-provider-dev:-artifacts', '/tmp/autopkgtest.9UAdYD/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 457s autopkgtest: DBG: testbed command exited with code 0 457s autopkgtest: DBG: needs_reset, previously=False, requested by run_tests() line 230 457s autopkgtest [18:33:04]: @@@@@@@@@@@@@@@@@@@@ summary 457s rust-search-provider:@ PASS 457s librust-search-provider-dev:async-std PASS 457s librust-search-provider-dev:default PASS 457s librust-search-provider-dev:gdk FLAKY non-zero exit status 101 457s librust-search-provider-dev:gdk-pixbuf FLAKY non-zero exit status 101 457s librust-search-provider-dev:tokio PASS 457s librust-search-provider-dev: FLAKY non-zero exit status 101 457s autopkgtest: DBG: testbed stop 457s autopkgtest: DBG: testbed close, scratch=/tmp/autopkgtest.9UAdYD 457s autopkgtest: DBG: sending command to testbed: close 473s autopkgtest: DBG: got reply from testbed: ok 473s autopkgtest: DBG: sending command to testbed: quit 473s nova [W] Using flock in prodstack6-s390x 473s Creating nova instance adt-plucky-s390x-rust-search-provider-20250212-182527-juju-7f2275-prod-proposed-migration-environment-15-36d1adac-ca4c-455e-9351-f124cee654ab from image adt/ubuntu-plucky-s390x-server-20250212.img (UUID bc0c6a1e-2159-4845-8bbd-54291ac11f45)... 473s nova [W] Timed out waiting for 9aee11a8-951f-4844-9761-8418fbe1aa96 to get deleted.