0s autopkgtest: DBG: testbed init 0s autopkgtest [21:10:24]: starting date and time: 2025-02-11 21:10:24+0000 0s autopkgtest [21:10:24]: git checkout: 325255d2 Merge branch 'pin-any-arch' into 'ubuntu/production' 0s autopkgtest [21:10:24]: host juju-7f2275-prod-proposed-migration-environment-15; command line: /home/ubuntu/autopkgtest/runner/autopkgtest --output-dir /tmp/autopkgtest-work.59hd9nc_/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-bitvec-helpers --debug --timeout-short=300 --timeout-copy=20000 --timeout-build=20000 '--env=ADT_TEST_TRIGGERS=rust-defaults/1.84.0ubuntu1 libgit2/1.9.0~ds-0ubuntu1 rustc-1.84/1.84.0+dfsg0ubuntu1-0ubuntu1' -- ssh -s /home/ubuntu/autopkgtest/ssh-setup/nova -- --flavor autopkgtest-s390x --security-groups autopkgtest-juju-7f2275-prod-proposed-migration-environment-15@bos03-s390x-5.secgroup --name adt-plucky-s390x-rust-bitvec-helpers-20250211-211024-juju-7f2275-prod-proposed-migration-environment-15-fdf68a54-f1ed-4b88-a3ac-de90ba955b04 --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 52s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.ijk0Vb 52s autopkgtest: DBG: sending command to testbed: print-execute-command 52s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.ftzwvybh/runcmd 52s autopkgtest: DBG: sending command to testbed: capabilities 52s autopkgtest: DBG: got reply from testbed: ok revert isolation-machine revert-full-system reboot suggested-normal-user=ubuntu root-on-testbed 52s autopkgtest: DBG: testbed capabilities: ['revert', 'isolation-machine', 'revert-full-system', 'reboot', 'suggested-normal-user=ubuntu', 'root-on-testbed', 'has_internet'] 52s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.ijk0Vb'], kind short, sout raw, serr pipe, env [] 52s autopkgtest: DBG: testbed command exited with code 0 52s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/wrapper.sh /tmp/autopkgtest.ijk0Vb/wrapper.sh 52s autopkgtest: DBG: got reply from testbed: ok 52s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.ijk0Vb/wrapper.sh'], kind short, sout raw, serr pipe, env [] 52s autopkgtest: DBG: testbed command exited with code 0 52s autopkgtest: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env [] 53s autopkgtest: DBG: testbed command exited with code 0 53s autopkgtest [21:11:17]: testbed dpkg architecture: s390x 53s autopkgtest: DBG: testbed command ['dpkg-query', '-W', '-f', '${Version}', 'apt'], kind short, sout pipe, serr pipe, env [] 53s autopkgtest: DBG: testbed command exited with code 0 53s autopkgtest [21:11:17]: testbed apt version: 2.9.28 53s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env [] 53s autopkgtest: DBG: testbed command exited with code 0 53s autopkgtest: DBG: testbed has eatmydata 53s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env [] 53s autopkgtest: DBG: testbed command exited with code 0 53s autopkgtest [21:11:17]: @@@@@@@@@@@@@@@@@@@@ test bed setup 53s 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 [] 53s autopkgtest: DBG: testbed command exited with code 0 53s autopkgtest [21:11:17]: testbed release detected to be: None 53s 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 [] 53s autopkgtest: DBG: testbed command exited with code 0 53s autopkgtest: DBG: testbed command ['sh', '-ec', '#!/bin/sh\n# SPDX-License-Identifier: GPL-2.0-or-later\n\n# This script returns the list of configured sources in deb822-style source\n# lists (/etc/apt/sources.list.d/*.sources). Sources are not stripped out of\n# comments, extra blank lines or similar: the output of this script is meant to\n# be consumed by a deb822 parser that is able to correctly handle those.\n# See sources.list(5) for more information on the APT source list formats.\n#\n# This script takes no arguments.\n\nset -eu\n\n# Awk concatenates files making sure stanzas from separate files are separated\n# by a blank line, even if there are no newlines at EOF in the .sources files.\nif [ -d /etc/apt/sources.list.d ]; then\n find /etc/apt/sources.list.d -maxdepth 1 -type f -regex \'.*/[a-zA-Z0-9_.-]+\\.sources\' -print0 \\\n | LC_ALL=C sort --zero-terminated \\\n | xargs -0 --no-run-if-empty -- awk \'FNR == 1 && NR != 1 { print "" } { print }\'\nfi\n'], kind short, sout pipe, serr pipe, env [] 54s autopkgtest: DBG: testbed command exited with code 0 54s autopkgtest: DBG: adding APT source: Types: deb deb-src 54s URIs: http://ftpmaster.internal/ubuntu/ 54s Suites: plucky-proposed 54s Components: main restricted universe multiverse 54s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg 54s autopkgtest: DBG: testbed command ['sh', '-ec', '"$@" >> "/etc/apt/sources.list.d/autopkgtest-add-apt-release-plucky-proposed.sources"', 'add_apt_source', 'printf', '%s\\n', 'Types: deb deb-src\nURIs: http://ftpmaster.internal/ubuntu/\nSuites: plucky-proposed\nComponents: main restricted universe multiverse\nSigned-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg\n'], kind short, sout raw, serr pipe, env [] 54s autopkgtest: DBG: testbed command exited with code 0 54s autopkgtest: DBG: adding APT preference to autopkgtest-zz-plucky-proposed-baseline.pref: 54s Package: * 54s Pin: release plucky-proposed 54s Pin-Priority: 500 54s autopkgtest: DBG: testbed command ['sh', '-ec', '"$@" > "/etc/apt/preferences.d/autopkgtest-zz-plucky-proposed-baseline.pref"', 'add_apt_preference', 'printf', '%s\\n', 'Package: *\nPin: release plucky-proposed\nPin-Priority: 500'], kind short, sout raw, serr pipe, env [] 54s autopkgtest: DBG: testbed command exited with code 0 54s autopkgtest [21:11:18]: updating testbed package index (apt update) 54s 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'] 54s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed InRelease [110 kB] 55s Hit:2 http://ftpmaster.internal/ubuntu plucky InRelease 55s Hit:3 http://ftpmaster.internal/ubuntu plucky-updates InRelease 55s Hit:4 http://ftpmaster.internal/ubuntu plucky-security InRelease 55s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [66.8 kB] 55s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [14.8 kB] 55s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [871 kB] 55s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [83.6 kB] 55s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [791 kB] 55s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [6192 B] 55s Fetched 1944 kB in 1s (1995 kB/s) 56s Reading package lists... 56s autopkgtest: DBG: testbed command exited with code 0 56s autopkgtest: DBG: adding APT preference to autopkgtest-plucky-proposed.pref: 56s Package: * 56s Pin: release plucky-proposed 56s Pin-Priority: 100 56s 56s Package: src:rust-defaults:any src:libgit2:any src:rustc-1.84:any 56s Pin: release plucky-proposed 56s Pin-Priority: 995 56s autopkgtest: DBG: testbed command ['sh', '-ec', '"$@" > "/etc/apt/preferences.d/autopkgtest-plucky-proposed.pref"', 'add_apt_preference', 'printf', '%s\\n', 'Package: *\nPin: release plucky-proposed\nPin-Priority: 100\n\nPackage: src:rust-defaults:any src:libgit2:any src:rustc-1.84:any\nPin: release plucky-proposed\nPin-Priority: 995'], kind short, sout raw, serr pipe, env [] 56s autopkgtest: DBG: testbed command exited with code 0 56s 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.ijk0Vb/${d//\\//_}.stamp; done'], kind short, sout raw, serr pipe, env [] 56s autopkgtest: DBG: testbed command exited with code 0 56s 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'] 56s + lsb_release --codename --short 56s + RELEASE=plucky 56s + cat 56s + [ plucky != trusty ] 56s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade 56s Reading package lists... 56s Building dependency tree... 56s Reading state information... 56s Calculating upgrade... 57s The following packages were automatically installed and are no longer required: 57s libnsl2 libpython3.12-minimal libpython3.12-stdlib libpython3.12t64 57s linux-headers-6.11.0-8 linux-headers-6.11.0-8-generic 57s linux-modules-6.11.0-8-generic linux-tools-6.11.0-8 57s linux-tools-6.11.0-8-generic 57s Use 'sudo apt autoremove' to remove them. 57s The following packages will be upgraded: 57s libarchive13t64 libpcap0.8t64 libprotobuf-c1 57s 3 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 57s Need to get 599 kB of archives. 57s After this operation, 10.2 kB of additional disk space will be used. 57s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x libpcap0.8t64 s390x 1.10.5-2ubuntu1 [155 kB] 57s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x libarchive13t64 s390x 3.7.7-0ubuntu1 [421 kB] 57s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x libprotobuf-c1 s390x 1.5.1-1ubuntu1 [23.5 kB] 57s Fetched 599 kB in 0s (1233 kB/s) 57s (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.) 57s Preparing to unpack .../libpcap0.8t64_1.10.5-2ubuntu1_s390x.deb ... 57s Unpacking libpcap0.8t64:s390x (1.10.5-2ubuntu1) over (1.10.5-1ubuntu1) ... 57s Preparing to unpack .../libarchive13t64_3.7.7-0ubuntu1_s390x.deb ... 57s Unpacking libarchive13t64:s390x (3.7.7-0ubuntu1) over (3.7.4-1.1) ... 57s Preparing to unpack .../libprotobuf-c1_1.5.1-1ubuntu1_s390x.deb ... 57s Unpacking libprotobuf-c1:s390x (1.5.1-1ubuntu1) over (1.4.1-1ubuntu4) ... 57s Setting up libprotobuf-c1:s390x (1.5.1-1ubuntu1) ... 57s Setting up libpcap0.8t64:s390x (1.10.5-2ubuntu1) ... 57s Setting up libarchive13t64:s390x (3.7.7-0ubuntu1) ... 57s Processing triggers for man-db (2.13.0-1) ... 58s Processing triggers for libc-bin (2.40-4ubuntu1) ... 58s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref 58s + /usr/lib/apt/apt-helper analyze-pattern ?true 58s + uname -r 58s + sed s/\./\\./g 58s + running_kernel_pattern=^linux-.*6\.12\.0-15-generic.* 58s + apt list ?obsolete 58s + tail -n+2 58s + cut -d/ -f1 58s + grep -v ^linux-.*6\.12\.0-15-generic.* 58s + true 58s + obsolete_pkgs= 58s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove 58s Reading package lists... 58s Building dependency tree... 58s Reading state information... 58s The following packages will be REMOVED: 58s libnsl2* libpython3.12-minimal* libpython3.12-stdlib* libpython3.12t64* 58s linux-headers-6.11.0-8* linux-headers-6.11.0-8-generic* 58s linux-modules-6.11.0-8-generic* linux-tools-6.11.0-8* 58s linux-tools-6.11.0-8-generic* 58s 0 upgraded, 0 newly installed, 9 to remove and 0 not upgraded. 58s After this operation, 167 MB disk space will be freed. 58s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 80969 files and directories currently installed.) 58s Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ... 58s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ... 58s Removing libpython3.12t64:s390x (3.12.9-1) ... 58s Removing libpython3.12-stdlib:s390x (3.12.9-1) ... 58s Removing libnsl2:s390x (1.3.0-3build3) ... 59s Removing libpython3.12-minimal:s390x (3.12.9-1) ... 59s Removing linux-headers-6.11.0-8-generic (6.11.0-8.8) ... 59s Removing linux-headers-6.11.0-8 (6.11.0-8.8) ... 59s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 59s Processing triggers for libc-bin (2.40-4ubuntu1) ... 59s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55869 files and directories currently installed.) 59s Purging configuration files for libpython3.12-minimal:s390x (3.12.9-1) ... 59s Purging configuration files for linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 60s + grep -q trusty /etc/lsb-release 60s + [ ! -d /usr/share/doc/unattended-upgrades ] 60s + [ ! -d /usr/share/doc/lxd ] 60s + [ ! -d /usr/share/doc/lxd-client ] 60s + [ ! -d /usr/share/doc/snapd ] 60s + type iptables 60s + cat 60s + chmod 755 /etc/rc.local 60s + . /etc/rc.local 60s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 60s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP 60s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP 60s + uname -m 60s + [ s390x = ppc64le ] 60s + [ -d /run/systemd/system ] 60s + systemd-detect-virt --quiet --vm 60s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/ 60s + cat 60s + grep -q lz4 /etc/initramfs-tools/initramfs.conf 60s + echo COMPRESS=lz4 60s autopkgtest: DBG: testbed command exited with code 0 60s autopkgtest [21:11:24]: upgrading testbed (apt dist-upgrade and autopurge) 60s autopkgtest: DBG: testbed command ['/bin/sh', '-ec', '"$@" 3>&2 2>&1', 'run_apt_command', '/usr/bin/eatmydata', 'apt-get', '--quiet', '--assume-yes', '-o=APT::Status-Fd=3', '-o=APT::Install-Recommends=false', '-o=Dpkg::Options::=--force-confnew', '-o=Debug::pkgProblemResolver=true', 'dist-upgrade'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 60s Reading package lists... 60s Building dependency tree... 60s Reading state information... 60s Calculating upgrade...Starting pkgProblemResolver with broken count: 0 60s Starting 2 pkgProblemResolver with broken count: 0 60s Done 60s Entering ResolveByKeep 60s 61s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 61s autopkgtest: DBG: testbed command exited with code 0 61s autopkgtest: DBG: testbed command ['/bin/sh', '-ec', '"$@" 3>&2 2>&1', 'run_apt_command', '/usr/bin/eatmydata', 'apt-get', '--quiet', '--assume-yes', '-o=APT::Status-Fd=3', '-o=APT::Install-Recommends=false', '-o=Dpkg::Options::=--force-confnew', '-o=Debug::pkgProblemResolver=true', '--purge', 'autoremove'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 61s Reading package lists... 61s Building dependency tree... 61s Reading state information... 61s Starting pkgProblemResolver with broken count: 0 61s Starting 2 pkgProblemResolver with broken count: 0 61s Done 61s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 61s autopkgtest: DBG: testbed command exited with code 0 61s autopkgtest: DBG: testbed command ['bash', '-ec', '[ ! -e /run/autopkgtest_no_reboot.stamp ] || exit 0;for d in /boot /boot/efi /boot/grub /etc/init /etc/init.d /etc/systemd/system /lib/systemd/system; do s=/tmp/autopkgtest.ijk0Vb/${d//\\//_}.stamp; [ ! -d $d ] || [ `stat -c %Y $d` = `stat -c %Y $s` ]; done'], kind short, sout raw, serr raw, env [] 61s autopkgtest: DBG: testbed command exited with code 1 61s autopkgtest [21:11:25]: rebooting testbed after setup commands that affected boot 61s autopkgtest: DBG: sending command to testbed: reboot 79s autopkgtest: DBG: got reply from testbed: ok 79s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 79s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.ijk0Vb'], kind short, sout raw, serr pipe, env [] 80s autopkgtest: DBG: testbed command exited with code 0 80s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.ijk0Vb/autopkgtest-reboot 80s autopkgtest: DBG: got reply from testbed: ok 80s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.ijk0Vb/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 80s autopkgtest: DBG: testbed command exited with code 0 80s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.ijk0Vb/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 80s autopkgtest: DBG: testbed command exited with code 0 80s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.ijk0Vb/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 80s autopkgtest: DBG: testbed command exited with code 0 80s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.ijk0Vb'], kind short, sout raw, serr pipe, env [] 80s autopkgtest: DBG: testbed command exited with code 0 80s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.ijk0Vb/autopkgtest-reboot-prepare 81s autopkgtest: DBG: got reply from testbed: ok 81s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.ijk0Vb/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 81s autopkgtest: DBG: testbed command exited with code 0 81s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.ijk0Vb/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 81s autopkgtest: DBG: testbed command exited with code 0 81s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 81s autopkgtest: DBG: testbed command exited with code 0 81s autopkgtest [21:11:45]: testbed running kernel: Linux 6.12.0-15-generic #15-Ubuntu SMP Tue Feb 4 15:05:57 UTC 2025 81s autopkgtest: DBG: testbed command ['sh', '-c', 'nproc; cat /proc/cpuinfo 2>/dev/null || true'], kind short, sout pipe, serr pipe, env [] 81s autopkgtest: DBG: testbed command exited with code 0 81s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.ijk0Vb/testbed-packages"], kind short, sout raw, serr pipe, env [] 81s autopkgtest: DBG: testbed command exited with code 0 81s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.ijk0Vb/testbed-packages /tmp/autopkgtest-work.59hd9nc_/out/testbed-packages 82s autopkgtest: DBG: got reply from testbed: ok 82s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 82s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.ijk0Vb'], kind short, sout raw, serr pipe, env [] 82s autopkgtest: DBG: testbed command exited with code 0 82s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.ijk0Vb/autopkgtest-reboot 82s autopkgtest: DBG: got reply from testbed: ok 82s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.ijk0Vb/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 82s autopkgtest: DBG: testbed command exited with code 0 82s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.ijk0Vb/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 82s autopkgtest: DBG: testbed command exited with code 0 82s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.ijk0Vb/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 83s autopkgtest: DBG: testbed command exited with code 0 83s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.ijk0Vb'], kind short, sout raw, serr pipe, env [] 83s autopkgtest: DBG: testbed command exited with code 0 83s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.ijk0Vb/autopkgtest-reboot-prepare 83s autopkgtest: DBG: got reply from testbed: ok 83s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.ijk0Vb/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 83s autopkgtest: DBG: testbed command exited with code 0 83s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.ijk0Vb/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 83s autopkgtest: DBG: testbed command exited with code 0 83s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 83s autopkgtest: DBG: testbed command exited with code 0 83s autopkgtest: DBG: Binaries: initialising 83s autopkgtest [21:11:47]: @@@@@@@@@@@@@@@@@@@@ apt-source rust-bitvec-helpers 83s autopkgtest: DBG: blame += rust-bitvec-helpers 83s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=[] 83s autopkgtest: DBG: testbed command ['apt-cache', 'showsrc', '--only-source', 'rust-bitvec-helpers'], kind short, sout pipe, serr pipe, env [] 84s autopkgtest: DBG: testbed command exited with code 0 84s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^librust-bitvec-helpers-dev$'], kind short, sout pipe, serr raw, env [] 84s autopkgtest: DBG: testbed command exited with code 0 84s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'librust-bitvec-helpers-dev=3.1.5-1'], kind short, sout pipe, serr raw, env [] 84s autopkgtest: DBG: testbed command exited with code 0 84s autopkgtest: DBG: install_deps: deps_new=[] 84s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v dpkg-source'], kind short, sout pipe, serr pipe, env [] 84s autopkgtest: DBG: testbed command exited with code 0 84s 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.ijk0Vb/build.XXX); cd $builddir; OUT=$(apt-get source -d -q --only-source rust-bitvec-helpers=3.1.5-1 2>&1) || RC=$?;if [ -n "$RC" ]; then if echo "$OUT" | grep -q "Unable to find a source package"; then exit 1; else exit $RC; fi;fi;echo "$OUT" | grep ^Get: || true;dpkg-source -x rust-bitvec-helpers_*.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'] 84s + cd / 84s + mktemp -d /tmp/autopkgtest.ijk0Vb/build.XXX 84s + builddir=/tmp/autopkgtest.ijk0Vb/build.4F8 84s + cd /tmp/autopkgtest.ijk0Vb/build.4F8 84s + apt-get source -d -q --only-source rust-bitvec-helpers=3.1.5-1 85s + OUT=Reading package lists... 85s NOTICE: 'rust-bitvec-helpers' packaging is maintained in the 'Git' version control system at: 85s https://salsa.debian.org/rust-team/debcargo-conf.git [src/bitvec-helpers] 85s Please use: 85s git clone https://salsa.debian.org/rust-team/debcargo-conf.git [src/bitvec-helpers] 85s to retrieve the latest (possibly unreleased) updates to the package. 85s Need to get 9493 B of source archives. 85s Get:1 http://ftpmaster.internal/ubuntu plucky/universe rust-bitvec-helpers 3.1.5-1 (dsc) [1742 B] 85s Get:2 http://ftpmaster.internal/ubuntu plucky/universe rust-bitvec-helpers 3.1.5-1 (tar) [5147 B] 85s Get:3 http://ftpmaster.internal/ubuntu plucky/universe rust-bitvec-helpers 3.1.5-1 (diff) [2604 B] 85s Fetched 9493 B in 0s (43.2 kB/s) 85s Download complete and in download only mode 85s + [ -n ] 85s + echo Reading package lists... 85s NOTICE: 'rust-bitvec-helpers' packaging is maintained in the 'Git' version control system at: 85s https://salsa.debian.org/rust-team/debcargo-conf.git [src/bitvec-helpers] 85s Please use: 85s git clone https://salsa.debian.org/rust-team/debcargo-conf.git [src/bitvec-helpers] 85s to retrieve the latest (possibly unreleased) updates to the package. 85s Need to get 9493 B of source archives. 85s Get:1 http://ftpmaster.internal/ubuntu plucky/universe rust-bitvec-helpers 3.1.5-1 (dsc) [1742 B] 85s Get:2 http://ftpmaster.internal/ubuntu plucky/universe rust-bitvec-helpers 3.1.5-1 (tar) [5147 B] 85s Get:3 http://ftpmaster.internal/ubuntu plucky/universe rust-bitvec-helpers 3.1.5-1 (diff) [2604 B] 85s Fetched 9493 B in 0s (43.2 kB/s) 85s Download complete and in download only mode 85s + grep ^Get: 85s Get:1 http://ftpmaster.internal/ubuntu plucky/universe rust-bitvec-helpers 3.1.5-1 (dsc) [1742 B] 85s Get:2 http://ftpmaster.internal/ubuntu plucky/universe rust-bitvec-helpers 3.1.5-1 (tar) [5147 B] 85s Get:3 http://ftpmaster.internal/ubuntu plucky/universe rust-bitvec-helpers 3.1.5-1 (diff) [2604 B] 85s + dpkg-source -x rust-bitvec-helpers_3.1.5-1.dsc src 85s gpgv: Signature made Sun Jul 14 20:23:48 2024 UTC 85s gpgv: using EDDSA key 42627E841D9967DA83E1FA9021936B36600FCD89 85s gpgv: Can't check signature: No public key 85s dpkg-source: warning: cannot verify inline signature for ./rust-bitvec-helpers_3.1.5-1.dsc: no acceptable signature found 85s + chmod -R a+rX . 85s + cd src/. 85s + pwd 85s + sed -n 1 {s/).*//; s/ (/\n/; p} debian/changelog 85s autopkgtest: DBG: testbed command exited with code 0 85s autopkgtest [21:11:49]: testing package rust-bitvec-helpers version 3.1.5-1 85s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.ijk0Vb/build.4F8/src/debian/ /tmp/autopkgtest-work.59hd9nc_/out/pkg/debian/ 85s autopkgtest: DBG: got reply from testbed: ok 85s autopkgtest: DBG: processing dependency dh-cargo (>= 18) 85s autopkgtest: DBG: processing dependency @ 85s autopkgtest: DBG: synthesised dependency librust-bitvec-helpers-dev 85s autopkgtest: DBG: Test defined: name rust-bitvec-helpers:@ path None command "/usr/share/cargo/bin/cargo-auto-test bitvec_helpers 3.1.5 --all-targets --all-features" restrictions ['allow-stderr', 'skip-not-installable'] features ['test-name=rust-bitvec-helpers:@'] depends ['dh-cargo (>= 18)', 'librust-bitvec-helpers-dev'] 85s autopkgtest: DBG: processing dependency dh-cargo (>= 18) 85s autopkgtest: DBG: processing dependency @ 85s autopkgtest: DBG: synthesised dependency librust-bitvec-helpers-dev 85s autopkgtest: DBG: Test defined: name librust-bitvec-helpers-dev:bitstream-io path None command "/usr/share/cargo/bin/cargo-auto-test bitvec_helpers 3.1.5 --all-targets --no-default-features --features bitstream-io" restrictions ['allow-stderr', 'skip-not-installable'] features ['test-name=librust-bitvec-helpers-dev:bitstream-io'] depends ['dh-cargo (>= 18)', 'librust-bitvec-helpers-dev'] 85s autopkgtest: DBG: processing dependency dh-cargo (>= 18) 85s autopkgtest: DBG: processing dependency @ 85s autopkgtest: DBG: synthesised dependency librust-bitvec-helpers-dev 85s autopkgtest: DBG: Test defined: name librust-bitvec-helpers-dev:bitvec path None command "/usr/share/cargo/bin/cargo-auto-test bitvec_helpers 3.1.5 --all-targets --no-default-features --features bitvec" restrictions ['allow-stderr', 'skip-not-installable'] features ['test-name=librust-bitvec-helpers-dev:bitvec'] depends ['dh-cargo (>= 18)', 'librust-bitvec-helpers-dev'] 85s autopkgtest: DBG: processing dependency dh-cargo (>= 18) 85s autopkgtest: DBG: processing dependency @ 85s autopkgtest: DBG: synthesised dependency librust-bitvec-helpers-dev 85s autopkgtest: DBG: Test defined: name librust-bitvec-helpers-dev:default path None command "/usr/share/cargo/bin/cargo-auto-test bitvec_helpers 3.1.5 --all-targets" restrictions ['allow-stderr', 'skip-not-installable'] features ['test-name=librust-bitvec-helpers-dev:default'] depends ['dh-cargo (>= 18)', 'librust-bitvec-helpers-dev'] 85s autopkgtest: DBG: processing dependency dh-cargo (>= 18) 85s autopkgtest: DBG: processing dependency @ 85s autopkgtest: DBG: synthesised dependency librust-bitvec-helpers-dev 85s autopkgtest: DBG: Test defined: name librust-bitvec-helpers-dev: path None command "/usr/share/cargo/bin/cargo-auto-test bitvec_helpers 3.1.5 --all-targets --no-default-features" restrictions ['allow-stderr', 'skip-not-installable'] features ['test-name=librust-bitvec-helpers-dev:'] depends ['dh-cargo (>= 18)', 'librust-bitvec-helpers-dev'] 85s autopkgtest [21:11:49]: build not needed 85s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.ijk0Vb/build.4F8/src/ /tmp/autopkgtest-work.59hd9nc_/out/tests-tree/ 85s autopkgtest: DBG: got reply from testbed: ok 85s autopkgtest: DBG: processing dependency dh-cargo (>= 18) 85s autopkgtest: DBG: processing dependency @ 85s autopkgtest: DBG: synthesised dependency librust-bitvec-helpers-dev 85s autopkgtest: DBG: Test defined: name rust-bitvec-helpers:@ path None command "/usr/share/cargo/bin/cargo-auto-test bitvec_helpers 3.1.5 --all-targets --all-features" restrictions ['allow-stderr', 'skip-not-installable'] features ['test-name=rust-bitvec-helpers:@'] depends ['dh-cargo (>= 18)', 'librust-bitvec-helpers-dev'] 86s autopkgtest: DBG: processing dependency dh-cargo (>= 18) 86s autopkgtest: DBG: processing dependency @ 86s autopkgtest: DBG: synthesised dependency librust-bitvec-helpers-dev 86s autopkgtest: DBG: Test defined: name librust-bitvec-helpers-dev:bitstream-io path None command "/usr/share/cargo/bin/cargo-auto-test bitvec_helpers 3.1.5 --all-targets --no-default-features --features bitstream-io" restrictions ['allow-stderr', 'skip-not-installable'] features ['test-name=librust-bitvec-helpers-dev:bitstream-io'] depends ['dh-cargo (>= 18)', 'librust-bitvec-helpers-dev'] 86s autopkgtest: DBG: processing dependency dh-cargo (>= 18) 86s autopkgtest: DBG: processing dependency @ 86s autopkgtest: DBG: synthesised dependency librust-bitvec-helpers-dev 86s autopkgtest: DBG: Test defined: name librust-bitvec-helpers-dev:bitvec path None command "/usr/share/cargo/bin/cargo-auto-test bitvec_helpers 3.1.5 --all-targets --no-default-features --features bitvec" restrictions ['allow-stderr', 'skip-not-installable'] features ['test-name=librust-bitvec-helpers-dev:bitvec'] depends ['dh-cargo (>= 18)', 'librust-bitvec-helpers-dev'] 86s autopkgtest: DBG: processing dependency dh-cargo (>= 18) 86s autopkgtest: DBG: processing dependency @ 86s autopkgtest: DBG: synthesised dependency librust-bitvec-helpers-dev 86s autopkgtest: DBG: Test defined: name librust-bitvec-helpers-dev:default path None command "/usr/share/cargo/bin/cargo-auto-test bitvec_helpers 3.1.5 --all-targets" restrictions ['allow-stderr', 'skip-not-installable'] features ['test-name=librust-bitvec-helpers-dev:default'] depends ['dh-cargo (>= 18)', 'librust-bitvec-helpers-dev'] 86s autopkgtest: DBG: processing dependency dh-cargo (>= 18) 86s autopkgtest: DBG: processing dependency @ 86s autopkgtest: DBG: synthesised dependency librust-bitvec-helpers-dev 86s autopkgtest: DBG: Test defined: name librust-bitvec-helpers-dev: path None command "/usr/share/cargo/bin/cargo-auto-test bitvec_helpers 3.1.5 --all-targets --no-default-features" restrictions ['allow-stderr', 'skip-not-installable'] features ['test-name=librust-bitvec-helpers-dev:'] depends ['dh-cargo (>= 18)', 'librust-bitvec-helpers-dev'] 86s autopkgtest [21:11:50]: test rust-bitvec-helpers:@: preparing testbed 86s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=['dh-cargo (>= 18)', 'librust-bitvec-helpers-dev'] 86s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 86s autopkgtest: DBG: install_deps: deps_new=['dh-cargo (>= 18)', 'librust-bitvec-helpers-dev'] 86s autopkgtest: DBG: install-deps: satisfying dh-cargo (>= 18), librust-bitvec-helpers-dev 86s autopkgtest: DBG: can use apt-get on testbed: True 86s autopkgtest: DBG: testbed command ['/bin/sh', '-ec', '"$@" 3>&2 2>&1', 'run_apt_command', '/usr/bin/eatmydata', 'apt-get', '--quiet', '--assume-yes', '-o=APT::Status-Fd=3', '-o=APT::Install-Recommends=false', '-o=Dpkg::Options::=--force-confnew', '-o=Debug::pkgProblemResolver=true', 'satisfy', 'dh-cargo (>= 18), librust-bitvec-helpers-dev'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 86s Reading package lists... 86s Building dependency tree... 86s Reading state information... 86s Starting pkgProblemResolver with broken count: 0 86s Starting 2 pkgProblemResolver with broken count: 0 86s Done 86s The following NEW packages will be installed: 86s autoconf automake autopoint autotools-dev cargo cargo-1.84 cpp cpp-14 86s cpp-14-s390x-linux-gnu cpp-s390x-linux-gnu debhelper debugedit dh-autoreconf 86s dh-cargo dh-cargo-tools dh-strip-nondeterminism dwz gcc gcc-14 86s gcc-14-s390x-linux-gnu gcc-s390x-linux-gnu gettext intltool-debian 86s libarchive-zip-perl libasan8 libcc1-0 libdebhelper-perl 86s libfile-stripnondeterminism-perl libgcc-14-dev libgit2-1.9 libgomp1 libisl23 86s libitm1 libmpc3 libpkgconf3 librust-addr2line-dev librust-adler-dev 86s librust-ahash-dev librust-allocator-api2-dev librust-anyhow-dev 86s librust-arbitrary-dev librust-backtrace-dev librust-bitstream-io-dev 86s librust-bitvec-dev librust-bitvec-helpers-dev librust-blobby-dev 86s librust-block-buffer-dev librust-byteorder-dev librust-cfg-if-dev 86s librust-compiler-builtins-dev librust-const-oid-dev librust-const-random-dev 86s librust-const-random-macro-dev librust-core2-dev librust-cpp-demangle-dev 86s librust-crc32fast-dev librust-critical-section-dev 86s librust-crossbeam-deque-dev librust-crossbeam-epoch+std-dev 86s librust-crossbeam-epoch-dev librust-crossbeam-utils-dev librust-crunchy-dev 86s librust-crypto-common-dev librust-derive-arbitrary-dev librust-digest-dev 86s librust-either-dev librust-equivalent-dev librust-erased-serde-dev 86s librust-fallible-iterator-dev librust-flate2-dev librust-funty-dev 86s librust-generic-array-dev librust-getrandom-dev librust-gimli-dev 86s librust-hashbrown-dev librust-indexmap-dev librust-itoa-dev librust-libc-dev 86s librust-libz-sys-dev librust-log-dev librust-memchr-dev librust-memmap2-dev 86s librust-miniz-oxide-dev librust-no-panic-dev librust-object-dev 86s librust-once-cell-dev librust-parking-lot-core-dev librust-pkg-config-dev 86s librust-portable-atomic-dev librust-ppv-lite86-dev librust-proc-macro2-dev 86s librust-quote-dev librust-radium-dev librust-rand-chacha-dev 86s librust-rand-core+getrandom-dev librust-rand-core+serde-dev 86s librust-rand-core+std-dev librust-rand-core-dev librust-rand-dev 86s librust-rayon-core-dev librust-rayon-dev librust-rustc-demangle-dev 86s librust-rustc-std-workspace-core-dev librust-ruzstd-dev librust-ryu-dev 86s librust-serde-derive-dev librust-serde-dev librust-serde-fmt-dev 86s librust-serde-json-dev librust-serde-test-dev librust-smallvec-dev 86s librust-stable-deref-trait-dev librust-static-assertions-dev 86s librust-subtle-dev librust-sval-buffer-dev librust-sval-derive-dev 86s librust-sval-dev librust-sval-dynamic-dev librust-sval-fmt-dev 86s librust-sval-ref-dev librust-sval-serde-dev librust-syn-dev librust-tap-dev 86s librust-tiny-keccak-dev librust-traitobject-dev librust-twox-hash-dev 86s librust-typed-arena-dev librust-typemap-dev librust-typenum-dev 86s librust-unicode-ident-dev librust-unsafe-any-dev librust-value-bag-dev 86s librust-value-bag-serde1-dev librust-value-bag-sval2-dev 86s librust-version-check-dev librust-wyz-dev librust-zerocopy-derive-dev 86s librust-zerocopy-dev librust-zeroize-derive-dev librust-zeroize-dev 86s libstd-rust-1.84 libstd-rust-1.84-dev libtool libubsan1 m4 pkgconf 86s pkgconf-bin po-debconf rustc rustc-1.84 zlib1g-dev 87s 0 upgraded, 151 newly installed, 0 to remove and 0 not upgraded. 87s Need to get 138 MB of archives. 87s After this operation, 532 MB of additional disk space will be used. 87s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x m4 s390x 1.4.19-5 [259 kB] 87s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x autoconf all 2.72-3 [382 kB] 87s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x autotools-dev all 20220109.1 [44.9 kB] 87s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x automake all 1:1.17-3 [572 kB] 87s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x autopoint all 0.23.1-1 [619 kB] 87s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libgit2-1.9 s390x 1.9.0~ds-0ubuntu1 [601 kB] 87s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libstd-rust-1.84 s390x 1.84.0+dfsg0ubuntu1-0ubuntu1 [29.9 MB] 89s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libstd-rust-1.84-dev s390x 1.84.0+dfsg0ubuntu1-0ubuntu1 [47.9 MB] 90s Get:9 http://ftpmaster.internal/ubuntu plucky/main s390x libisl23 s390x 0.27-1 [704 kB] 90s Get:10 http://ftpmaster.internal/ubuntu plucky/main s390x libmpc3 s390x 1.3.1-1build2 [57.8 kB] 90s Get:11 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-14-s390x-linux-gnu s390x 14.2.0-16ubuntu1 [9572 kB] 91s Get:12 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-14 s390x 14.2.0-16ubuntu1 [1032 B] 91s Get:13 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-s390x-linux-gnu s390x 4:14.2.0-1ubuntu1 [5556 B] 91s Get:14 http://ftpmaster.internal/ubuntu plucky/main s390x cpp s390x 4:14.2.0-1ubuntu1 [22.4 kB] 91s Get:15 http://ftpmaster.internal/ubuntu plucky/main s390x libcc1-0 s390x 14.2.0-16ubuntu1 [50.7 kB] 91s Get:16 http://ftpmaster.internal/ubuntu plucky/main s390x libgomp1 s390x 14.2.0-16ubuntu1 [151 kB] 91s Get:17 http://ftpmaster.internal/ubuntu plucky/main s390x libitm1 s390x 14.2.0-16ubuntu1 [30.9 kB] 91s Get:18 http://ftpmaster.internal/ubuntu plucky/main s390x libasan8 s390x 14.2.0-16ubuntu1 [2964 kB] 91s Get:19 http://ftpmaster.internal/ubuntu plucky/main s390x libubsan1 s390x 14.2.0-16ubuntu1 [1184 kB] 91s Get:20 http://ftpmaster.internal/ubuntu plucky/main s390x libgcc-14-dev s390x 14.2.0-16ubuntu1 [1037 kB] 91s Get:21 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14-s390x-linux-gnu s390x 14.2.0-16ubuntu1 [18.7 MB] 92s Get:22 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14 s390x 14.2.0-16ubuntu1 [525 kB] 92s Get:23 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-s390x-linux-gnu s390x 4:14.2.0-1ubuntu1 [1204 B] 92s Get:24 http://ftpmaster.internal/ubuntu plucky/main s390x gcc s390x 4:14.2.0-1ubuntu1 [5004 B] 92s Get:25 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x rustc-1.84 s390x 1.84.0+dfsg0ubuntu1-0ubuntu1 [6414 kB] 92s Get:26 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x cargo-1.84 s390x 1.84.0+dfsg0ubuntu1-0ubuntu1 [7497 kB] 93s Get:27 http://ftpmaster.internal/ubuntu plucky/main s390x libdebhelper-perl all 13.23ubuntu1 [95.1 kB] 93s Get:28 http://ftpmaster.internal/ubuntu plucky/main s390x libtool all 2.5.4-3build1 [168 kB] 93s Get:29 http://ftpmaster.internal/ubuntu plucky/main s390x dh-autoreconf all 20 [16.1 kB] 93s Get:30 http://ftpmaster.internal/ubuntu plucky/main s390x libarchive-zip-perl all 1.68-1 [90.2 kB] 93s Get:31 http://ftpmaster.internal/ubuntu plucky/main s390x libfile-stripnondeterminism-perl all 1.14.1-2 [20.3 kB] 93s Get:32 http://ftpmaster.internal/ubuntu plucky/main s390x dh-strip-nondeterminism all 1.14.1-2 [5064 B] 93s Get:33 http://ftpmaster.internal/ubuntu plucky/main s390x debugedit s390x 1:5.1-2 [50.1 kB] 93s Get:34 http://ftpmaster.internal/ubuntu plucky/main s390x dwz s390x 0.15-1build6 [122 kB] 93s Get:35 http://ftpmaster.internal/ubuntu plucky/main s390x gettext s390x 0.23.1-1 [1065 kB] 93s Get:36 http://ftpmaster.internal/ubuntu plucky/main s390x intltool-debian all 0.35.0+20060710.6 [23.2 kB] 93s Get:37 http://ftpmaster.internal/ubuntu plucky/main s390x po-debconf all 1.0.21+nmu1 [233 kB] 93s Get:38 http://ftpmaster.internal/ubuntu plucky/main s390x debhelper all 13.23ubuntu1 [895 kB] 93s Get:39 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x rustc s390x 1.84.0ubuntu1 [2830 B] 93s Get:40 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x cargo s390x 1.84.0ubuntu1 [2240 B] 93s Get:41 http://ftpmaster.internal/ubuntu plucky/main s390x dh-cargo-tools all 31ubuntu4 [5834 B] 93s Get:42 http://ftpmaster.internal/ubuntu plucky/main s390x dh-cargo all 31ubuntu4 [8668 B] 93s Get:43 http://ftpmaster.internal/ubuntu plucky/main s390x libpkgconf3 s390x 1.8.1-4 [31.2 kB] 93s Get:44 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-cfg-if-dev s390x 1.0.0-1 [10.5 kB] 93s Get:45 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-cpp-demangle-dev s390x 0.4.0-1 [66.1 kB] 93s Get:46 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-fallible-iterator-dev s390x 0.3.0-2 [20.3 kB] 93s Get:47 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-unicode-ident-dev s390x 1.0.13-1 [38.5 kB] 93s Get:48 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-proc-macro2-dev s390x 1.0.92-1 [46.1 kB] 93s Get:49 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-quote-dev s390x 1.0.37-1 [29.5 kB] 93s Get:50 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-syn-dev s390x 2.0.96-2 [227 kB] 93s Get:51 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-derive-arbitrary-dev s390x 1.4.1-1 [13.5 kB] 93s Get:52 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-arbitrary-dev s390x 1.4.1-1 [36.9 kB] 93s Get:53 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-equivalent-dev s390x 1.0.1-1 [8240 B] 93s Get:54 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-critical-section-dev s390x 1.2.0-1 [21.0 kB] 93s Get:55 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-serde-derive-dev s390x 1.0.217-1 [51.2 kB] 93s Get:56 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-serde-dev s390x 1.0.217-1 [67.2 kB] 93s Get:57 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-portable-atomic-dev s390x 1.10.0-3 [128 kB] 93s Get:58 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rustc-std-workspace-core-dev s390x 1.0.0-1 [3020 B] 93s Get:59 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-libc-dev s390x 0.2.169-1 [382 kB] 93s Get:60 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-getrandom-dev s390x 0.2.15-1 [37.8 kB] 93s Get:61 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-smallvec-dev s390x 1.13.2-1 [35.5 kB] 93s Get:62 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-parking-lot-core-dev s390x 0.9.10-1 [32.6 kB] 93s Get:63 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-once-cell-dev s390x 1.20.2-1 [31.9 kB] 93s Get:64 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-crunchy-dev s390x 0.2.2-1 [5340 B] 93s Get:65 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-tiny-keccak-dev s390x 2.0.2-1 [20.9 kB] 93s Get:66 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-const-random-macro-dev s390x 0.1.16-2 [10.5 kB] 93s Get:67 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-const-random-dev s390x 0.1.17-2 [8590 B] 93s Get:68 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-version-check-dev s390x 0.9.5-1 [16.9 kB] 93s Get:69 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-byteorder-dev s390x 1.5.0-1 [22.4 kB] 93s Get:70 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-zerocopy-derive-dev s390x 0.7.34-1 [30.3 kB] 93s Get:71 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-zerocopy-dev s390x 0.7.34-1 [117 kB] 93s Get:72 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-ahash-dev all 0.8.11-9 [38.1 kB] 93s Get:73 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-allocator-api2-dev s390x 0.2.16-1 [54.8 kB] 93s Get:74 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-compiler-builtins-dev s390x 0.1.139-1 [178 kB] 93s Get:75 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-either-dev s390x 1.13.0-1 [20.2 kB] 93s Get:76 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-crossbeam-utils-dev s390x 0.8.19-1 [41.1 kB] 93s Get:77 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-crossbeam-epoch-dev s390x 0.9.18-1 [42.3 kB] 93s Get:78 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-crossbeam-epoch+std-dev s390x 0.9.18-1 [1128 B] 93s Get:79 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-crossbeam-deque-dev s390x 0.8.5-1 [22.4 kB] 93s Get:80 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rayon-core-dev s390x 1.12.1-1 [63.7 kB] 93s Get:81 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rayon-dev s390x 1.10.0-1 [149 kB] 93s Get:82 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-hashbrown-dev s390x 0.14.5-5 [110 kB] 93s Get:83 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-indexmap-dev s390x 2.7.0-1 [69.4 kB] 93s Get:84 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-stable-deref-trait-dev s390x 1.2.0-1 [9794 B] 93s Get:85 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-gimli-dev s390x 0.31.1-2 [216 kB] 93s Get:86 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-memmap2-dev s390x 0.9.5-1 [31.6 kB] 93s Get:87 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-crc32fast-dev s390x 1.4.2-1 [39.8 kB] 93s Get:88 http://ftpmaster.internal/ubuntu plucky/main s390x pkgconf-bin s390x 1.8.1-4 [21.5 kB] 93s Get:89 http://ftpmaster.internal/ubuntu plucky/main s390x pkgconf s390x 1.8.1-4 [16.7 kB] 93s Get:90 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-pkg-config-dev s390x 0.3.31-1 [23.5 kB] 93s Get:91 http://ftpmaster.internal/ubuntu plucky/main s390x zlib1g-dev s390x 1:1.3.dfsg+really1.3.1-1ubuntu1 [898 kB] 93s Get:92 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-libz-sys-dev s390x 1.1.20-1 [19.7 kB] 93s Get:93 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-adler-dev s390x 1.0.2-2 [15.3 kB] 93s Get:94 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-miniz-oxide-dev s390x 0.7.1-1 [51.5 kB] 93s Get:95 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-flate2-dev s390x 1.0.34-1 [94.5 kB] 93s Get:96 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-sval-derive-dev s390x 2.6.1-2 [11.0 kB] 93s Get:97 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-sval-dev s390x 2.6.1-2 [28.0 kB] 93s Get:98 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-sval-ref-dev s390x 2.6.1-1 [8942 B] 93s Get:99 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-erased-serde-dev s390x 0.3.31-1 [22.7 kB] 93s Get:100 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-serde-fmt-dev all 1.0.3-4 [7202 B] 93s Get:101 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-no-panic-dev s390x 0.1.32-1 [14.6 kB] 93s Get:102 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-itoa-dev s390x 1.0.14-1 [13.5 kB] 94s Get:103 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-ryu-dev s390x 1.0.19-1 [43.1 kB] 94s Get:104 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-serde-json-dev s390x 1.0.133-1 [130 kB] 94s Get:105 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-serde-test-dev s390x 1.0.171-1 [20.6 kB] 94s Get:106 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-value-bag-serde1-dev s390x 1.9.0-1 [7820 B] 94s Get:107 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-sval-buffer-dev s390x 2.6.1-1 [16.8 kB] 94s Get:108 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-sval-dynamic-dev s390x 2.6.1-1 [9542 B] 94s Get:109 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-sval-fmt-dev s390x 2.6.1-1 [12.0 kB] 94s Get:110 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-sval-serde-dev s390x 2.6.1-1 [13.2 kB] 94s Get:111 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-value-bag-sval2-dev s390x 1.9.0-1 [7862 B] 94s Get:112 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-value-bag-dev s390x 1.9.0-1 [37.6 kB] 94s Get:113 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-log-dev s390x 0.4.22-1 [43.0 kB] 94s Get:114 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-memchr-dev s390x 2.7.4-1 [71.8 kB] 94s Get:115 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-blobby-dev s390x 0.3.1-1 [11.3 kB] 94s Get:116 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-typenum-dev s390x 1.17.0-2 [41.2 kB] 94s Get:117 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-zeroize-derive-dev s390x 1.4.2-1 [12.7 kB] 94s Get:118 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-zeroize-dev s390x 1.8.1-1 [21.6 kB] 94s Get:119 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-generic-array-dev s390x 0.14.7-1 [16.9 kB] 94s Get:120 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-block-buffer-dev s390x 0.10.2-2 [12.2 kB] 94s Get:121 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-const-oid-dev s390x 0.9.6-1 [41.5 kB] 94s Get:122 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rand-core-dev s390x 0.6.4-2 [23.8 kB] 94s Get:123 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rand-core+getrandom-dev s390x 0.6.4-2 [1054 B] 94s Get:124 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-crypto-common-dev s390x 0.1.6-1 [10.5 kB] 94s Get:125 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-subtle-dev s390x 2.6.1-1 [16.1 kB] 94s Get:126 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-digest-dev s390x 0.10.7-2 [20.9 kB] 94s Get:127 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-ppv-lite86-dev s390x 0.2.20-1 [22.2 kB] 94s Get:128 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rand-chacha-dev s390x 0.3.1-2 [16.9 kB] 94s Get:129 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rand-core+serde-dev s390x 0.6.4-2 [1108 B] 94s Get:130 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rand-core+std-dev s390x 0.6.4-2 [1052 B] 94s Get:131 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rand-dev s390x 0.8.5-1 [77.5 kB] 94s Get:132 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-static-assertions-dev s390x 1.1.0-1 [19.0 kB] 94s Get:133 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-twox-hash-dev s390x 1.6.3-1 [21.6 kB] 94s Get:134 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-ruzstd-dev s390x 0.7.3-2 [57.7 kB] 94s Get:135 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-object-dev s390x 0.36.5-2 [259 kB] 94s Get:136 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rustc-demangle-dev s390x 0.1.24-1 [28.9 kB] 94s Get:137 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-typed-arena-dev s390x 2.0.2-1 [13.9 kB] 94s Get:138 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-addr2line-dev s390x 0.24.2-2 [34.8 kB] 94s Get:139 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-backtrace-dev s390x 0.3.74-3 [79.8 kB] 94s Get:140 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-anyhow-dev s390x 1.0.86-1 [44.3 kB] 94s Get:141 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-core2-dev s390x 0.4.0-1 [35.8 kB] 94s Get:142 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-bitstream-io-dev s390x 2.5.0-1 [32.8 kB] 94s Get:143 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-funty-dev s390x 2.0.0-1 [13.8 kB] 94s Get:144 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-radium-dev s390x 1.1.0-1 [14.9 kB] 94s Get:145 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-tap-dev s390x 1.0.1-1 [12.7 kB] 94s Get:146 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-traitobject-dev s390x 0.1.0-1 [4540 B] 94s Get:147 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-unsafe-any-dev s390x 0.4.2-2 [4626 B] 94s Get:148 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-typemap-dev s390x 0.3.3-2 [6724 B] 94s Get:149 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-wyz-dev s390x 0.5.1-1 [19.7 kB] 94s Get:150 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-bitvec-dev s390x 1.0.1-1 [179 kB] 94s Get:151 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-bitvec-helpers-dev s390x 3.1.5-1 [7032 B] 95s Fetched 138 MB in 8s (17.4 MB/s) 95s Selecting previously unselected package m4. 95s (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.) 95s Preparing to unpack .../000-m4_1.4.19-5_s390x.deb ... 95s Unpacking m4 (1.4.19-5) ... 95s Selecting previously unselected package autoconf. 95s Preparing to unpack .../001-autoconf_2.72-3_all.deb ... 95s Unpacking autoconf (2.72-3) ... 95s Selecting previously unselected package autotools-dev. 95s Preparing to unpack .../002-autotools-dev_20220109.1_all.deb ... 95s Unpacking autotools-dev (20220109.1) ... 95s Selecting previously unselected package automake. 95s Preparing to unpack .../003-automake_1%3a1.17-3_all.deb ... 95s Unpacking automake (1:1.17-3) ... 95s Selecting previously unselected package autopoint. 95s Preparing to unpack .../004-autopoint_0.23.1-1_all.deb ... 95s Unpacking autopoint (0.23.1-1) ... 95s Selecting previously unselected package libgit2-1.9:s390x. 95s Preparing to unpack .../005-libgit2-1.9_1.9.0~ds-0ubuntu1_s390x.deb ... 95s Unpacking libgit2-1.9:s390x (1.9.0~ds-0ubuntu1) ... 95s Selecting previously unselected package libstd-rust-1.84:s390x. 95s Preparing to unpack .../006-libstd-rust-1.84_1.84.0+dfsg0ubuntu1-0ubuntu1_s390x.deb ... 95s Unpacking libstd-rust-1.84:s390x (1.84.0+dfsg0ubuntu1-0ubuntu1) ... 95s Selecting previously unselected package libstd-rust-1.84-dev:s390x. 95s Preparing to unpack .../007-libstd-rust-1.84-dev_1.84.0+dfsg0ubuntu1-0ubuntu1_s390x.deb ... 95s Unpacking libstd-rust-1.84-dev:s390x (1.84.0+dfsg0ubuntu1-0ubuntu1) ... 96s Selecting previously unselected package libisl23:s390x. 96s Preparing to unpack .../008-libisl23_0.27-1_s390x.deb ... 96s Unpacking libisl23:s390x (0.27-1) ... 96s Selecting previously unselected package libmpc3:s390x. 96s Preparing to unpack .../009-libmpc3_1.3.1-1build2_s390x.deb ... 96s Unpacking libmpc3:s390x (1.3.1-1build2) ... 96s Selecting previously unselected package cpp-14-s390x-linux-gnu. 96s Preparing to unpack .../010-cpp-14-s390x-linux-gnu_14.2.0-16ubuntu1_s390x.deb ... 96s Unpacking cpp-14-s390x-linux-gnu (14.2.0-16ubuntu1) ... 96s Selecting previously unselected package cpp-14. 96s Preparing to unpack .../011-cpp-14_14.2.0-16ubuntu1_s390x.deb ... 96s Unpacking cpp-14 (14.2.0-16ubuntu1) ... 96s Selecting previously unselected package cpp-s390x-linux-gnu. 96s Preparing to unpack .../012-cpp-s390x-linux-gnu_4%3a14.2.0-1ubuntu1_s390x.deb ... 96s Unpacking cpp-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 96s Selecting previously unselected package cpp. 96s Preparing to unpack .../013-cpp_4%3a14.2.0-1ubuntu1_s390x.deb ... 96s Unpacking cpp (4:14.2.0-1ubuntu1) ... 96s Selecting previously unselected package libcc1-0:s390x. 96s Preparing to unpack .../014-libcc1-0_14.2.0-16ubuntu1_s390x.deb ... 96s Unpacking libcc1-0:s390x (14.2.0-16ubuntu1) ... 96s Selecting previously unselected package libgomp1:s390x. 96s Preparing to unpack .../015-libgomp1_14.2.0-16ubuntu1_s390x.deb ... 96s Unpacking libgomp1:s390x (14.2.0-16ubuntu1) ... 96s Selecting previously unselected package libitm1:s390x. 96s Preparing to unpack .../016-libitm1_14.2.0-16ubuntu1_s390x.deb ... 96s Unpacking libitm1:s390x (14.2.0-16ubuntu1) ... 96s Selecting previously unselected package libasan8:s390x. 96s Preparing to unpack .../017-libasan8_14.2.0-16ubuntu1_s390x.deb ... 96s Unpacking libasan8:s390x (14.2.0-16ubuntu1) ... 96s Selecting previously unselected package libubsan1:s390x. 96s Preparing to unpack .../018-libubsan1_14.2.0-16ubuntu1_s390x.deb ... 96s Unpacking libubsan1:s390x (14.2.0-16ubuntu1) ... 96s Selecting previously unselected package libgcc-14-dev:s390x. 96s Preparing to unpack .../019-libgcc-14-dev_14.2.0-16ubuntu1_s390x.deb ... 96s Unpacking libgcc-14-dev:s390x (14.2.0-16ubuntu1) ... 96s Selecting previously unselected package gcc-14-s390x-linux-gnu. 96s Preparing to unpack .../020-gcc-14-s390x-linux-gnu_14.2.0-16ubuntu1_s390x.deb ... 96s Unpacking gcc-14-s390x-linux-gnu (14.2.0-16ubuntu1) ... 97s Selecting previously unselected package gcc-14. 97s Preparing to unpack .../021-gcc-14_14.2.0-16ubuntu1_s390x.deb ... 97s Unpacking gcc-14 (14.2.0-16ubuntu1) ... 97s Selecting previously unselected package gcc-s390x-linux-gnu. 97s Preparing to unpack .../022-gcc-s390x-linux-gnu_4%3a14.2.0-1ubuntu1_s390x.deb ... 97s Unpacking gcc-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 97s Selecting previously unselected package gcc. 97s Preparing to unpack .../023-gcc_4%3a14.2.0-1ubuntu1_s390x.deb ... 97s Unpacking gcc (4:14.2.0-1ubuntu1) ... 97s Selecting previously unselected package rustc-1.84. 97s Preparing to unpack .../024-rustc-1.84_1.84.0+dfsg0ubuntu1-0ubuntu1_s390x.deb ... 97s Unpacking rustc-1.84 (1.84.0+dfsg0ubuntu1-0ubuntu1) ... 97s Selecting previously unselected package cargo-1.84. 97s Preparing to unpack .../025-cargo-1.84_1.84.0+dfsg0ubuntu1-0ubuntu1_s390x.deb ... 97s Unpacking cargo-1.84 (1.84.0+dfsg0ubuntu1-0ubuntu1) ... 97s Selecting previously unselected package libdebhelper-perl. 97s Preparing to unpack .../026-libdebhelper-perl_13.23ubuntu1_all.deb ... 97s Unpacking libdebhelper-perl (13.23ubuntu1) ... 97s Selecting previously unselected package libtool. 97s Preparing to unpack .../027-libtool_2.5.4-3build1_all.deb ... 97s Unpacking libtool (2.5.4-3build1) ... 97s Selecting previously unselected package dh-autoreconf. 97s Preparing to unpack .../028-dh-autoreconf_20_all.deb ... 97s Unpacking dh-autoreconf (20) ... 97s Selecting previously unselected package libarchive-zip-perl. 97s Preparing to unpack .../029-libarchive-zip-perl_1.68-1_all.deb ... 97s Unpacking libarchive-zip-perl (1.68-1) ... 97s Selecting previously unselected package libfile-stripnondeterminism-perl. 97s Preparing to unpack .../030-libfile-stripnondeterminism-perl_1.14.1-2_all.deb ... 97s Unpacking libfile-stripnondeterminism-perl (1.14.1-2) ... 97s Selecting previously unselected package dh-strip-nondeterminism. 97s Preparing to unpack .../031-dh-strip-nondeterminism_1.14.1-2_all.deb ... 97s Unpacking dh-strip-nondeterminism (1.14.1-2) ... 97s Selecting previously unselected package debugedit. 97s Preparing to unpack .../032-debugedit_1%3a5.1-2_s390x.deb ... 97s Unpacking debugedit (1:5.1-2) ... 97s Selecting previously unselected package dwz. 97s Preparing to unpack .../033-dwz_0.15-1build6_s390x.deb ... 97s Unpacking dwz (0.15-1build6) ... 97s Selecting previously unselected package gettext. 97s Preparing to unpack .../034-gettext_0.23.1-1_s390x.deb ... 97s Unpacking gettext (0.23.1-1) ... 97s Selecting previously unselected package intltool-debian. 97s Preparing to unpack .../035-intltool-debian_0.35.0+20060710.6_all.deb ... 97s Unpacking intltool-debian (0.35.0+20060710.6) ... 97s Selecting previously unselected package po-debconf. 97s Preparing to unpack .../036-po-debconf_1.0.21+nmu1_all.deb ... 97s Unpacking po-debconf (1.0.21+nmu1) ... 97s Selecting previously unselected package debhelper. 97s Preparing to unpack .../037-debhelper_13.23ubuntu1_all.deb ... 97s Unpacking debhelper (13.23ubuntu1) ... 97s Selecting previously unselected package rustc. 97s Preparing to unpack .../038-rustc_1.84.0ubuntu1_s390x.deb ... 97s Unpacking rustc (1.84.0ubuntu1) ... 97s Selecting previously unselected package cargo. 97s Preparing to unpack .../039-cargo_1.84.0ubuntu1_s390x.deb ... 97s Unpacking cargo (1.84.0ubuntu1) ... 97s Selecting previously unselected package dh-cargo-tools. 97s Preparing to unpack .../040-dh-cargo-tools_31ubuntu4_all.deb ... 97s Unpacking dh-cargo-tools (31ubuntu4) ... 97s Selecting previously unselected package dh-cargo. 97s Preparing to unpack .../041-dh-cargo_31ubuntu4_all.deb ... 97s Unpacking dh-cargo (31ubuntu4) ... 97s Selecting previously unselected package libpkgconf3:s390x. 97s Preparing to unpack .../042-libpkgconf3_1.8.1-4_s390x.deb ... 97s Unpacking libpkgconf3:s390x (1.8.1-4) ... 97s Selecting previously unselected package librust-cfg-if-dev:s390x. 97s Preparing to unpack .../043-librust-cfg-if-dev_1.0.0-1_s390x.deb ... 97s Unpacking librust-cfg-if-dev:s390x (1.0.0-1) ... 97s Selecting previously unselected package librust-cpp-demangle-dev:s390x. 97s Preparing to unpack .../044-librust-cpp-demangle-dev_0.4.0-1_s390x.deb ... 97s Unpacking librust-cpp-demangle-dev:s390x (0.4.0-1) ... 97s Selecting previously unselected package librust-fallible-iterator-dev:s390x. 97s Preparing to unpack .../045-librust-fallible-iterator-dev_0.3.0-2_s390x.deb ... 97s Unpacking librust-fallible-iterator-dev:s390x (0.3.0-2) ... 97s Selecting previously unselected package librust-unicode-ident-dev:s390x. 97s Preparing to unpack .../046-librust-unicode-ident-dev_1.0.13-1_s390x.deb ... 97s Unpacking librust-unicode-ident-dev:s390x (1.0.13-1) ... 97s Selecting previously unselected package librust-proc-macro2-dev:s390x. 97s Preparing to unpack .../047-librust-proc-macro2-dev_1.0.92-1_s390x.deb ... 97s Unpacking librust-proc-macro2-dev:s390x (1.0.92-1) ... 97s Selecting previously unselected package librust-quote-dev:s390x. 97s Preparing to unpack .../048-librust-quote-dev_1.0.37-1_s390x.deb ... 97s Unpacking librust-quote-dev:s390x (1.0.37-1) ... 97s Selecting previously unselected package librust-syn-dev:s390x. 97s Preparing to unpack .../049-librust-syn-dev_2.0.96-2_s390x.deb ... 97s Unpacking librust-syn-dev:s390x (2.0.96-2) ... 97s Selecting previously unselected package librust-derive-arbitrary-dev:s390x. 97s Preparing to unpack .../050-librust-derive-arbitrary-dev_1.4.1-1_s390x.deb ... 97s Unpacking librust-derive-arbitrary-dev:s390x (1.4.1-1) ... 97s Selecting previously unselected package librust-arbitrary-dev:s390x. 97s Preparing to unpack .../051-librust-arbitrary-dev_1.4.1-1_s390x.deb ... 97s Unpacking librust-arbitrary-dev:s390x (1.4.1-1) ... 97s Selecting previously unselected package librust-equivalent-dev:s390x. 97s Preparing to unpack .../052-librust-equivalent-dev_1.0.1-1_s390x.deb ... 97s Unpacking librust-equivalent-dev:s390x (1.0.1-1) ... 97s Selecting previously unselected package librust-critical-section-dev:s390x. 97s Preparing to unpack .../053-librust-critical-section-dev_1.2.0-1_s390x.deb ... 97s Unpacking librust-critical-section-dev:s390x (1.2.0-1) ... 97s Selecting previously unselected package librust-serde-derive-dev:s390x. 97s Preparing to unpack .../054-librust-serde-derive-dev_1.0.217-1_s390x.deb ... 97s Unpacking librust-serde-derive-dev:s390x (1.0.217-1) ... 97s Selecting previously unselected package librust-serde-dev:s390x. 97s Preparing to unpack .../055-librust-serde-dev_1.0.217-1_s390x.deb ... 97s Unpacking librust-serde-dev:s390x (1.0.217-1) ... 97s Selecting previously unselected package librust-portable-atomic-dev:s390x. 97s Preparing to unpack .../056-librust-portable-atomic-dev_1.10.0-3_s390x.deb ... 97s Unpacking librust-portable-atomic-dev:s390x (1.10.0-3) ... 97s Selecting previously unselected package librust-rustc-std-workspace-core-dev:s390x. 97s Preparing to unpack .../057-librust-rustc-std-workspace-core-dev_1.0.0-1_s390x.deb ... 97s Unpacking librust-rustc-std-workspace-core-dev:s390x (1.0.0-1) ... 97s Selecting previously unselected package librust-libc-dev:s390x. 97s Preparing to unpack .../058-librust-libc-dev_0.2.169-1_s390x.deb ... 97s Unpacking librust-libc-dev:s390x (0.2.169-1) ... 97s Selecting previously unselected package librust-getrandom-dev:s390x. 97s Preparing to unpack .../059-librust-getrandom-dev_0.2.15-1_s390x.deb ... 97s Unpacking librust-getrandom-dev:s390x (0.2.15-1) ... 97s Selecting previously unselected package librust-smallvec-dev:s390x. 97s Preparing to unpack .../060-librust-smallvec-dev_1.13.2-1_s390x.deb ... 97s Unpacking librust-smallvec-dev:s390x (1.13.2-1) ... 97s Selecting previously unselected package librust-parking-lot-core-dev:s390x. 97s Preparing to unpack .../061-librust-parking-lot-core-dev_0.9.10-1_s390x.deb ... 97s Unpacking librust-parking-lot-core-dev:s390x (0.9.10-1) ... 97s Selecting previously unselected package librust-once-cell-dev:s390x. 97s Preparing to unpack .../062-librust-once-cell-dev_1.20.2-1_s390x.deb ... 97s Unpacking librust-once-cell-dev:s390x (1.20.2-1) ... 97s Selecting previously unselected package librust-crunchy-dev:s390x. 97s Preparing to unpack .../063-librust-crunchy-dev_0.2.2-1_s390x.deb ... 97s Unpacking librust-crunchy-dev:s390x (0.2.2-1) ... 97s Selecting previously unselected package librust-tiny-keccak-dev:s390x. 97s Preparing to unpack .../064-librust-tiny-keccak-dev_2.0.2-1_s390x.deb ... 97s Unpacking librust-tiny-keccak-dev:s390x (2.0.2-1) ... 97s Selecting previously unselected package librust-const-random-macro-dev:s390x. 97s Preparing to unpack .../065-librust-const-random-macro-dev_0.1.16-2_s390x.deb ... 97s Unpacking librust-const-random-macro-dev:s390x (0.1.16-2) ... 97s Selecting previously unselected package librust-const-random-dev:s390x. 97s Preparing to unpack .../066-librust-const-random-dev_0.1.17-2_s390x.deb ... 97s Unpacking librust-const-random-dev:s390x (0.1.17-2) ... 97s Selecting previously unselected package librust-version-check-dev:s390x. 97s Preparing to unpack .../067-librust-version-check-dev_0.9.5-1_s390x.deb ... 97s Unpacking librust-version-check-dev:s390x (0.9.5-1) ... 97s Selecting previously unselected package librust-byteorder-dev:s390x. 97s Preparing to unpack .../068-librust-byteorder-dev_1.5.0-1_s390x.deb ... 97s Unpacking librust-byteorder-dev:s390x (1.5.0-1) ... 97s Selecting previously unselected package librust-zerocopy-derive-dev:s390x. 97s Preparing to unpack .../069-librust-zerocopy-derive-dev_0.7.34-1_s390x.deb ... 97s Unpacking librust-zerocopy-derive-dev:s390x (0.7.34-1) ... 98s Selecting previously unselected package librust-zerocopy-dev:s390x. 98s Preparing to unpack .../070-librust-zerocopy-dev_0.7.34-1_s390x.deb ... 98s Unpacking librust-zerocopy-dev:s390x (0.7.34-1) ... 98s Selecting previously unselected package librust-ahash-dev. 98s Preparing to unpack .../071-librust-ahash-dev_0.8.11-9_all.deb ... 98s Unpacking librust-ahash-dev (0.8.11-9) ... 98s Selecting previously unselected package librust-allocator-api2-dev:s390x. 98s Preparing to unpack .../072-librust-allocator-api2-dev_0.2.16-1_s390x.deb ... 98s Unpacking librust-allocator-api2-dev:s390x (0.2.16-1) ... 98s Selecting previously unselected package librust-compiler-builtins-dev:s390x. 98s Preparing to unpack .../073-librust-compiler-builtins-dev_0.1.139-1_s390x.deb ... 98s Unpacking librust-compiler-builtins-dev:s390x (0.1.139-1) ... 98s Selecting previously unselected package librust-either-dev:s390x. 98s Preparing to unpack .../074-librust-either-dev_1.13.0-1_s390x.deb ... 98s Unpacking librust-either-dev:s390x (1.13.0-1) ... 98s Selecting previously unselected package librust-crossbeam-utils-dev:s390x. 98s Preparing to unpack .../075-librust-crossbeam-utils-dev_0.8.19-1_s390x.deb ... 98s Unpacking librust-crossbeam-utils-dev:s390x (0.8.19-1) ... 98s Selecting previously unselected package librust-crossbeam-epoch-dev:s390x. 98s Preparing to unpack .../076-librust-crossbeam-epoch-dev_0.9.18-1_s390x.deb ... 98s Unpacking librust-crossbeam-epoch-dev:s390x (0.9.18-1) ... 98s Selecting previously unselected package librust-crossbeam-epoch+std-dev:s390x. 98s Preparing to unpack .../077-librust-crossbeam-epoch+std-dev_0.9.18-1_s390x.deb ... 98s Unpacking librust-crossbeam-epoch+std-dev:s390x (0.9.18-1) ... 98s Selecting previously unselected package librust-crossbeam-deque-dev:s390x. 98s Preparing to unpack .../078-librust-crossbeam-deque-dev_0.8.5-1_s390x.deb ... 98s Unpacking librust-crossbeam-deque-dev:s390x (0.8.5-1) ... 98s Selecting previously unselected package librust-rayon-core-dev:s390x. 98s Preparing to unpack .../079-librust-rayon-core-dev_1.12.1-1_s390x.deb ... 98s Unpacking librust-rayon-core-dev:s390x (1.12.1-1) ... 98s Selecting previously unselected package librust-rayon-dev:s390x. 98s Preparing to unpack .../080-librust-rayon-dev_1.10.0-1_s390x.deb ... 98s Unpacking librust-rayon-dev:s390x (1.10.0-1) ... 98s Selecting previously unselected package librust-hashbrown-dev:s390x. 98s Preparing to unpack .../081-librust-hashbrown-dev_0.14.5-5_s390x.deb ... 98s Unpacking librust-hashbrown-dev:s390x (0.14.5-5) ... 98s Selecting previously unselected package librust-indexmap-dev:s390x. 98s Preparing to unpack .../082-librust-indexmap-dev_2.7.0-1_s390x.deb ... 98s Unpacking librust-indexmap-dev:s390x (2.7.0-1) ... 98s Selecting previously unselected package librust-stable-deref-trait-dev:s390x. 98s Preparing to unpack .../083-librust-stable-deref-trait-dev_1.2.0-1_s390x.deb ... 98s Unpacking librust-stable-deref-trait-dev:s390x (1.2.0-1) ... 98s Selecting previously unselected package librust-gimli-dev:s390x. 98s Preparing to unpack .../084-librust-gimli-dev_0.31.1-2_s390x.deb ... 98s Unpacking librust-gimli-dev:s390x (0.31.1-2) ... 98s Selecting previously unselected package librust-memmap2-dev:s390x. 98s Preparing to unpack .../085-librust-memmap2-dev_0.9.5-1_s390x.deb ... 98s Unpacking librust-memmap2-dev:s390x (0.9.5-1) ... 98s Selecting previously unselected package librust-crc32fast-dev:s390x. 98s Preparing to unpack .../086-librust-crc32fast-dev_1.4.2-1_s390x.deb ... 98s Unpacking librust-crc32fast-dev:s390x (1.4.2-1) ... 98s Selecting previously unselected package pkgconf-bin. 98s Preparing to unpack .../087-pkgconf-bin_1.8.1-4_s390x.deb ... 98s Unpacking pkgconf-bin (1.8.1-4) ... 98s Selecting previously unselected package pkgconf:s390x. 98s Preparing to unpack .../088-pkgconf_1.8.1-4_s390x.deb ... 98s Unpacking pkgconf:s390x (1.8.1-4) ... 98s Selecting previously unselected package librust-pkg-config-dev:s390x. 98s Preparing to unpack .../089-librust-pkg-config-dev_0.3.31-1_s390x.deb ... 98s Unpacking librust-pkg-config-dev:s390x (0.3.31-1) ... 98s Selecting previously unselected package zlib1g-dev:s390x. 98s Preparing to unpack .../090-zlib1g-dev_1%3a1.3.dfsg+really1.3.1-1ubuntu1_s390x.deb ... 98s Unpacking zlib1g-dev:s390x (1:1.3.dfsg+really1.3.1-1ubuntu1) ... 98s Selecting previously unselected package librust-libz-sys-dev:s390x. 98s Preparing to unpack .../091-librust-libz-sys-dev_1.1.20-1_s390x.deb ... 98s Unpacking librust-libz-sys-dev:s390x (1.1.20-1) ... 98s Selecting previously unselected package librust-adler-dev:s390x. 98s Preparing to unpack .../092-librust-adler-dev_1.0.2-2_s390x.deb ... 98s Unpacking librust-adler-dev:s390x (1.0.2-2) ... 98s Selecting previously unselected package librust-miniz-oxide-dev:s390x. 98s Preparing to unpack .../093-librust-miniz-oxide-dev_0.7.1-1_s390x.deb ... 98s Unpacking librust-miniz-oxide-dev:s390x (0.7.1-1) ... 98s Selecting previously unselected package librust-flate2-dev:s390x. 98s Preparing to unpack .../094-librust-flate2-dev_1.0.34-1_s390x.deb ... 98s Unpacking librust-flate2-dev:s390x (1.0.34-1) ... 98s Selecting previously unselected package librust-sval-derive-dev:s390x. 98s Preparing to unpack .../095-librust-sval-derive-dev_2.6.1-2_s390x.deb ... 98s Unpacking librust-sval-derive-dev:s390x (2.6.1-2) ... 98s Selecting previously unselected package librust-sval-dev:s390x. 98s Preparing to unpack .../096-librust-sval-dev_2.6.1-2_s390x.deb ... 98s Unpacking librust-sval-dev:s390x (2.6.1-2) ... 98s Selecting previously unselected package librust-sval-ref-dev:s390x. 98s Preparing to unpack .../097-librust-sval-ref-dev_2.6.1-1_s390x.deb ... 98s Unpacking librust-sval-ref-dev:s390x (2.6.1-1) ... 98s Selecting previously unselected package librust-erased-serde-dev:s390x. 98s Preparing to unpack .../098-librust-erased-serde-dev_0.3.31-1_s390x.deb ... 98s Unpacking librust-erased-serde-dev:s390x (0.3.31-1) ... 98s Selecting previously unselected package librust-serde-fmt-dev. 98s Preparing to unpack .../099-librust-serde-fmt-dev_1.0.3-4_all.deb ... 98s Unpacking librust-serde-fmt-dev (1.0.3-4) ... 98s Selecting previously unselected package librust-no-panic-dev:s390x. 98s Preparing to unpack .../100-librust-no-panic-dev_0.1.32-1_s390x.deb ... 98s Unpacking librust-no-panic-dev:s390x (0.1.32-1) ... 98s Selecting previously unselected package librust-itoa-dev:s390x. 98s Preparing to unpack .../101-librust-itoa-dev_1.0.14-1_s390x.deb ... 98s Unpacking librust-itoa-dev:s390x (1.0.14-1) ... 98s Selecting previously unselected package librust-ryu-dev:s390x. 98s Preparing to unpack .../102-librust-ryu-dev_1.0.19-1_s390x.deb ... 98s Unpacking librust-ryu-dev:s390x (1.0.19-1) ... 98s Selecting previously unselected package librust-serde-json-dev:s390x. 98s Preparing to unpack .../103-librust-serde-json-dev_1.0.133-1_s390x.deb ... 98s Unpacking librust-serde-json-dev:s390x (1.0.133-1) ... 98s Selecting previously unselected package librust-serde-test-dev:s390x. 98s Preparing to unpack .../104-librust-serde-test-dev_1.0.171-1_s390x.deb ... 98s Unpacking librust-serde-test-dev:s390x (1.0.171-1) ... 98s Selecting previously unselected package librust-value-bag-serde1-dev:s390x. 98s Preparing to unpack .../105-librust-value-bag-serde1-dev_1.9.0-1_s390x.deb ... 98s Unpacking librust-value-bag-serde1-dev:s390x (1.9.0-1) ... 98s Selecting previously unselected package librust-sval-buffer-dev:s390x. 98s Preparing to unpack .../106-librust-sval-buffer-dev_2.6.1-1_s390x.deb ... 98s Unpacking librust-sval-buffer-dev:s390x (2.6.1-1) ... 98s Selecting previously unselected package librust-sval-dynamic-dev:s390x. 98s Preparing to unpack .../107-librust-sval-dynamic-dev_2.6.1-1_s390x.deb ... 98s Unpacking librust-sval-dynamic-dev:s390x (2.6.1-1) ... 98s Selecting previously unselected package librust-sval-fmt-dev:s390x. 98s Preparing to unpack .../108-librust-sval-fmt-dev_2.6.1-1_s390x.deb ... 98s Unpacking librust-sval-fmt-dev:s390x (2.6.1-1) ... 98s Selecting previously unselected package librust-sval-serde-dev:s390x. 98s Preparing to unpack .../109-librust-sval-serde-dev_2.6.1-1_s390x.deb ... 98s Unpacking librust-sval-serde-dev:s390x (2.6.1-1) ... 98s Selecting previously unselected package librust-value-bag-sval2-dev:s390x. 98s Preparing to unpack .../110-librust-value-bag-sval2-dev_1.9.0-1_s390x.deb ... 98s Unpacking librust-value-bag-sval2-dev:s390x (1.9.0-1) ... 98s Selecting previously unselected package librust-value-bag-dev:s390x. 98s Preparing to unpack .../111-librust-value-bag-dev_1.9.0-1_s390x.deb ... 98s Unpacking librust-value-bag-dev:s390x (1.9.0-1) ... 98s Selecting previously unselected package librust-log-dev:s390x. 98s Preparing to unpack .../112-librust-log-dev_0.4.22-1_s390x.deb ... 98s Unpacking librust-log-dev:s390x (0.4.22-1) ... 98s Selecting previously unselected package librust-memchr-dev:s390x. 98s Preparing to unpack .../113-librust-memchr-dev_2.7.4-1_s390x.deb ... 98s Unpacking librust-memchr-dev:s390x (2.7.4-1) ... 98s Selecting previously unselected package librust-blobby-dev:s390x. 98s Preparing to unpack .../114-librust-blobby-dev_0.3.1-1_s390x.deb ... 98s Unpacking librust-blobby-dev:s390x (0.3.1-1) ... 98s Selecting previously unselected package librust-typenum-dev:s390x. 98s Preparing to unpack .../115-librust-typenum-dev_1.17.0-2_s390x.deb ... 98s Unpacking librust-typenum-dev:s390x (1.17.0-2) ... 98s Selecting previously unselected package librust-zeroize-derive-dev:s390x. 98s Preparing to unpack .../116-librust-zeroize-derive-dev_1.4.2-1_s390x.deb ... 98s Unpacking librust-zeroize-derive-dev:s390x (1.4.2-1) ... 98s Selecting previously unselected package librust-zeroize-dev:s390x. 98s Preparing to unpack .../117-librust-zeroize-dev_1.8.1-1_s390x.deb ... 98s Unpacking librust-zeroize-dev:s390x (1.8.1-1) ... 98s Selecting previously unselected package librust-generic-array-dev:s390x. 98s Preparing to unpack .../118-librust-generic-array-dev_0.14.7-1_s390x.deb ... 98s Unpacking librust-generic-array-dev:s390x (0.14.7-1) ... 98s Selecting previously unselected package librust-block-buffer-dev:s390x. 98s Preparing to unpack .../119-librust-block-buffer-dev_0.10.2-2_s390x.deb ... 98s Unpacking librust-block-buffer-dev:s390x (0.10.2-2) ... 98s Selecting previously unselected package librust-const-oid-dev:s390x. 98s Preparing to unpack .../120-librust-const-oid-dev_0.9.6-1_s390x.deb ... 98s Unpacking librust-const-oid-dev:s390x (0.9.6-1) ... 98s Selecting previously unselected package librust-rand-core-dev:s390x. 98s Preparing to unpack .../121-librust-rand-core-dev_0.6.4-2_s390x.deb ... 98s Unpacking librust-rand-core-dev:s390x (0.6.4-2) ... 98s Selecting previously unselected package librust-rand-core+getrandom-dev:s390x. 98s Preparing to unpack .../122-librust-rand-core+getrandom-dev_0.6.4-2_s390x.deb ... 98s Unpacking librust-rand-core+getrandom-dev:s390x (0.6.4-2) ... 98s Selecting previously unselected package librust-crypto-common-dev:s390x. 98s Preparing to unpack .../123-librust-crypto-common-dev_0.1.6-1_s390x.deb ... 98s Unpacking librust-crypto-common-dev:s390x (0.1.6-1) ... 98s Selecting previously unselected package librust-subtle-dev:s390x. 98s Preparing to unpack .../124-librust-subtle-dev_2.6.1-1_s390x.deb ... 98s Unpacking librust-subtle-dev:s390x (2.6.1-1) ... 98s Selecting previously unselected package librust-digest-dev:s390x. 98s Preparing to unpack .../125-librust-digest-dev_0.10.7-2_s390x.deb ... 98s Unpacking librust-digest-dev:s390x (0.10.7-2) ... 98s Selecting previously unselected package librust-ppv-lite86-dev:s390x. 98s Preparing to unpack .../126-librust-ppv-lite86-dev_0.2.20-1_s390x.deb ... 98s Unpacking librust-ppv-lite86-dev:s390x (0.2.20-1) ... 98s Selecting previously unselected package librust-rand-chacha-dev:s390x. 98s Preparing to unpack .../127-librust-rand-chacha-dev_0.3.1-2_s390x.deb ... 98s Unpacking librust-rand-chacha-dev:s390x (0.3.1-2) ... 98s Selecting previously unselected package librust-rand-core+serde-dev:s390x. 98s Preparing to unpack .../128-librust-rand-core+serde-dev_0.6.4-2_s390x.deb ... 98s Unpacking librust-rand-core+serde-dev:s390x (0.6.4-2) ... 98s Selecting previously unselected package librust-rand-core+std-dev:s390x. 98s Preparing to unpack .../129-librust-rand-core+std-dev_0.6.4-2_s390x.deb ... 98s Unpacking librust-rand-core+std-dev:s390x (0.6.4-2) ... 98s Selecting previously unselected package librust-rand-dev:s390x. 98s Preparing to unpack .../130-librust-rand-dev_0.8.5-1_s390x.deb ... 98s Unpacking librust-rand-dev:s390x (0.8.5-1) ... 98s Selecting previously unselected package librust-static-assertions-dev:s390x. 98s Preparing to unpack .../131-librust-static-assertions-dev_1.1.0-1_s390x.deb ... 98s Unpacking librust-static-assertions-dev:s390x (1.1.0-1) ... 98s Selecting previously unselected package librust-twox-hash-dev:s390x. 98s Preparing to unpack .../132-librust-twox-hash-dev_1.6.3-1_s390x.deb ... 98s Unpacking librust-twox-hash-dev:s390x (1.6.3-1) ... 98s Selecting previously unselected package librust-ruzstd-dev:s390x. 98s Preparing to unpack .../133-librust-ruzstd-dev_0.7.3-2_s390x.deb ... 98s Unpacking librust-ruzstd-dev:s390x (0.7.3-2) ... 98s Selecting previously unselected package librust-object-dev:s390x. 98s Preparing to unpack .../134-librust-object-dev_0.36.5-2_s390x.deb ... 98s Unpacking librust-object-dev:s390x (0.36.5-2) ... 98s Selecting previously unselected package librust-rustc-demangle-dev:s390x. 98s Preparing to unpack .../135-librust-rustc-demangle-dev_0.1.24-1_s390x.deb ... 98s Unpacking librust-rustc-demangle-dev:s390x (0.1.24-1) ... 98s Selecting previously unselected package librust-typed-arena-dev:s390x. 98s Preparing to unpack .../136-librust-typed-arena-dev_2.0.2-1_s390x.deb ... 98s Unpacking librust-typed-arena-dev:s390x (2.0.2-1) ... 98s Selecting previously unselected package librust-addr2line-dev:s390x. 98s Preparing to unpack .../137-librust-addr2line-dev_0.24.2-2_s390x.deb ... 98s Unpacking librust-addr2line-dev:s390x (0.24.2-2) ... 98s Selecting previously unselected package librust-backtrace-dev:s390x. 98s Preparing to unpack .../138-librust-backtrace-dev_0.3.74-3_s390x.deb ... 98s Unpacking librust-backtrace-dev:s390x (0.3.74-3) ... 98s Selecting previously unselected package librust-anyhow-dev:s390x. 98s Preparing to unpack .../139-librust-anyhow-dev_1.0.86-1_s390x.deb ... 98s Unpacking librust-anyhow-dev:s390x (1.0.86-1) ... 98s Selecting previously unselected package librust-core2-dev:s390x. 98s Preparing to unpack .../140-librust-core2-dev_0.4.0-1_s390x.deb ... 98s Unpacking librust-core2-dev:s390x (0.4.0-1) ... 98s Selecting previously unselected package librust-bitstream-io-dev:s390x. 98s Preparing to unpack .../141-librust-bitstream-io-dev_2.5.0-1_s390x.deb ... 98s Unpacking librust-bitstream-io-dev:s390x (2.5.0-1) ... 98s Selecting previously unselected package librust-funty-dev:s390x. 98s Preparing to unpack .../142-librust-funty-dev_2.0.0-1_s390x.deb ... 98s Unpacking librust-funty-dev:s390x (2.0.0-1) ... 98s Selecting previously unselected package librust-radium-dev:s390x. 98s Preparing to unpack .../143-librust-radium-dev_1.1.0-1_s390x.deb ... 98s Unpacking librust-radium-dev:s390x (1.1.0-1) ... 98s Selecting previously unselected package librust-tap-dev:s390x. 98s Preparing to unpack .../144-librust-tap-dev_1.0.1-1_s390x.deb ... 98s Unpacking librust-tap-dev:s390x (1.0.1-1) ... 98s Selecting previously unselected package librust-traitobject-dev:s390x. 98s Preparing to unpack .../145-librust-traitobject-dev_0.1.0-1_s390x.deb ... 98s Unpacking librust-traitobject-dev:s390x (0.1.0-1) ... 98s Selecting previously unselected package librust-unsafe-any-dev:s390x. 98s Preparing to unpack .../146-librust-unsafe-any-dev_0.4.2-2_s390x.deb ... 98s Unpacking librust-unsafe-any-dev:s390x (0.4.2-2) ... 98s Selecting previously unselected package librust-typemap-dev:s390x. 98s Preparing to unpack .../147-librust-typemap-dev_0.3.3-2_s390x.deb ... 98s Unpacking librust-typemap-dev:s390x (0.3.3-2) ... 98s Selecting previously unselected package librust-wyz-dev:s390x. 98s Preparing to unpack .../148-librust-wyz-dev_0.5.1-1_s390x.deb ... 98s Unpacking librust-wyz-dev:s390x (0.5.1-1) ... 98s Selecting previously unselected package librust-bitvec-dev:s390x. 98s Preparing to unpack .../149-librust-bitvec-dev_1.0.1-1_s390x.deb ... 98s Unpacking librust-bitvec-dev:s390x (1.0.1-1) ... 98s Selecting previously unselected package librust-bitvec-helpers-dev:s390x. 98s Preparing to unpack .../150-librust-bitvec-helpers-dev_3.1.5-1_s390x.deb ... 98s Unpacking librust-bitvec-helpers-dev:s390x (3.1.5-1) ... 98s Setting up librust-crossbeam-utils-dev:s390x (0.8.19-1) ... 98s Setting up librust-traitobject-dev:s390x (0.1.0-1) ... 98s Setting up librust-either-dev:s390x (1.13.0-1) ... 98s Setting up librust-adler-dev:s390x (1.0.2-2) ... 98s Setting up dh-cargo-tools (31ubuntu4) ... 98s Setting up librust-version-check-dev:s390x (0.9.5-1) ... 98s Setting up libarchive-zip-perl (1.68-1) ... 98s Setting up libdebhelper-perl (13.23ubuntu1) ... 98s Setting up librust-unsafe-any-dev:s390x (0.4.2-2) ... 98s Setting up librust-typed-arena-dev:s390x (2.0.2-1) ... 98s Setting up m4 (1.4.19-5) ... 98s Setting up librust-rustc-demangle-dev:s390x (0.1.24-1) ... 98s Setting up librust-fallible-iterator-dev:s390x (0.3.0-2) ... 98s Setting up librust-ryu-dev:s390x (1.0.19-1) ... 98s Setting up libgomp1:s390x (14.2.0-16ubuntu1) ... 98s Setting up librust-subtle-dev:s390x (2.6.1-1) ... 98s Setting up librust-miniz-oxide-dev:s390x (0.7.1-1) ... 98s Setting up librust-typemap-dev:s390x (0.3.3-2) ... 98s Setting up librust-compiler-builtins-dev:s390x (0.1.139-1) ... 98s Setting up librust-crossbeam-epoch-dev:s390x (0.9.18-1) ... 98s Setting up autotools-dev (20220109.1) ... 98s Setting up librust-tap-dev:s390x (1.0.1-1) ... 98s Setting up libpkgconf3:s390x (1.8.1-4) ... 98s Setting up librust-rustc-std-workspace-core-dev:s390x (1.0.0-1) ... 98s Setting up librust-funty-dev:s390x (2.0.0-1) ... 98s Setting up librust-typenum-dev:s390x (1.17.0-2) ... 98s Setting up librust-stable-deref-trait-dev:s390x (1.2.0-1) ... 98s Setting up librust-critical-section-dev:s390x (1.2.0-1) ... 98s Setting up libmpc3:s390x (1.3.1-1build2) ... 98s Setting up librust-rand-core-dev:s390x (0.6.4-2) ... 98s Setting up autopoint (0.23.1-1) ... 98s Setting up pkgconf-bin (1.8.1-4) ... 98s Setting up librust-crunchy-dev:s390x (0.2.2-1) ... 98s Setting up libgit2-1.9:s390x (1.9.0~ds-0ubuntu1) ... 98s Setting up autoconf (2.72-3) ... 98s Setting up libstd-rust-1.84:s390x (1.84.0+dfsg0ubuntu1-0ubuntu1) ... 98s Setting up libubsan1:s390x (14.2.0-16ubuntu1) ... 98s Setting up zlib1g-dev:s390x (1:1.3.dfsg+really1.3.1-1ubuntu1) ... 98s Setting up librust-unicode-ident-dev:s390x (1.0.13-1) ... 98s Setting up librust-equivalent-dev:s390x (1.0.1-1) ... 98s Setting up dwz (0.15-1build6) ... 98s Setting up libasan8:s390x (14.2.0-16ubuntu1) ... 98s Setting up libstd-rust-1.84-dev:s390x (1.84.0+dfsg0ubuntu1-0ubuntu1) ... 98s Setting up librust-cfg-if-dev:s390x (1.0.0-1) ... 98s Setting up debugedit (1:5.1-2) ... 98s Setting up librust-blobby-dev:s390x (0.3.1-1) ... 98s Setting up librust-byteorder-dev:s390x (1.5.0-1) ... 98s Setting up librust-static-assertions-dev:s390x (1.1.0-1) ... 98s Setting up libisl23:s390x (0.27-1) ... 98s Setting up librust-cpp-demangle-dev:s390x (0.4.0-1) ... 98s Setting up libcc1-0:s390x (14.2.0-16ubuntu1) ... 98s Setting up libitm1:s390x (14.2.0-16ubuntu1) ... 98s Setting up automake (1:1.17-3) ... 98s update-alternatives: using /usr/bin/automake-1.17 to provide /usr/bin/automake (automake) in auto mode 98s Setting up libfile-stripnondeterminism-perl (1.14.1-2) ... 98s Setting up librust-crossbeam-epoch+std-dev:s390x (0.9.18-1) ... 98s Setting up librust-libc-dev:s390x (0.2.169-1) ... 98s Setting up gettext (0.23.1-1) ... 98s Setting up librust-crossbeam-deque-dev:s390x (0.8.5-1) ... 98s Setting up librust-tiny-keccak-dev:s390x (2.0.2-1) ... 98s Setting up librust-getrandom-dev:s390x (0.2.15-1) ... 98s Setting up librust-memmap2-dev:s390x (0.9.5-1) ... 98s Setting up librust-proc-macro2-dev:s390x (1.0.92-1) ... 98s Setting up librust-rayon-core-dev:s390x (1.12.1-1) ... 98s Setting up pkgconf:s390x (1.8.1-4) ... 98s Setting up intltool-debian (0.35.0+20060710.6) ... 98s Setting up librust-rand-core+getrandom-dev:s390x (0.6.4-2) ... 98s Setting up cpp-14-s390x-linux-gnu (14.2.0-16ubuntu1) ... 98s Setting up cpp-14 (14.2.0-16ubuntu1) ... 98s Setting up dh-strip-nondeterminism (1.14.1-2) ... 98s Setting up librust-crc32fast-dev:s390x (1.4.2-1) ... 98s Setting up libgcc-14-dev:s390x (14.2.0-16ubuntu1) ... 98s Setting up librust-rayon-dev:s390x (1.10.0-1) ... 98s Setting up librust-pkg-config-dev:s390x (0.3.31-1) ... 98s Setting up cpp-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 98s Setting up po-debconf (1.0.21+nmu1) ... 98s Setting up librust-quote-dev:s390x (1.0.37-1) ... 98s Setting up librust-libz-sys-dev:s390x (1.1.20-1) ... 98s Setting up librust-syn-dev:s390x (2.0.96-2) ... 98s Setting up librust-rand-core+std-dev:s390x (0.6.4-2) ... 98s Setting up gcc-14-s390x-linux-gnu (14.2.0-16ubuntu1) ... 98s Setting up gcc-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 98s Setting up librust-sval-derive-dev:s390x (2.6.1-2) ... 98s Setting up librust-zeroize-derive-dev:s390x (1.4.2-1) ... 98s Setting up librust-no-panic-dev:s390x (0.1.32-1) ... 98s Setting up cpp (4:14.2.0-1ubuntu1) ... 98s Setting up librust-serde-derive-dev:s390x (1.0.217-1) ... 98s Setting up librust-zerocopy-derive-dev:s390x (0.7.34-1) ... 98s Setting up librust-serde-dev:s390x (1.0.217-1) ... 98s Setting up librust-derive-arbitrary-dev:s390x (1.4.1-1) ... 98s Setting up librust-allocator-api2-dev:s390x (0.2.16-1) ... 98s Setting up librust-serde-fmt-dev (1.0.3-4) ... 98s Setting up librust-portable-atomic-dev:s390x (1.10.0-3) ... 98s Setting up librust-flate2-dev:s390x (1.0.34-1) ... 98s Setting up librust-sval-dev:s390x (2.6.1-2) ... 98s Setting up librust-itoa-dev:s390x (1.0.14-1) ... 98s Setting up gcc-14 (14.2.0-16ubuntu1) ... 98s Setting up librust-rand-core+serde-dev:s390x (0.6.4-2) ... 98s Setting up librust-sval-ref-dev:s390x (2.6.1-1) ... 98s Setting up librust-zerocopy-dev:s390x (0.7.34-1) ... 98s Setting up librust-zeroize-dev:s390x (1.8.1-1) ... 98s Setting up librust-arbitrary-dev:s390x (1.4.1-1) ... 98s Setting up librust-serde-test-dev:s390x (1.0.171-1) ... 98s Setting up librust-erased-serde-dev:s390x (0.3.31-1) ... 98s Setting up librust-radium-dev:s390x (1.1.0-1) ... 98s Setting up librust-generic-array-dev:s390x (0.14.7-1) ... 98s Setting up librust-ppv-lite86-dev:s390x (0.2.20-1) ... 98s Setting up librust-rand-chacha-dev:s390x (0.3.1-2) ... 98s Setting up librust-sval-dynamic-dev:s390x (2.6.1-1) ... 98s Setting up librust-crypto-common-dev:s390x (0.1.6-1) ... 98s Setting up libtool (2.5.4-3build1) ... 98s Setting up librust-sval-buffer-dev:s390x (2.6.1-1) ... 98s Setting up librust-smallvec-dev:s390x (1.13.2-1) ... 98s Setting up librust-sval-fmt-dev:s390x (2.6.1-1) ... 98s Setting up librust-const-oid-dev:s390x (0.9.6-1) ... 98s Setting up gcc (4:14.2.0-1ubuntu1) ... 99s Setting up dh-autoreconf (20) ... 99s Setting up librust-block-buffer-dev:s390x (0.10.2-2) ... 99s Setting up rustc-1.84 (1.84.0+dfsg0ubuntu1-0ubuntu1) ... 99s Setting up rustc (1.84.0ubuntu1) ... 99s Setting up librust-parking-lot-core-dev:s390x (0.9.10-1) ... 99s Setting up librust-once-cell-dev:s390x (1.20.2-1) ... 99s Setting up librust-digest-dev:s390x (0.10.7-2) ... 99s Setting up librust-sval-serde-dev:s390x (2.6.1-1) ... 99s Setting up cargo-1.84 (1.84.0+dfsg0ubuntu1-0ubuntu1) ... 99s Setting up librust-const-random-macro-dev:s390x (0.1.16-2) ... 99s Setting up librust-const-random-dev:s390x (0.1.17-2) ... 99s Setting up debhelper (13.23ubuntu1) ... 99s Setting up librust-ahash-dev (0.8.11-9) ... 99s Setting up cargo (1.84.0ubuntu1) ... 99s Setting up dh-cargo (31ubuntu4) ... 99s Setting up librust-wyz-dev:s390x (0.5.1-1) ... 99s Setting up librust-bitvec-dev:s390x (1.0.1-1) ... 99s Setting up librust-value-bag-sval2-dev:s390x (1.9.0-1) ... 99s Setting up librust-hashbrown-dev:s390x (0.14.5-5) ... 99s Setting up librust-indexmap-dev:s390x (2.7.0-1) ... 99s Setting up librust-gimli-dev:s390x (0.31.1-2) ... 99s Setting up librust-memchr-dev:s390x (2.7.4-1) ... 99s Setting up librust-core2-dev:s390x (0.4.0-1) ... 99s Setting up librust-bitstream-io-dev:s390x (2.5.0-1) ... 99s Setting up librust-serde-json-dev:s390x (1.0.133-1) ... 99s Setting up librust-value-bag-serde1-dev:s390x (1.9.0-1) ... 99s Setting up librust-value-bag-dev:s390x (1.9.0-1) ... 99s Setting up librust-log-dev:s390x (0.4.22-1) ... 99s Setting up librust-rand-dev:s390x (0.8.5-1) ... 99s Setting up librust-twox-hash-dev:s390x (1.6.3-1) ... 99s Setting up librust-ruzstd-dev:s390x (0.7.3-2) ... 99s Setting up librust-object-dev:s390x (0.36.5-2) ... 99s Setting up librust-addr2line-dev:s390x (0.24.2-2) ... 99s Setting up librust-backtrace-dev:s390x (0.3.74-3) ... 99s Setting up librust-anyhow-dev:s390x (1.0.86-1) ... 99s Setting up librust-bitvec-helpers-dev:s390x (3.1.5-1) ... 99s Processing triggers for install-info (7.1.1-1) ... 99s Processing triggers for libc-bin (2.40-4ubuntu1) ... 99s Processing triggers for man-db (2.13.0-1) ... 100s autopkgtest: DBG: testbed command exited with code 0 100s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'librust-bitvec-helpers-dev'], kind short, sout pipe, serr pipe, env [] 100s autopkgtest: DBG: testbed command exited with code 0 100s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.ijk0Vb/rust-bitvec-helpers:@-packages.all"], kind short, sout raw, serr pipe, env [] 100s autopkgtest: DBG: testbed command exited with code 0 100s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.ijk0Vb/rust-bitvec-helpers%3A%40-packages.all /tmp/autopkgtest-work.59hd9nc_/out/rust-bitvec-helpers%3A%40-packages.all 100s autopkgtest: DBG: got reply from testbed: ok 100s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.ijk0Vb/build.4F8/src'], kind short, sout raw, serr raw, env [] 100s autopkgtest: DBG: testbed command exited with code 0 100s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.ijk0Vb/build.4F8/src already exists 100s autopkgtest [21:12:04]: test rust-bitvec-helpers:@: /usr/share/cargo/bin/cargo-auto-test bitvec_helpers 3.1.5 --all-targets --all-features 100s autopkgtest [21:12:04]: test rust-bitvec-helpers:@: [----------------------- 100s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.ijk0Vb/wrapper.sh --debug --artifacts=/tmp/autopkgtest.ijk0Vb/rust-bitvec-helpers:@-artifacts --chdir=/tmp/autopkgtest.ijk0Vb/build.4F8/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.ijk0Vb/rust-bitvec-helpers:@-stderr --stdout=/tmp/autopkgtest.ijk0Vb/rust-bitvec-helpers:@-stdout --tmp=/tmp/autopkgtest.ijk0Vb/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 bitvec_helpers 3.1.5 --all-targets --all-features'"], kind test, sout raw, serr raw, env [] 100s /tmp/autopkgtest.ijk0Vb/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.ijk0Vb/rust-bitvec-helpers:@-artifacts 100s /tmp/autopkgtest.ijk0Vb/wrapper.sh: changing to directory: /tmp/autopkgtest.ijk0Vb/build.4F8/src 100s /tmp/autopkgtest.ijk0Vb/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 100s /tmp/autopkgtest.ijk0Vb/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 100s /tmp/autopkgtest.ijk0Vb/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 100s /tmp/autopkgtest.ijk0Vb/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 100s /tmp/autopkgtest.ijk0Vb/wrapper.sh: setting environment: LANG=C.UTF-8 100s /tmp/autopkgtest.ijk0Vb/wrapper.sh: unsetting environment: LANGUAGE 100s /tmp/autopkgtest.ijk0Vb/wrapper.sh: unsetting environment: LC_ADDRESS 100s /tmp/autopkgtest.ijk0Vb/wrapper.sh: unsetting environment: LC_ALL 100s /tmp/autopkgtest.ijk0Vb/wrapper.sh: unsetting environment: LC_COLLATE 100s /tmp/autopkgtest.ijk0Vb/wrapper.sh: unsetting environment: LC_CTYPE 100s /tmp/autopkgtest.ijk0Vb/wrapper.sh: unsetting environment: LC_IDENTIFICATION 100s /tmp/autopkgtest.ijk0Vb/wrapper.sh: unsetting environment: LC_MEASUREMENT 100s /tmp/autopkgtest.ijk0Vb/wrapper.sh: unsetting environment: LC_MESSAGES 100s /tmp/autopkgtest.ijk0Vb/wrapper.sh: unsetting environment: LC_MONETARY 100s /tmp/autopkgtest.ijk0Vb/wrapper.sh: unsetting environment: LC_NAME 100s /tmp/autopkgtest.ijk0Vb/wrapper.sh: unsetting environment: LC_NUMERIC 100s /tmp/autopkgtest.ijk0Vb/wrapper.sh: unsetting environment: LC_PAPER 100s /tmp/autopkgtest.ijk0Vb/wrapper.sh: unsetting environment: LC_TELEPHONE 100s /tmp/autopkgtest.ijk0Vb/wrapper.sh: unsetting environment: LC_TIME 100s /tmp/autopkgtest.ijk0Vb/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 100s /tmp/autopkgtest.ijk0Vb/wrapper.sh: pretending to be a login shell 100s /tmp/autopkgtest.ijk0Vb/wrapper.sh: will write standard error to /tmp/autopkgtest.ijk0Vb/rust-bitvec-helpers:@-stderr 100s /tmp/autopkgtest.ijk0Vb/wrapper.sh: will write stdout to /tmp/autopkgtest.ijk0Vb/rust-bitvec-helpers:@-stdout 100s /tmp/autopkgtest.ijk0Vb/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.ijk0Vb/autopkgtest_tmp 100s /tmp/autopkgtest.ijk0Vb/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 100s /tmp/autopkgtest.ijk0Vb/wrapper.sh: command to run: bash -ec /usr/share/cargo/bin/cargo-auto-test bitvec_helpers 3.1.5 --all-targets --all-features 100s /tmp/autopkgtest.ijk0Vb/wrapper.sh: copying /tmp/tmp.dnFqldPieM/out to stdout and file: /tmp/autopkgtest.ijk0Vb/rust-bitvec-helpers:@-stdout 100s /tmp/autopkgtest.ijk0Vb/wrapper.sh: copying /tmp/tmp.dnFqldPieM/err to standard error and file: /tmp/autopkgtest.ijk0Vb/rust-bitvec-helpers:@-stdout 100s /tmp/autopkgtest.ijk0Vb/wrapper.sh: writing script pid 2765 to /tmp/autopkgtest_script_pid 101s debian cargo wrapper: options, profiles, parallel, lto: ['parallel=2'] [] ['-j2'] 0 101s debian cargo wrapper: rust_type, gnu_type: s390x-unknown-linux-gnu, s390x-linux-gnu 101s debian cargo wrapper: unsetting RUSTFLAGS and assuming it will be (or already was) added to $CARGO_HOME/config.toml 101s debian cargo wrapper: linking /usr/share/cargo/registry/* into /tmp/tmp.oekeQrJbx7/registry/ 101s debian cargo wrapper: options, profiles, parallel, lto: ['parallel=2'] [] ['-j2'] 0 101s debian cargo wrapper: rust_type, gnu_type: s390x-unknown-linux-gnu, s390x-linux-gnu 101s debian cargo wrapper: unsetting RUSTFLAGS and assuming it will be (or already was) added to $CARGO_HOME/config.toml 101s 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'],) {} 101s Compiling tap v1.0.1 101s Compiling anyhow v1.0.86 101s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=tap CARGO_MANIFEST_DIR=/tmp/tmp.oekeQrJbx7/registry/tap-1.0.1 CARGO_MANIFEST_PATH=/tmp/tmp.oekeQrJbx7/registry/tap-1.0.1/Cargo.toml CARGO_PKG_AUTHORS='Elliott Linder :myrrlyn ' CARGO_PKG_DESCRIPTION='Generic extensions for tapping values in Rust' CARGO_PKG_HOMEPAGE='https://github.com/myrrlyn/tap' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=tap CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/myrrlyn/tap' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=1.0.1 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.oekeQrJbx7/target/debug/deps rustc --crate-name tap --edition=2015 /tmp/tmp.oekeQrJbx7/registry/tap-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=dc3123cf9c4aaec0 -C extra-filename=-dc3123cf9c4aaec0 --out-dir /tmp/tmp.oekeQrJbx7/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.oekeQrJbx7/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.oekeQrJbx7/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/bitvec_helpers-3.1.5=/usr/share/cargo/registry/bitvec-helpers-3.1.5 --remap-path-prefix /tmp/tmp.oekeQrJbx7/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 101s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.oekeQrJbx7/registry/anyhow-1.0.86 CARGO_MANIFEST_PATH=/tmp/tmp.oekeQrJbx7/registry/anyhow-1.0.86/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='Flexible concrete Error type built on std::error::Error' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=anyhow CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/anyhow' CARGO_PKG_RUST_VERSION=1.39 CARGO_PKG_VERSION=1.0.86 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=86 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.oekeQrJbx7/target/debug/deps rustc --crate-name build_script_build --edition=2018 /tmp/tmp.oekeQrJbx7/registry/anyhow-1.0.86/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("backtrace", "default", "std"))' -C metadata=ce1e359b06d9faf4 -C extra-filename=-ce1e359b06d9faf4 --out-dir /tmp/tmp.oekeQrJbx7/target/debug/build/anyhow-ce1e359b06d9faf4 -L dependency=/tmp/tmp.oekeQrJbx7/target/debug/deps --cap-lints warn` 101s warning: unstable feature specified for `-Ctarget-feature`: `backchain` 101s | 101s = note: this feature is not stably supported; its behavior can change in the future 101s 101s warning: `tap` (lib) generated 1 warning 101s Compiling cfg-if v1.0.0 101s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=cfg_if CARGO_MANIFEST_DIR=/tmp/tmp.oekeQrJbx7/registry/cfg-if-1.0.0 CARGO_MANIFEST_PATH=/tmp/tmp.oekeQrJbx7/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] 101s parameters. Structured like an if-else chain, the first matching branch is the 101s item that gets emitted. 101s ' 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.oekeQrJbx7/target/debug/deps rustc --crate-name cfg_if --edition=2018 /tmp/tmp.oekeQrJbx7/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.oekeQrJbx7/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.oekeQrJbx7/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.oekeQrJbx7/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/bitvec_helpers-3.1.5=/usr/share/cargo/registry/bitvec-helpers-3.1.5 --remap-path-prefix /tmp/tmp.oekeQrJbx7/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 101s warning: `cfg-if` (lib) generated 1 warning (1 duplicate) 101s Compiling radium v1.1.0 101s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=radium CARGO_MANIFEST_DIR=/tmp/tmp.oekeQrJbx7/registry/radium-1.1.0 CARGO_MANIFEST_PATH=/tmp/tmp.oekeQrJbx7/registry/radium-1.1.0/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='Portable interfaces for maybe-atomic types' CARGO_PKG_HOMEPAGE='https://ferrilab.github.io/ferrilab' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=radium CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/ferrilab/ferrilab' 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.oekeQrJbx7/target/debug/deps rustc --crate-name radium --edition=2021 /tmp/tmp.oekeQrJbx7/registry/radium-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("portable-atomic", "portable-atomic-fallback"))' -C metadata=688a1d384b60c00e -C extra-filename=-688a1d384b60c00e --out-dir /tmp/tmp.oekeQrJbx7/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.oekeQrJbx7/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.oekeQrJbx7/target/debug/deps --extern cfg_if=/tmp/tmp.oekeQrJbx7/target/s390x-unknown-linux-gnu/debug/deps/libcfg_if-ff3ff84a061de73f.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/bitvec_helpers-3.1.5=/usr/share/cargo/registry/bitvec-helpers-3.1.5 --remap-path-prefix /tmp/tmp.oekeQrJbx7/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 101s warning: `radium` (lib) generated 1 warning (1 duplicate) 101s Compiling wyz v0.5.1 101s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=wyz CARGO_MANIFEST_DIR=/tmp/tmp.oekeQrJbx7/registry/wyz-0.5.1 CARGO_MANIFEST_PATH=/tmp/tmp.oekeQrJbx7/registry/wyz-0.5.1/Cargo.toml CARGO_PKG_AUTHORS='myrrlyn ' CARGO_PKG_DESCRIPTION='myrrlyn’s utility collection' CARGO_PKG_HOMEPAGE='https://myrrlyn.net/crates/wyz' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=wyz CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/myrrlyn/wyz' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.5.1 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=5 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.oekeQrJbx7/target/debug/deps rustc --crate-name wyz --edition=2018 /tmp/tmp.oekeQrJbx7/registry/wyz-0.5.1/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "default", "garbage", "once_cell", "std", "typemap"))' -C metadata=6a1737499423488b -C extra-filename=-6a1737499423488b --out-dir /tmp/tmp.oekeQrJbx7/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.oekeQrJbx7/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.oekeQrJbx7/target/debug/deps --extern tap=/tmp/tmp.oekeQrJbx7/target/s390x-unknown-linux-gnu/debug/deps/libtap-dc3123cf9c4aaec0.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/bitvec_helpers-3.1.5=/usr/share/cargo/registry/bitvec-helpers-3.1.5 --remap-path-prefix /tmp/tmp.oekeQrJbx7/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 101s warning: unexpected `cfg` condition name: `tarpaulin_include` 101s --> /usr/share/cargo/registry/wyz-0.5.1/src/comu.rs:9:12 101s | 101s 9 | #![cfg(not(tarpaulin_include))] 101s | ^^^^^^^^^^^^^^^^^ 101s | 101s = 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` 101s = help: consider using a Cargo feature instead 101s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 101s [lints.rust] 101s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 101s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 101s = note: see for more information about checking conditional configuration 101s = note: `#[warn(unexpected_cfgs)]` on by default 101s 101s warning: unexpected `cfg` condition name: `tarpaulin_include` 101s --> /usr/share/cargo/registry/wyz-0.5.1/src/bidi.rs:107:12 101s | 101s 107 | #[cfg(not(tarpaulin_include))] 101s | ^^^^^^^^^^^^^^^^^ 101s | 101s = help: consider using a Cargo feature instead 101s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 101s [lints.rust] 101s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 101s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 101s = note: see for more information about checking conditional configuration 101s 101s warning: unexpected `cfg` condition name: `tarpaulin_include` 101s --> /usr/share/cargo/registry/wyz-0.5.1/src/bidi.rs:113:12 101s | 101s 113 | #[cfg(not(tarpaulin_include))] 101s | ^^^^^^^^^^^^^^^^^ 101s | 101s = help: consider using a Cargo feature instead 101s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 101s [lints.rust] 101s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 101s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 101s = note: see for more information about checking conditional configuration 101s 101s warning: unexpected `cfg` condition name: `tarpaulin_include` 101s --> /usr/share/cargo/registry/wyz-0.5.1/src/bidi.rs:119:12 101s | 101s 119 | #[cfg(not(tarpaulin_include))] 101s | ^^^^^^^^^^^^^^^^^ 101s | 101s = help: consider using a Cargo feature instead 101s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 101s [lints.rust] 101s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 101s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 101s = note: see for more information about checking conditional configuration 101s 101s warning: unexpected `cfg` condition name: `tarpaulin_include` 101s --> /usr/share/cargo/registry/wyz-0.5.1/src/bidi.rs:143:12 101s | 101s 143 | #[cfg(not(tarpaulin_include))] 101s | ^^^^^^^^^^^^^^^^^ 101s | 101s = help: consider using a Cargo feature instead 101s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 101s [lints.rust] 101s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 101s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 101s = note: see for more information about checking conditional configuration 101s 101s warning: unexpected `cfg` condition name: `tarpaulin_include` 101s --> /usr/share/cargo/registry/wyz-0.5.1/src/fmt.rs:37:11 101s | 101s 37 | #[cfg(not(tarpaulin_include))] 101s | ^^^^^^^^^^^^^^^^^ 101s | 101s = help: consider using a Cargo feature instead 101s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 101s [lints.rust] 101s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 101s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 101s = note: see for more information about checking conditional configuration 101s 101s warning: unexpected `cfg` condition name: `tarpaulin_include` 101s --> /usr/share/cargo/registry/wyz-0.5.1/src/fmt.rs:368:11 101s | 101s 368 | #[cfg(not(tarpaulin_include))] 101s | ^^^^^^^^^^^^^^^^^ 101s | 101s = help: consider using a Cargo feature instead 101s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 101s [lints.rust] 101s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 101s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 101s = note: see for more information about checking conditional configuration 101s 101s warning: unexpected `cfg` condition name: `tarpaulin_include` 101s --> /usr/share/cargo/registry/wyz-0.5.1/src/fmt.rs:380:11 101s | 101s 380 | #[cfg(not(tarpaulin_include))] 101s | ^^^^^^^^^^^^^^^^^ 101s | 101s = help: consider using a Cargo feature instead 101s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 101s [lints.rust] 101s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 101s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 101s = note: see for more information about checking conditional configuration 101s 101s warning: unexpected `cfg` condition name: `tarpaulin_include` 101s --> /usr/share/cargo/registry/wyz-0.5.1/src/fmt.rs:390:11 101s | 101s 390 | #[cfg(not(tarpaulin_include))] 101s | ^^^^^^^^^^^^^^^^^ 101s | 101s = help: consider using a Cargo feature instead 101s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 101s [lints.rust] 101s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 101s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 101s = note: see for more information about checking conditional configuration 101s 101s warning: unexpected `cfg` condition name: `tarpaulin_include` 101s --> /usr/share/cargo/registry/wyz-0.5.1/src/fmt.rs:400:11 101s | 101s 400 | #[cfg(not(tarpaulin_include))] 101s | ^^^^^^^^^^^^^^^^^ 101s | 101s = help: consider using a Cargo feature instead 101s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 101s [lints.rust] 101s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 101s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 101s = note: see for more information about checking conditional configuration 101s 101s warning: unexpected `cfg` condition name: `tarpaulin_include` 101s --> /usr/share/cargo/registry/wyz-0.5.1/src/fmt.rs:156:13 101s | 101s 156 | #[cfg(not(tarpaulin_include))] 101s | ^^^^^^^^^^^^^^^^^ 101s ... 101s 263 | / fmt!( 101s 264 | | FmtBinary => Binary, 101s 265 | | FmtDisplay => Display, 101s 266 | | FmtLowerExp => LowerExp, 101s ... | 101s 271 | | FmtUpperHex => UpperHex, 101s 272 | | ); 101s | |_- in this macro invocation 101s | 101s = help: consider using a Cargo feature instead 101s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 101s [lints.rust] 101s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 101s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 101s = note: see for more information about checking conditional configuration 101s = note: this warning originates in the macro `fmt` (in Nightly builds, run with -Z macro-backtrace for more info) 101s 101s warning: unexpected `cfg` condition name: `tarpaulin_include` 101s --> /usr/share/cargo/registry/wyz-0.5.1/src/fmt.rs:171:13 101s | 101s 171 | #[cfg(not(tarpaulin_include))] 101s | ^^^^^^^^^^^^^^^^^ 101s ... 101s 263 | / fmt!( 101s 264 | | FmtBinary => Binary, 101s 265 | | FmtDisplay => Display, 101s 266 | | FmtLowerExp => LowerExp, 101s ... | 101s 271 | | FmtUpperHex => UpperHex, 101s 272 | | ); 101s | |_- in this macro invocation 101s | 101s = help: consider using a Cargo feature instead 101s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 101s [lints.rust] 101s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 101s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 101s = note: see for more information about checking conditional configuration 101s = note: this warning originates in the macro `fmt` (in Nightly builds, run with -Z macro-backtrace for more info) 101s 101s warning: unexpected `cfg` condition name: `tarpaulin_include` 101s --> /usr/share/cargo/registry/wyz-0.5.1/src/fmt.rs:179:13 101s | 101s 179 | #[cfg(not(tarpaulin_include))] 101s | ^^^^^^^^^^^^^^^^^ 101s ... 101s 263 | / fmt!( 101s 264 | | FmtBinary => Binary, 101s 265 | | FmtDisplay => Display, 101s 266 | | FmtLowerExp => LowerExp, 101s ... | 101s 271 | | FmtUpperHex => UpperHex, 101s 272 | | ); 101s | |_- in this macro invocation 101s | 101s = help: consider using a Cargo feature instead 101s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 101s [lints.rust] 101s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 101s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 101s = note: see for more information about checking conditional configuration 101s = note: this warning originates in the macro `fmt` (in Nightly builds, run with -Z macro-backtrace for more info) 101s 101s warning: unexpected `cfg` condition name: `tarpaulin_include` 101s --> /usr/share/cargo/registry/wyz-0.5.1/src/fmt.rs:187:13 101s | 101s 187 | #[cfg(not(tarpaulin_include))] 101s | ^^^^^^^^^^^^^^^^^ 101s ... 101s 263 | / fmt!( 101s 264 | | FmtBinary => Binary, 101s 265 | | FmtDisplay => Display, 101s 266 | | FmtLowerExp => LowerExp, 101s ... | 101s 271 | | FmtUpperHex => UpperHex, 101s 272 | | ); 101s | |_- in this macro invocation 101s | 101s = help: consider using a Cargo feature instead 101s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 101s [lints.rust] 101s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 101s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 101s = note: see for more information about checking conditional configuration 101s = note: this warning originates in the macro `fmt` (in Nightly builds, run with -Z macro-backtrace for more info) 101s 101s warning: unexpected `cfg` condition name: `tarpaulin_include` 101s --> /usr/share/cargo/registry/wyz-0.5.1/src/fmt.rs:195:13 101s | 101s 195 | #[cfg(not(tarpaulin_include))] 101s | ^^^^^^^^^^^^^^^^^ 101s ... 101s 263 | / fmt!( 101s 264 | | FmtBinary => Binary, 101s 265 | | FmtDisplay => Display, 101s 266 | | FmtLowerExp => LowerExp, 101s ... | 101s 271 | | FmtUpperHex => UpperHex, 101s 272 | | ); 101s | |_- in this macro invocation 101s | 101s = help: consider using a Cargo feature instead 101s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 101s [lints.rust] 101s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 101s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 101s = note: see for more information about checking conditional configuration 101s = note: this warning originates in the macro `fmt` (in Nightly builds, run with -Z macro-backtrace for more info) 101s 101s warning: unexpected `cfg` condition name: `tarpaulin_include` 101s --> /usr/share/cargo/registry/wyz-0.5.1/src/fmt.rs:203:13 101s | 101s 203 | #[cfg(not(tarpaulin_include))] 101s | ^^^^^^^^^^^^^^^^^ 101s ... 101s 263 | / fmt!( 101s 264 | | FmtBinary => Binary, 101s 265 | | FmtDisplay => Display, 101s 266 | | FmtLowerExp => LowerExp, 101s ... | 101s 271 | | FmtUpperHex => UpperHex, 101s 272 | | ); 101s | |_- in this macro invocation 101s | 101s = help: consider using a Cargo feature instead 101s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 101s [lints.rust] 101s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 101s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 101s = note: see for more information about checking conditional configuration 101s = note: this warning originates in the macro `fmt` (in Nightly builds, run with -Z macro-backtrace for more info) 101s 101s warning: unexpected `cfg` condition name: `tarpaulin_include` 101s --> /usr/share/cargo/registry/wyz-0.5.1/src/fmt.rs:211:13 101s | 101s 211 | #[cfg(not(tarpaulin_include))] 101s | ^^^^^^^^^^^^^^^^^ 101s ... 101s 263 | / fmt!( 101s 264 | | FmtBinary => Binary, 101s 265 | | FmtDisplay => Display, 101s 266 | | FmtLowerExp => LowerExp, 101s ... | 101s 271 | | FmtUpperHex => UpperHex, 101s 272 | | ); 101s | |_- in this macro invocation 101s | 101s = help: consider using a Cargo feature instead 101s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 101s [lints.rust] 101s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 101s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 101s = note: see for more information about checking conditional configuration 101s = note: this warning originates in the macro `fmt` (in Nightly builds, run with -Z macro-backtrace for more info) 101s 101s warning: unexpected `cfg` condition name: `tarpaulin_include` 101s --> /usr/share/cargo/registry/wyz-0.5.1/src/fmt.rs:219:13 101s | 101s 219 | #[cfg(not(tarpaulin_include))] 101s | ^^^^^^^^^^^^^^^^^ 101s ... 101s 263 | / fmt!( 101s 264 | | FmtBinary => Binary, 101s 265 | | FmtDisplay => Display, 101s 266 | | FmtLowerExp => LowerExp, 101s ... | 101s 271 | | FmtUpperHex => UpperHex, 101s 272 | | ); 101s | |_- in this macro invocation 101s | 101s = help: consider using a Cargo feature instead 101s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 101s [lints.rust] 101s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 101s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 101s = note: see for more information about checking conditional configuration 101s = note: this warning originates in the macro `fmt` (in Nightly builds, run with -Z macro-backtrace for more info) 101s 101s warning: unexpected `cfg` condition name: `tarpaulin_include` 101s --> /usr/share/cargo/registry/wyz-0.5.1/src/fmt.rs:227:13 101s | 101s 227 | #[cfg(not(tarpaulin_include))] 101s | ^^^^^^^^^^^^^^^^^ 101s ... 101s 263 | / fmt!( 101s 264 | | FmtBinary => Binary, 101s 265 | | FmtDisplay => Display, 101s 266 | | FmtLowerExp => LowerExp, 101s ... | 101s 271 | | FmtUpperHex => UpperHex, 101s 272 | | ); 101s | |_- in this macro invocation 101s | 101s = help: consider using a Cargo feature instead 101s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 101s [lints.rust] 101s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 101s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 101s = note: see for more information about checking conditional configuration 101s = note: this warning originates in the macro `fmt` (in Nightly builds, run with -Z macro-backtrace for more info) 101s 101s warning: unexpected `cfg` condition name: `tarpaulin_include` 101s --> /usr/share/cargo/registry/wyz-0.5.1/src/fmt.rs:237:13 101s | 101s 237 | #[cfg(not(tarpaulin_include))] 101s | ^^^^^^^^^^^^^^^^^ 101s ... 101s 263 | / fmt!( 101s 264 | | FmtBinary => Binary, 101s 265 | | FmtDisplay => Display, 101s 266 | | FmtLowerExp => LowerExp, 101s ... | 101s 271 | | FmtUpperHex => UpperHex, 101s 272 | | ); 101s | |_- in this macro invocation 101s | 101s = help: consider using a Cargo feature instead 101s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 101s [lints.rust] 101s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 101s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 101s = note: see for more information about checking conditional configuration 101s = note: this warning originates in the macro `fmt` (in Nightly builds, run with -Z macro-backtrace for more info) 101s 101s warning: unexpected `cfg` condition name: `tarpaulin_include` 101s --> /usr/share/cargo/registry/wyz-0.5.1/src/fmt.rs:245:13 101s | 101s 245 | #[cfg(not(tarpaulin_include))] 101s | ^^^^^^^^^^^^^^^^^ 101s ... 101s 263 | / fmt!( 101s 264 | | FmtBinary => Binary, 101s 265 | | FmtDisplay => Display, 101s 266 | | FmtLowerExp => LowerExp, 101s ... | 101s 271 | | FmtUpperHex => UpperHex, 101s 272 | | ); 101s | |_- in this macro invocation 101s | 101s = help: consider using a Cargo feature instead 101s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 101s [lints.rust] 101s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 101s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 101s = note: see for more information about checking conditional configuration 101s = note: this warning originates in the macro `fmt` (in Nightly builds, run with -Z macro-backtrace for more info) 101s 101s warning: unexpected `cfg` condition name: `tarpaulin_include` 101s --> /usr/share/cargo/registry/wyz-0.5.1/src/fmt.rs:253:13 101s | 101s 253 | #[cfg(not(tarpaulin_include))] 101s | ^^^^^^^^^^^^^^^^^ 101s ... 101s 263 | / fmt!( 101s 264 | | FmtBinary => Binary, 101s 265 | | FmtDisplay => Display, 101s 266 | | FmtLowerExp => LowerExp, 101s ... | 101s 271 | | FmtUpperHex => UpperHex, 101s 272 | | ); 101s | |_- in this macro invocation 101s | 101s = help: consider using a Cargo feature instead 101s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 101s [lints.rust] 101s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 101s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 101s = note: see for more information about checking conditional configuration 101s = note: this warning originates in the macro `fmt` (in Nightly builds, run with -Z macro-backtrace for more info) 101s 101s 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/bitvec_helpers-3.1.5=/usr/share/cargo/registry/bitvec-helpers-3.1.5--remap-path-prefix/tmp/tmp.oekeQrJbx7/registry=/usr/share/cargo/registry-Ctarget-feature=+backchain' CARGO_FEATURE_DEFAULT=1 CARGO_FEATURE_STD=1 CARGO_MANIFEST_DIR=/tmp/tmp.oekeQrJbx7/registry/anyhow-1.0.86 CARGO_MANIFEST_PATH=/tmp/tmp.oekeQrJbx7/registry/anyhow-1.0.86/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='Flexible concrete Error type built on std::error::Error' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=anyhow CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/anyhow' CARGO_PKG_RUST_VERSION=1.39 CARGO_PKG_VERSION=1.0.86 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=86 CARGO_PKG_VERSION_PRE='' DEBUG=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.oekeQrJbx7/target/debug/deps:/tmp/tmp.oekeQrJbx7/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.oekeQrJbx7/target/s390x-unknown-linux-gnu/debug/build/anyhow-0076587e9dd9f3d8/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.oekeQrJbx7/target/debug/build/anyhow-ce1e359b06d9faf4/build-script-build` 101s [anyhow 1.0.86] cargo:rerun-if-changed=build/probe.rs 101s [anyhow 1.0.86] cargo:rerun-if-env-changed=RUSTC_BOOTSTRAP 101s [anyhow 1.0.86] cargo:rustc-check-cfg=cfg(anyhow_nightly_testing) 101s [anyhow 1.0.86] cargo:rustc-check-cfg=cfg(anyhow_no_fmt_arguments_as_str) 101s [anyhow 1.0.86] cargo:rustc-check-cfg=cfg(anyhow_no_ptr_addr_of) 101s [anyhow 1.0.86] cargo:rustc-check-cfg=cfg(anyhow_no_unsafe_op_in_unsafe_fn_lint) 101s [anyhow 1.0.86] cargo:rustc-check-cfg=cfg(doc_cfg) 101s [anyhow 1.0.86] cargo:rustc-check-cfg=cfg(error_generic_member_access) 101s [anyhow 1.0.86] cargo:rustc-check-cfg=cfg(std_backtrace) 101s [anyhow 1.0.86] cargo:rustc-cfg=std_backtrace 101s Compiling funty v2.0.0 101s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=funty CARGO_MANIFEST_DIR=/tmp/tmp.oekeQrJbx7/registry/funty-2.0.0 CARGO_MANIFEST_PATH=/tmp/tmp.oekeQrJbx7/registry/funty-2.0.0/Cargo.toml CARGO_PKG_AUTHORS='myrrlyn ' CARGO_PKG_DESCRIPTION='Trait generalization over the primitive types' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=funty CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/myrrlyn/funty' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=2.0.0 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.oekeQrJbx7/target/debug/deps rustc --crate-name funty --edition=2018 /tmp/tmp.oekeQrJbx7/registry/funty-2.0.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "std"))' -C metadata=b943fa651dbd1f9d -C extra-filename=-b943fa651dbd1f9d --out-dir /tmp/tmp.oekeQrJbx7/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.oekeQrJbx7/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.oekeQrJbx7/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/bitvec_helpers-3.1.5=/usr/share/cargo/registry/bitvec-helpers-3.1.5 --remap-path-prefix /tmp/tmp.oekeQrJbx7/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 101s warning: `wyz` (lib) generated 23 warnings (1 duplicate) 101s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=anyhow CARGO_MANIFEST_DIR=/tmp/tmp.oekeQrJbx7/registry/anyhow-1.0.86 CARGO_MANIFEST_PATH=/tmp/tmp.oekeQrJbx7/registry/anyhow-1.0.86/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='Flexible concrete Error type built on std::error::Error' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=anyhow CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/anyhow' CARGO_PKG_RUST_VERSION=1.39 CARGO_PKG_VERSION=1.0.86 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=86 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.oekeQrJbx7/target/debug/deps OUT_DIR=/tmp/tmp.oekeQrJbx7/target/s390x-unknown-linux-gnu/debug/build/anyhow-0076587e9dd9f3d8/out rustc --crate-name anyhow --edition=2018 /tmp/tmp.oekeQrJbx7/registry/anyhow-1.0.86/src/lib.rs --error-format=json --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("backtrace", "default", "std"))' -C metadata=30f85af40dc383bf -C extra-filename=-30f85af40dc383bf --out-dir /tmp/tmp.oekeQrJbx7/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.oekeQrJbx7/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.oekeQrJbx7/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/bitvec_helpers-3.1.5=/usr/share/cargo/registry/bitvec-helpers-3.1.5 --remap-path-prefix /tmp/tmp.oekeQrJbx7/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain --cfg std_backtrace --check-cfg 'cfg(anyhow_nightly_testing)' --check-cfg 'cfg(anyhow_no_fmt_arguments_as_str)' --check-cfg 'cfg(anyhow_no_ptr_addr_of)' --check-cfg 'cfg(anyhow_no_unsafe_op_in_unsafe_fn_lint)' --check-cfg 'cfg(doc_cfg)' --check-cfg 'cfg(error_generic_member_access)' --check-cfg 'cfg(std_backtrace)'` 102s warning: `anyhow` (lib) generated 1 warning (1 duplicate) 102s Compiling bitstream-io v2.5.0 102s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=bitstream_io CARGO_MANIFEST_DIR=/tmp/tmp.oekeQrJbx7/registry/bitstream-io-2.5.0 CARGO_MANIFEST_PATH=/tmp/tmp.oekeQrJbx7/registry/bitstream-io-2.5.0/Cargo.toml CARGO_PKG_AUTHORS='Brian Langenberger ' CARGO_PKG_DESCRIPTION='Library for reading/writing un-aligned values from/to streams in big-endian and little-endian formats.' CARGO_PKG_HOMEPAGE='https://github.com/tuffy/bitstream-io' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=bitstream-io CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/tuffy/bitstream-io' CARGO_PKG_RUST_VERSION=1.79 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.oekeQrJbx7/target/debug/deps rustc --crate-name bitstream_io --edition=2018 /tmp/tmp.oekeQrJbx7/registry/bitstream-io-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("alloc", "core2", "default", "std"))' -C metadata=6d4a03923513d049 -C extra-filename=-6d4a03923513d049 --out-dir /tmp/tmp.oekeQrJbx7/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.oekeQrJbx7/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.oekeQrJbx7/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/bitvec_helpers-3.1.5=/usr/share/cargo/registry/bitvec-helpers-3.1.5 --remap-path-prefix /tmp/tmp.oekeQrJbx7/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 102s warning: `bitstream-io` (lib) generated 1 warning (1 duplicate) 102s Compiling bitvec v1.0.1 102s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=bitvec CARGO_MANIFEST_DIR=/tmp/tmp.oekeQrJbx7/registry/bitvec-1.0.1 CARGO_MANIFEST_PATH=/tmp/tmp.oekeQrJbx7/registry/bitvec-1.0.1/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='Addresses memory by bits, for packed collections and bitfields' CARGO_PKG_HOMEPAGE='https://bitvecto-rs.github.io/bitvec' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=bitvec CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/bitvecto-rs/bitvec' CARGO_PKG_RUST_VERSION=1.56 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.oekeQrJbx7/target/debug/deps rustc --crate-name bitvec --edition=2021 /tmp/tmp.oekeQrJbx7/registry/bitvec-1.0.1/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="alloc"' --cfg 'feature="atomic"' --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "atomic", "default", "serde", "std", "testing"))' -C metadata=255dfc50e4dc827a -C extra-filename=-255dfc50e4dc827a --out-dir /tmp/tmp.oekeQrJbx7/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.oekeQrJbx7/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.oekeQrJbx7/target/debug/deps --extern funty=/tmp/tmp.oekeQrJbx7/target/s390x-unknown-linux-gnu/debug/deps/libfunty-b943fa651dbd1f9d.rmeta --extern radium=/tmp/tmp.oekeQrJbx7/target/s390x-unknown-linux-gnu/debug/deps/libradium-688a1d384b60c00e.rmeta --extern tap=/tmp/tmp.oekeQrJbx7/target/s390x-unknown-linux-gnu/debug/deps/libtap-dc3123cf9c4aaec0.rmeta --extern wyz=/tmp/tmp.oekeQrJbx7/target/s390x-unknown-linux-gnu/debug/deps/libwyz-6a1737499423488b.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/bitvec_helpers-3.1.5=/usr/share/cargo/registry/bitvec-helpers-3.1.5 --remap-path-prefix /tmp/tmp.oekeQrJbx7/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/macros/internal.rs:364:11 102s | 102s 364 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = 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` 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s = note: `#[warn(unexpected_cfgs)]` on by default 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/macros/internal.rs:388:11 102s | 102s 388 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/array/api.rs:29:12 102s | 102s 29 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/array/api.rs:50:12 102s | 102s 50 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/array/iter.rs:41:11 102s | 102s 41 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/array/iter.rs:57:11 102s | 102s 57 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/array/iter.rs:163:11 102s | 102s 163 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/array/iter.rs:121:12 102s | 102s 121 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/array/iter.rs:143:12 102s | 102s 143 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/array/ops.rs:25:11 102s | 102s 25 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/array/ops.rs:37:11 102s | 102s 37 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/array/ops.rs:76:11 102s | 102s 76 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/array/ops.rs:88:11 102s | 102s 88 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/array/ops.rs:127:11 102s | 102s 127 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/array/ops.rs:139:11 102s | 102s 139 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/array/traits.rs:35:11 102s | 102s 35 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/array/traits.rs:47:11 102s | 102s 47 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/array/traits.rs:83:11 102s | 102s 83 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/array/traits.rs:95:11 102s | 102s 95 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/array/traits.rs:109:11 102s | 102s 109 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/array/traits.rs:123:11 102s | 102s 123 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/array/traits.rs:136:11 102s | 102s 136 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/array/traits.rs:150:11 102s | 102s 150 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/array/traits.rs:162:11 102s | 102s 162 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/array/traits.rs:174:11 102s | 102s 174 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/array/traits.rs:270:11 102s | 102s 270 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/array/traits.rs:327:11 102s | 102s 327 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/devel.rs:19:14 102s | 102s 19 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s ::: /usr/share/cargo/registry/bitvec-1.0.1/src/array/traits.rs:261:1 102s | 102s 261 | / easy_fmt! { 102s 262 | | impl Binary 102s 263 | | impl Display 102s 264 | | impl LowerHex 102s ... | 102s 267 | | for BitArray 102s 268 | | } 102s | |_- in this macro invocation 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s = note: this warning originates in the macro `easy_fmt` (in Nightly builds, run with -Z macro-backtrace for more info) 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/boxed/api.rs:134:12 102s | 102s 134 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/boxed/iter.rs:122:11 102s | 102s 122 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/boxed/iter.rs:134:11 102s | 102s 134 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/boxed/iter.rs:150:11 102s | 102s 150 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/boxed/iter.rs:88:12 102s | 102s 88 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/boxed/iter.rs:113:12 102s | 102s 113 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/boxed/ops.rs:27:11 102s | 102s 27 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/boxed/ops.rs:39:11 102s | 102s 39 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/boxed/ops.rs:78:11 102s | 102s 78 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/boxed/ops.rs:90:11 102s | 102s 90 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/boxed/ops.rs:129:11 102s | 102s 129 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/boxed/ops.rs:141:11 102s | 102s 141 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/boxed/ops.rs:215:11 102s | 102s 215 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/boxed/ops.rs:230:11 102s | 102s 230 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/boxed/traits.rs:39:11 102s | 102s 39 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/boxed/traits.rs:51:11 102s | 102s 51 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/boxed/traits.rs:63:11 102s | 102s 63 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/boxed/traits.rs:75:11 102s | 102s 75 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/boxed/traits.rs:83:11 102s | 102s 83 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/boxed/traits.rs:95:11 102s | 102s 95 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/boxed/traits.rs:109:11 102s | 102s 109 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/boxed/traits.rs:123:11 102s | 102s 123 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/boxed/traits.rs:137:11 102s | 102s 137 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/boxed/traits.rs:150:11 102s | 102s 150 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/boxed/traits.rs:164:11 102s | 102s 164 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/boxed/traits.rs:177:11 102s | 102s 177 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/boxed/traits.rs:191:11 102s | 102s 191 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/boxed/traits.rs:205:11 102s | 102s 205 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/boxed/traits.rs:217:11 102s | 102s 217 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/boxed/traits.rs:345:11 102s | 102s 345 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/boxed/traits.rs:359:11 102s | 102s 359 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/devel.rs:32:14 102s | 102s 32 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s ::: /usr/share/cargo/registry/bitvec-1.0.1/src/boxed/traits.rs:335:1 102s | 102s 335 | / easy_fmt! { 102s 336 | | impl Binary 102s 337 | | impl Display 102s 338 | | impl LowerHex 102s ... | 102s 342 | | for BitBox 102s 343 | | } 102s | |_- in this macro invocation 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s = note: this warning originates in the macro `easy_fmt` (in Nightly builds, run with -Z macro-backtrace for more info) 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/domain.rs:206:11 102s | 102s 206 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/domain.rs:561:11 102s | 102s 561 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/domain.rs:892:11 102s | 102s 892 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/domain.rs:929:11 102s | 102s 929 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/domain.rs:765:12 102s | 102s 765 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/domain.rs:772:12 102s | 102s 772 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/domain.rs:780:12 102s | 102s 780 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/domain.rs:787:12 102s | 102s 787 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/domain.rs:840:12 102s | 102s 840 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/domain.rs:851:12 102s | 102s 851 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/domain.rs:862:12 102s | 102s 862 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/field.rs:444:11 102s | 102s 444 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/field.rs:477:11 102s | 102s 477 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/field/io.rs:64:12 102s | 102s 64 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/field/io.rs:102:12 102s | 102s 102 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/field.rs:44:12 102s | 102s 44 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/field.rs:70:12 102s | 102s 70 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/index.rs:388:11 102s | 102s 388 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/index.rs:109:12 102s | 102s 109 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/index.rs:160:12 102s | 102s 160 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/index.rs:173:12 102s | 102s 173 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/index.rs:185:12 102s | 102s 185 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/index.rs:373:12 102s | 102s 373 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/index.rs:484:12 102s | 102s 484 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/index.rs:676:12 102s | 102s 676 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/index.rs:695:12 102s | 102s 695 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/index.rs:797:12 102s | 102s 797 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/index.rs:804:12 102s | 102s 804 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/index.rs:894:12 102s | 102s 894 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/mem.rs:61:11 102s | 102s 61 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/mem.rs:68:11 102s | 102s 68 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/order.rs:237:11 102s | 102s 237 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr.rs:118:11 102s | 102s 118 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr.rs:130:11 102s | 102s 130 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr.rs:141:11 102s | 102s 141 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr.rs:152:11 102s | 102s 152 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr.rs:164:11 102s | 102s 164 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr.rs:176:11 102s | 102s 176 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr.rs:187:11 102s | 102s 187 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr.rs:198:11 102s | 102s 198 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr.rs:212:11 102s | 102s 212 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr.rs:260:11 102s | 102s 260 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr.rs:271:11 102s | 102s 271 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr.rs:287:11 102s | 102s 287 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr.rs:299:11 102s | 102s 299 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr.rs:312:11 102s | 102s 312 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr.rs:326:11 102s | 102s 326 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr/addr.rs:67:11 102s | 102s 67 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr/addr.rs:85:11 102s | 102s 85 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr/addr.rs:103:11 102s | 102s 103 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr/addr.rs:113:11 102s | 102s 113 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr/addr.rs:139:11 102s | 102s 139 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr/addr.rs:150:11 102s | 102s 150 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr/proxy.rs:172:11 102s | 102s 172 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr/proxy.rs:192:11 102s | 102s 192 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr/proxy.rs:205:11 102s | 102s 205 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr/proxy.rs:222:11 102s | 102s 222 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr/proxy.rs:235:11 102s | 102s 235 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr/proxy.rs:248:11 102s | 102s 248 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr/proxy.rs:261:11 102s | 102s 261 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr/proxy.rs:274:11 102s | 102s 274 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr/proxy.rs:294:11 102s | 102s 294 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr/proxy.rs:307:11 102s | 102s 307 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr/proxy.rs:320:11 102s | 102s 320 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr/proxy.rs:333:11 102s | 102s 333 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr/proxy.rs:358:11 102s | 102s 358 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr/proxy.rs:371:11 102s | 102s 371 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr/proxy.rs:384:11 102s | 102s 384 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr/proxy.rs:99:12 102s | 102s 99 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr/proxy.rs:110:12 102s | 102s 110 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr/range.rs:203:11 102s | 102s 203 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr/range.rs:242:11 102s | 102s 242 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr/range.rs:255:11 102s | 102s 255 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr/range.rs:268:11 102s | 102s 268 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr/range.rs:281:11 102s | 102s 281 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr/range.rs:297:11 102s | 102s 297 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr/range.rs:387:11 102s | 102s 387 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr/single.rs:1208:11 102s | 102s 1208 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr/single.rs:1289:11 102s | 102s 1289 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr/single.rs:1301:11 102s | 102s 1301 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr/single.rs:1377:11 102s | 102s 1377 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr/single.rs:1412:11 102s | 102s 1412 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr/single.rs:1422:11 102s | 102s 1422 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr/single.rs:1432:11 102s | 102s 1432 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr/single.rs:344:12 102s | 102s 344 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr/single.rs:391:12 102s | 102s 391 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr/single.rs:452:12 102s | 102s 452 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr/single.rs:834:12 102s | 102s 834 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr/single.rs:854:12 102s | 102s 854 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr/single.rs:1014:12 102s | 102s 1014 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr/single.rs:1046:12 102s | 102s 1046 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr/span.rs:681:11 102s | 102s 681 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr/span.rs:735:11 102s | 102s 735 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr/span.rs:800:11 102s | 102s 800 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr/span.rs:813:11 102s | 102s 813 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr/span.rs:823:11 102s | 102s 823 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr/span.rs:843:11 102s | 102s 843 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/slice/api.rs:2740:11 102s | 102s 2740 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/slice/api.rs:528:12 102s | 102s 528 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/slice/api.rs:536:12 102s | 102s 536 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/slice/api.rs:556:12 102s | 102s 556 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/slice/api.rs:574:12 102s | 102s 574 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/slice/api.rs:2180:12 102s | 102s 2180 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/slice/api.rs:2192:12 102s | 102s 2192 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/slice/iter.rs:41:11 102s | 102s 41 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/slice/iter.rs:57:11 102s | 102s 57 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/slice/iter.rs:230:11 102s | 102s 230 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/slice/iter.rs:246:11 102s | 102s 246 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/slice/iter.rs:259:11 102s | 102s 259 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/slice/iter.rs:380:11 102s | 102s 380 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/slice/iter.rs:393:11 102s | 102s 393 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/slice/iter.rs:131:12 102s | 102s 131 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/slice/iter.rs:221:12 102s | 102s 221 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/slice/iter.rs:325:12 102s | 102s 325 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/slice/iter.rs:331:12 102s | 102s 331 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/slice/iter.rs:365:12 102s | 102s 365 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/slice/iter.rs:371:12 102s | 102s 371 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/slice/iter.rs:884:12 102s | 102s 884 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/slice/iter.rs:989:12 102s | 102s 989 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/slice/iter.rs:1295:12 102s | 102s 1295 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/slice/iter.rs:1400:12 102s | 102s 1400 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/slice/traits.rs:531:11 102s | 102s 531 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/slice/traits.rs:570:11 102s | 102s 570 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/slice.rs:974:12 102s | 102s 974 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/slice.rs:998:12 102s | 102s 998 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/slice.rs:1011:12 102s | 102s 1011 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/slice.rs:1024:12 102s | 102s 1024 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/slice.rs:1037:12 102s | 102s 1037 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/api.rs:314:12 102s | 102s 314 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/api.rs:368:12 102s | 102s 368 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/api.rs:376:12 102s | 102s 376 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/api.rs:384:12 102s | 102s 384 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/api.rs:392:12 102s | 102s 392 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/api.rs:773:12 102s | 102s 773 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/api.rs:788:12 102s | 102s 788 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/api.rs:894:12 102s | 102s 894 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/api.rs:931:12 102s | 102s 931 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/iter.rs:81:11 102s | 102s 81 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/iter.rs:94:11 102s | 102s 94 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/iter.rs:128:11 102s | 102s 128 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/iter.rs:145:11 102s | 102s 145 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/iter.rs:159:11 102s | 102s 159 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/iter.rs:172:11 102s | 102s 172 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/iter.rs:190:11 102s | 102s 190 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/iter.rs:203:11 102s | 102s 203 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/iter.rs:234:11 102s | 102s 234 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/iter.rs:250:11 102s | 102s 250 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/iter.rs:410:11 102s | 102s 410 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/iter.rs:422:11 102s | 102s 422 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/iter.rs:435:11 102s | 102s 435 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/iter.rs:457:11 102s | 102s 457 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/iter.rs:475:11 102s | 102s 475 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/iter.rs:601:11 102s | 102s 601 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/iter.rs:619:11 102s | 102s 619 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/iter.rs:323:12 102s | 102s 323 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/iter.rs:329:12 102s | 102s 329 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/ops.rs:30:11 102s | 102s 30 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/ops.rs:42:11 102s | 102s 42 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/ops.rs:54:11 102s | 102s 54 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/ops.rs:70:11 102s | 102s 70 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/ops.rs:83:11 102s | 102s 83 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/ops.rs:95:11 102s | 102s 95 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/ops.rs:107:11 102s | 102s 107 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/ops.rs:123:11 102s | 102s 123 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/ops.rs:136:11 102s | 102s 136 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/ops.rs:148:11 102s | 102s 148 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/ops.rs:160:11 102s | 102s 160 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/ops.rs:176:11 102s | 102s 176 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/ops.rs:226:11 102s | 102s 226 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/ops.rs:241:11 102s | 102s 241 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/traits.rs:40:11 102s | 102s 40 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/traits.rs:52:11 102s | 102s 52 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/traits.rs:64:11 102s | 102s 64 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/traits.rs:83:11 102s | 102s 83 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/traits.rs:95:11 102s | 102s 95 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/traits.rs:109:11 102s | 102s 109 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/traits.rs:123:11 102s | 102s 123 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/traits.rs:137:11 102s | 102s 137 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/traits.rs:150:11 102s | 102s 150 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/traits.rs:164:11 102s | 102s 164 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/traits.rs:178:11 102s | 102s 178 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/traits.rs:192:11 102s | 102s 192 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/traits.rs:205:11 102s | 102s 205 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/traits.rs:217:11 102s | 102s 217 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/traits.rs:229:11 102s | 102s 229 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/traits.rs:241:11 102s | 102s 241 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/traits.rs:253:11 102s | 102s 253 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/traits.rs:265:11 102s | 102s 265 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/traits.rs:277:11 102s | 102s 277 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/traits.rs:289:11 102s | 102s 289 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/traits.rs:301:11 102s | 102s 301 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/traits.rs:313:11 102s | 102s 313 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/traits.rs:325:11 102s | 102s 325 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/traits.rs:339:11 102s | 102s 339 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/traits.rs:377:11 102s | 102s 377 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/devel.rs:32:14 102s | 102s 32 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s ::: /usr/share/cargo/registry/bitvec-1.0.1/src/vec/traits.rs:367:1 102s | 102s 367 | / easy_fmt! { 102s 368 | | impl Binary 102s 369 | | impl Display 102s 370 | | impl LowerHex 102s ... | 102s 374 | | for BitVec 102s 375 | | } 102s | |_- in this macro invocation 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s = note: this warning originates in the macro `easy_fmt` (in Nightly builds, run with -Z macro-backtrace for more info) 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/view.rs:43:11 102s | 102s 43 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/view.rs:73:11 102s | 102s 73 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/view.rs:107:11 102s | 102s 107 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/view.rs:225:11 102s | 102s 225 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: unexpected `cfg` condition name: `tarpaulin_include` 102s --> /usr/share/cargo/registry/bitvec-1.0.1/src/view.rs:244:11 102s | 102s 244 | #[cfg(not(tarpaulin_include))] 102s | ^^^^^^^^^^^^^^^^^ 102s | 102s = help: consider using a Cargo feature instead 102s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 102s [lints.rust] 102s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 102s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 102s = note: see for more information about checking conditional configuration 102s 102s warning: `funty` (lib) generated 1 warning (1 duplicate) 104s warning: `bitvec` (lib) generated 262 warnings (1 duplicate) 104s Compiling bitvec_helpers v3.1.5 (/usr/share/cargo/registry/bitvec_helpers-3.1.5) 104s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=bitvec_helpers CARGO_MANIFEST_DIR=/usr/share/cargo/registry/bitvec_helpers-3.1.5 CARGO_MANIFEST_PATH=/usr/share/cargo/registry/bitvec_helpers-3.1.5/Cargo.toml CARGO_PKG_AUTHORS=quietvoid CARGO_PKG_DESCRIPTION='BitVec based bitstream reader and writer' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=bitvec_helpers CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/quietvoid/bitvec_helpers' CARGO_PKG_RUST_VERSION=1.79.0 CARGO_PKG_VERSION=3.1.5 CARGO_PKG_VERSION_MAJOR=3 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=5 CARGO_PKG_VERSION_PRE='' CARGO_PRIMARY_PACKAGE=1 LD_LIBRARY_PATH=/tmp/tmp.oekeQrJbx7/target/debug/deps rustc --crate-name bitvec_helpers --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="bitstream-io"' --cfg 'feature="bitvec"' --cfg 'feature="default"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("bitstream-io", "bitvec", "default"))' -C metadata=de85dfd7890f2adb -C extra-filename=-de85dfd7890f2adb --out-dir /tmp/tmp.oekeQrJbx7/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -C incremental=/tmp/tmp.oekeQrJbx7/target/s390x-unknown-linux-gnu/debug/incremental -L dependency=/tmp/tmp.oekeQrJbx7/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.oekeQrJbx7/target/debug/deps --extern anyhow=/tmp/tmp.oekeQrJbx7/target/s390x-unknown-linux-gnu/debug/deps/libanyhow-30f85af40dc383bf.rlib --extern bitstream_io=/tmp/tmp.oekeQrJbx7/target/s390x-unknown-linux-gnu/debug/deps/libbitstream_io-6d4a03923513d049.rlib --extern bitvec=/tmp/tmp.oekeQrJbx7/target/s390x-unknown-linux-gnu/debug/deps/libbitvec-255dfc50e4dc827a.rlib --extern funty=/tmp/tmp.oekeQrJbx7/target/s390x-unknown-linux-gnu/debug/deps/libfunty-b943fa651dbd1f9d.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/bitvec_helpers-3.1.5=/usr/share/cargo/registry/bitvec-helpers-3.1.5 --remap-path-prefix /tmp/tmp.oekeQrJbx7/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 104s warning: `bitvec_helpers` (lib test) generated 1 warning (1 duplicate) 104s Finished `test` profile [unoptimized + debuginfo] target(s) in 3.80s 104s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_MANIFEST_DIR=/usr/share/cargo/registry/bitvec_helpers-3.1.5 CARGO_MANIFEST_PATH=/usr/share/cargo/registry/bitvec_helpers-3.1.5/Cargo.toml CARGO_PKG_AUTHORS=quietvoid CARGO_PKG_DESCRIPTION='BitVec based bitstream reader and writer' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=bitvec_helpers CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/quietvoid/bitvec_helpers' CARGO_PKG_RUST_VERSION=1.79.0 CARGO_PKG_VERSION=3.1.5 CARGO_PKG_VERSION_MAJOR=3 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=5 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/tmp/tmp.oekeQrJbx7/target/s390x-unknown-linux-gnu/debug/deps:/tmp/tmp.oekeQrJbx7/target/s390x-unknown-linux-gnu/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' /tmp/tmp.oekeQrJbx7/target/s390x-unknown-linux-gnu/debug/deps/bitvec_helpers-de85dfd7890f2adb` 104s 104s running 6 tests 104s test bitstream_io_impl::bitstream_io_reader::get_n_validations ... ok 104s test bitstream_io_impl::bitstream_io_reader::skip_n_validations ... ok 104s test bitvec_impl::bitslice_reader::skip_n_validations ... ok 104s test bitvec_impl::bitslice_reader::get_n_validations ... ok 104s test bitvec_impl::bitvec_reader::get_n_validations ... ok 104s test bitvec_impl::bitvec_reader::skip_n_validations ... ok 104s 104s test result: ok. 6 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.00s 104s 105s /tmp/autopkgtest.ijk0Vb/wrapper.sh: checking for leaked background processes... 105s /tmp/autopkgtest.ijk0Vb/wrapper.sh: waiting for tee/cat subprocesses... 105s /tmp/autopkgtest.ijk0Vb/wrapper.sh: cleaning up... 105s /tmp/autopkgtest.ijk0Vb/wrapper.sh: Exit status: 0 105s autopkgtest: DBG: testbed command exited with code 0 105s autopkgtest [21:12:09]: test rust-bitvec-helpers:@: -----------------------] 105s autopkgtest: DBG: testbed executing test finished with exit status 0 105s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.ijk0Vb/rust-bitvec-helpers%3A%40-stdout /tmp/autopkgtest-work.59hd9nc_/out/rust-bitvec-helpers%3A%40-stdout 105s autopkgtest: DBG: got reply from testbed: ok 105s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.ijk0Vb/rust-bitvec-helpers%3A%40-stderr /tmp/autopkgtest-work.59hd9nc_/out/rust-bitvec-helpers%3A%40-stderr 105s autopkgtest: DBG: got reply from testbed: ok 105s rust-bitvec-helpers:@ PASS 105s autopkgtest [21:12:09]: test rust-bitvec-helpers:@: - - - - - - - - - - results - - - - - - - - - - 105s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.ijk0Vb/rust-bitvec-helpers%3A%40-artifacts/ /tmp/autopkgtest-work.59hd9nc_/out/artifacts/ 106s autopkgtest: DBG: got reply from testbed: ok 106s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.ijk0Vb/rust-bitvec-helpers:@-artifacts', '/tmp/autopkgtest.ijk0Vb/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 106s autopkgtest: DBG: testbed command exited with code 0 106s autopkgtest [21:12:10]: test librust-bitvec-helpers-dev:bitstream-io: preparing testbed 106s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['dh-cargo (>= 18)', 'librust-bitvec-helpers-dev'], deps_new=['dh-cargo (>= 18)', 'librust-bitvec-helpers-dev'] 106s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 106s autopkgtest: DBG: install_deps: deps_new=['dh-cargo (>= 18)', 'librust-bitvec-helpers-dev'] 106s autopkgtest: DBG: install-deps: satisfying dh-cargo (>= 18), librust-bitvec-helpers-dev 106s autopkgtest: DBG: can use apt-get on testbed: True 106s 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-bitvec-helpers-dev'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 106s Reading package lists... 106s Building dependency tree... 106s Reading state information... 106s Starting pkgProblemResolver with broken count: 0 106s Starting 2 pkgProblemResolver with broken count: 0 106s Done 107s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 107s autopkgtest: DBG: testbed command exited with code 0 107s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'librust-bitvec-helpers-dev'], kind short, sout pipe, serr pipe, env [] 107s autopkgtest: DBG: testbed command exited with code 0 107s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.ijk0Vb/librust-bitvec-helpers-dev:bitstream-io-packages.all"], kind short, sout raw, serr pipe, env [] 107s autopkgtest: DBG: testbed command exited with code 0 107s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.ijk0Vb/librust-bitvec-helpers-dev%3Abitstream-io-packages.all /tmp/autopkgtest-work.59hd9nc_/out/librust-bitvec-helpers-dev%3Abitstream-io-packages.all 107s autopkgtest: DBG: got reply from testbed: ok 107s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.ijk0Vb/build.4F8/src'], kind short, sout raw, serr raw, env [] 107s autopkgtest: DBG: testbed command exited with code 0 107s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.ijk0Vb/build.4F8/src already exists 107s autopkgtest [21:12:11]: test librust-bitvec-helpers-dev:bitstream-io: /usr/share/cargo/bin/cargo-auto-test bitvec_helpers 3.1.5 --all-targets --no-default-features --features bitstream-io 107s autopkgtest [21:12:11]: test librust-bitvec-helpers-dev:bitstream-io: [----------------------- 107s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.ijk0Vb/wrapper.sh --debug --artifacts=/tmp/autopkgtest.ijk0Vb/librust-bitvec-helpers-dev:bitstream-io-artifacts --chdir=/tmp/autopkgtest.ijk0Vb/build.4F8/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.ijk0Vb/librust-bitvec-helpers-dev:bitstream-io-stderr --stdout=/tmp/autopkgtest.ijk0Vb/librust-bitvec-helpers-dev:bitstream-io-stdout --tmp=/tmp/autopkgtest.ijk0Vb/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 bitvec_helpers 3.1.5 --all-targets --no-default-features --features bitstream-io'"], kind test, sout raw, serr raw, env [] 107s /tmp/autopkgtest.ijk0Vb/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.ijk0Vb/librust-bitvec-helpers-dev:bitstream-io-artifacts 107s /tmp/autopkgtest.ijk0Vb/wrapper.sh: changing to directory: /tmp/autopkgtest.ijk0Vb/build.4F8/src 107s /tmp/autopkgtest.ijk0Vb/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 107s /tmp/autopkgtest.ijk0Vb/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 107s /tmp/autopkgtest.ijk0Vb/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 107s /tmp/autopkgtest.ijk0Vb/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 107s /tmp/autopkgtest.ijk0Vb/wrapper.sh: setting environment: LANG=C.UTF-8 107s /tmp/autopkgtest.ijk0Vb/wrapper.sh: unsetting environment: LANGUAGE 107s /tmp/autopkgtest.ijk0Vb/wrapper.sh: unsetting environment: LC_ADDRESS 107s /tmp/autopkgtest.ijk0Vb/wrapper.sh: unsetting environment: LC_ALL 107s /tmp/autopkgtest.ijk0Vb/wrapper.sh: unsetting environment: LC_COLLATE 107s /tmp/autopkgtest.ijk0Vb/wrapper.sh: unsetting environment: LC_CTYPE 107s /tmp/autopkgtest.ijk0Vb/wrapper.sh: unsetting environment: LC_IDENTIFICATION 107s /tmp/autopkgtest.ijk0Vb/wrapper.sh: unsetting environment: LC_MEASUREMENT 107s /tmp/autopkgtest.ijk0Vb/wrapper.sh: unsetting environment: LC_MESSAGES 107s /tmp/autopkgtest.ijk0Vb/wrapper.sh: unsetting environment: LC_MONETARY 107s /tmp/autopkgtest.ijk0Vb/wrapper.sh: unsetting environment: LC_NAME 107s /tmp/autopkgtest.ijk0Vb/wrapper.sh: unsetting environment: LC_NUMERIC 107s /tmp/autopkgtest.ijk0Vb/wrapper.sh: unsetting environment: LC_PAPER 107s /tmp/autopkgtest.ijk0Vb/wrapper.sh: unsetting environment: LC_TELEPHONE 107s /tmp/autopkgtest.ijk0Vb/wrapper.sh: unsetting environment: LC_TIME 107s /tmp/autopkgtest.ijk0Vb/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 107s /tmp/autopkgtest.ijk0Vb/wrapper.sh: pretending to be a login shell 107s /tmp/autopkgtest.ijk0Vb/wrapper.sh: will write standard error to /tmp/autopkgtest.ijk0Vb/librust-bitvec-helpers-dev:bitstream-io-stderr 107s /tmp/autopkgtest.ijk0Vb/wrapper.sh: will write stdout to /tmp/autopkgtest.ijk0Vb/librust-bitvec-helpers-dev:bitstream-io-stdout 107s /tmp/autopkgtest.ijk0Vb/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.ijk0Vb/autopkgtest_tmp 107s /tmp/autopkgtest.ijk0Vb/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 107s /tmp/autopkgtest.ijk0Vb/wrapper.sh: command to run: bash -ec /usr/share/cargo/bin/cargo-auto-test bitvec_helpers 3.1.5 --all-targets --no-default-features --features bitstream-io 107s /tmp/autopkgtest.ijk0Vb/wrapper.sh: copying /tmp/tmp.7ZbAN7UoHt/out to stdout and file: /tmp/autopkgtest.ijk0Vb/librust-bitvec-helpers-dev:bitstream-io-stdout 107s /tmp/autopkgtest.ijk0Vb/wrapper.sh: copying /tmp/tmp.7ZbAN7UoHt/err to standard error and file: /tmp/autopkgtest.ijk0Vb/librust-bitvec-helpers-dev:bitstream-io-stdout 107s /tmp/autopkgtest.ijk0Vb/wrapper.sh: writing script pid 3123 to /tmp/autopkgtest_script_pid 107s debian cargo wrapper: options, profiles, parallel, lto: ['parallel=2'] [] ['-j2'] 0 107s debian cargo wrapper: rust_type, gnu_type: s390x-unknown-linux-gnu, s390x-linux-gnu 107s debian cargo wrapper: unsetting RUSTFLAGS and assuming it will be (or already was) added to $CARGO_HOME/config.toml 107s debian cargo wrapper: linking /usr/share/cargo/registry/* into /tmp/tmp.fZ8omGf6Zh/registry/ 108s debian cargo wrapper: options, profiles, parallel, lto: ['parallel=2'] [] ['-j2'] 0 108s debian cargo wrapper: rust_type, gnu_type: s390x-unknown-linux-gnu, s390x-linux-gnu 108s debian cargo wrapper: unsetting RUSTFLAGS and assuming it will be (or already was) added to $CARGO_HOME/config.toml 108s 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', 'bitstream-io'],) {} 108s Compiling bitstream-io v2.5.0 108s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=bitstream_io CARGO_MANIFEST_DIR=/tmp/tmp.fZ8omGf6Zh/registry/bitstream-io-2.5.0 CARGO_MANIFEST_PATH=/tmp/tmp.fZ8omGf6Zh/registry/bitstream-io-2.5.0/Cargo.toml CARGO_PKG_AUTHORS='Brian Langenberger ' CARGO_PKG_DESCRIPTION='Library for reading/writing un-aligned values from/to streams in big-endian and little-endian formats.' CARGO_PKG_HOMEPAGE='https://github.com/tuffy/bitstream-io' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=bitstream-io CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/tuffy/bitstream-io' CARGO_PKG_RUST_VERSION=1.79 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.fZ8omGf6Zh/target/debug/deps rustc --crate-name bitstream_io --edition=2018 /tmp/tmp.fZ8omGf6Zh/registry/bitstream-io-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("alloc", "core2", "default", "std"))' -C metadata=6d4a03923513d049 -C extra-filename=-6d4a03923513d049 --out-dir /tmp/tmp.fZ8omGf6Zh/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.fZ8omGf6Zh/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.fZ8omGf6Zh/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/bitvec_helpers-3.1.5=/usr/share/cargo/registry/bitvec-helpers-3.1.5 --remap-path-prefix /tmp/tmp.fZ8omGf6Zh/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 108s warning: unstable feature specified for `-Ctarget-feature`: `backchain` 108s | 108s = note: this feature is not stably supported; its behavior can change in the future 108s 108s warning: `bitstream-io` (lib) generated 1 warning 108s Compiling bitvec_helpers v3.1.5 (/usr/share/cargo/registry/bitvec_helpers-3.1.5) 108s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=bitvec_helpers CARGO_MANIFEST_DIR=/usr/share/cargo/registry/bitvec_helpers-3.1.5 CARGO_MANIFEST_PATH=/usr/share/cargo/registry/bitvec_helpers-3.1.5/Cargo.toml CARGO_PKG_AUTHORS=quietvoid CARGO_PKG_DESCRIPTION='BitVec based bitstream reader and writer' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=bitvec_helpers CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/quietvoid/bitvec_helpers' CARGO_PKG_RUST_VERSION=1.79.0 CARGO_PKG_VERSION=3.1.5 CARGO_PKG_VERSION_MAJOR=3 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=5 CARGO_PKG_VERSION_PRE='' CARGO_PRIMARY_PACKAGE=1 LD_LIBRARY_PATH=/tmp/tmp.fZ8omGf6Zh/target/debug/deps rustc --crate-name bitvec_helpers --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="bitstream-io"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("bitstream-io", "bitvec", "default"))' -C metadata=caafc05b4c2d43da -C extra-filename=-caafc05b4c2d43da --out-dir /tmp/tmp.fZ8omGf6Zh/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -C incremental=/tmp/tmp.fZ8omGf6Zh/target/s390x-unknown-linux-gnu/debug/incremental -L dependency=/tmp/tmp.fZ8omGf6Zh/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.fZ8omGf6Zh/target/debug/deps --extern bitstream_io=/tmp/tmp.fZ8omGf6Zh/target/s390x-unknown-linux-gnu/debug/deps/libbitstream_io-6d4a03923513d049.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/bitvec_helpers-3.1.5=/usr/share/cargo/registry/bitvec-helpers-3.1.5 --remap-path-prefix /tmp/tmp.fZ8omGf6Zh/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 108s warning: `bitvec_helpers` (lib test) generated 1 warning (1 duplicate) 108s Finished `test` profile [unoptimized + debuginfo] target(s) in 0.79s 108s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_MANIFEST_DIR=/usr/share/cargo/registry/bitvec_helpers-3.1.5 CARGO_MANIFEST_PATH=/usr/share/cargo/registry/bitvec_helpers-3.1.5/Cargo.toml CARGO_PKG_AUTHORS=quietvoid CARGO_PKG_DESCRIPTION='BitVec based bitstream reader and writer' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=bitvec_helpers CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/quietvoid/bitvec_helpers' CARGO_PKG_RUST_VERSION=1.79.0 CARGO_PKG_VERSION=3.1.5 CARGO_PKG_VERSION_MAJOR=3 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=5 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/tmp/tmp.fZ8omGf6Zh/target/s390x-unknown-linux-gnu/debug/deps:/tmp/tmp.fZ8omGf6Zh/target/s390x-unknown-linux-gnu/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' /tmp/tmp.fZ8omGf6Zh/target/s390x-unknown-linux-gnu/debug/deps/bitvec_helpers-caafc05b4c2d43da` 108s 108s running 2 tests 108s test bitstream_io_impl::bitstream_io_reader::skip_n_validations ... ok 108s test bitstream_io_impl::bitstream_io_reader::get_n_validations ... ok 108s 108s test result: ok. 2 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.00s 108s 108s /tmp/autopkgtest.ijk0Vb/wrapper.sh: checking for leaked background processes... 108s /tmp/autopkgtest.ijk0Vb/wrapper.sh: waiting for tee/cat subprocesses... 108s /tmp/autopkgtest.ijk0Vb/wrapper.sh: cleaning up... 108s /tmp/autopkgtest.ijk0Vb/wrapper.sh: Exit status: 0 108s autopkgtest: DBG: testbed command exited with code 0 109s autopkgtest [21:12:13]: test librust-bitvec-helpers-dev:bitstream-io: -----------------------] 109s autopkgtest: DBG: testbed executing test finished with exit status 0 109s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.ijk0Vb/librust-bitvec-helpers-dev%3Abitstream-io-stdout /tmp/autopkgtest-work.59hd9nc_/out/librust-bitvec-helpers-dev%3Abitstream-io-stdout 109s autopkgtest: DBG: got reply from testbed: ok 109s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.ijk0Vb/librust-bitvec-helpers-dev%3Abitstream-io-stderr /tmp/autopkgtest-work.59hd9nc_/out/librust-bitvec-helpers-dev%3Abitstream-io-stderr 109s autopkgtest: DBG: got reply from testbed: ok 109s autopkgtest [21:12:13]: test librust-bitvec-helpers-dev:bitstream-io: - - - - - - - - - - results - - - - - - - - - - 109s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.ijk0Vb/librust-bitvec-helpers-dev%3Abitstream-io-artifacts/ /tmp/autopkgtest-work.59hd9nc_/out/artifacts/ 109s librust-bitvec-helpers-dev:bitstream-io PASS 109s autopkgtest: DBG: got reply from testbed: ok 109s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.ijk0Vb/librust-bitvec-helpers-dev:bitstream-io-artifacts', '/tmp/autopkgtest.ijk0Vb/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 109s autopkgtest: DBG: testbed command exited with code 0 109s autopkgtest [21:12:13]: test librust-bitvec-helpers-dev:bitvec: preparing testbed 109s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['dh-cargo (>= 18)', 'librust-bitvec-helpers-dev'], deps_new=['dh-cargo (>= 18)', 'librust-bitvec-helpers-dev'] 109s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 109s autopkgtest: DBG: install_deps: deps_new=['dh-cargo (>= 18)', 'librust-bitvec-helpers-dev'] 109s autopkgtest: DBG: install-deps: satisfying dh-cargo (>= 18), librust-bitvec-helpers-dev 109s autopkgtest: DBG: can use apt-get on testbed: True 109s 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-bitvec-helpers-dev'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 110s Reading package lists... 110s Building dependency tree... 110s Reading state information... 110s Starting pkgProblemResolver with broken count: 0 110s Starting 2 pkgProblemResolver with broken count: 0 110s Done 110s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 110s autopkgtest: DBG: testbed command exited with code 0 110s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'librust-bitvec-helpers-dev'], kind short, sout pipe, serr pipe, env [] 110s autopkgtest: DBG: testbed command exited with code 0 110s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.ijk0Vb/librust-bitvec-helpers-dev:bitvec-packages.all"], kind short, sout raw, serr pipe, env [] 110s autopkgtest: DBG: testbed command exited with code 0 110s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.ijk0Vb/librust-bitvec-helpers-dev%3Abitvec-packages.all /tmp/autopkgtest-work.59hd9nc_/out/librust-bitvec-helpers-dev%3Abitvec-packages.all 111s autopkgtest: DBG: got reply from testbed: ok 111s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.ijk0Vb/build.4F8/src'], kind short, sout raw, serr raw, env [] 111s autopkgtest: DBG: testbed command exited with code 0 111s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.ijk0Vb/build.4F8/src already exists 111s autopkgtest [21:12:15]: test librust-bitvec-helpers-dev:bitvec: /usr/share/cargo/bin/cargo-auto-test bitvec_helpers 3.1.5 --all-targets --no-default-features --features bitvec 111s autopkgtest [21:12:15]: test librust-bitvec-helpers-dev:bitvec: [----------------------- 111s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.ijk0Vb/wrapper.sh --debug --artifacts=/tmp/autopkgtest.ijk0Vb/librust-bitvec-helpers-dev:bitvec-artifacts --chdir=/tmp/autopkgtest.ijk0Vb/build.4F8/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.ijk0Vb/librust-bitvec-helpers-dev:bitvec-stderr --stdout=/tmp/autopkgtest.ijk0Vb/librust-bitvec-helpers-dev:bitvec-stdout --tmp=/tmp/autopkgtest.ijk0Vb/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 bitvec_helpers 3.1.5 --all-targets --no-default-features --features bitvec'"], kind test, sout raw, serr raw, env [] 111s /tmp/autopkgtest.ijk0Vb/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.ijk0Vb/librust-bitvec-helpers-dev:bitvec-artifacts 111s /tmp/autopkgtest.ijk0Vb/wrapper.sh: changing to directory: /tmp/autopkgtest.ijk0Vb/build.4F8/src 111s /tmp/autopkgtest.ijk0Vb/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 111s /tmp/autopkgtest.ijk0Vb/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 111s /tmp/autopkgtest.ijk0Vb/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 111s /tmp/autopkgtest.ijk0Vb/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 111s /tmp/autopkgtest.ijk0Vb/wrapper.sh: setting environment: LANG=C.UTF-8 111s /tmp/autopkgtest.ijk0Vb/wrapper.sh: unsetting environment: LANGUAGE 111s /tmp/autopkgtest.ijk0Vb/wrapper.sh: unsetting environment: LC_ADDRESS 111s /tmp/autopkgtest.ijk0Vb/wrapper.sh: unsetting environment: LC_ALL 111s /tmp/autopkgtest.ijk0Vb/wrapper.sh: unsetting environment: LC_COLLATE 111s /tmp/autopkgtest.ijk0Vb/wrapper.sh: unsetting environment: LC_CTYPE 111s /tmp/autopkgtest.ijk0Vb/wrapper.sh: unsetting environment: LC_IDENTIFICATION 111s /tmp/autopkgtest.ijk0Vb/wrapper.sh: unsetting environment: LC_MEASUREMENT 111s /tmp/autopkgtest.ijk0Vb/wrapper.sh: unsetting environment: LC_MESSAGES 111s /tmp/autopkgtest.ijk0Vb/wrapper.sh: unsetting environment: LC_MONETARY 111s /tmp/autopkgtest.ijk0Vb/wrapper.sh: unsetting environment: LC_NAME 111s /tmp/autopkgtest.ijk0Vb/wrapper.sh: unsetting environment: LC_NUMERIC 111s /tmp/autopkgtest.ijk0Vb/wrapper.sh: unsetting environment: LC_PAPER 111s /tmp/autopkgtest.ijk0Vb/wrapper.sh: unsetting environment: LC_TELEPHONE 111s /tmp/autopkgtest.ijk0Vb/wrapper.sh: unsetting environment: LC_TIME 111s /tmp/autopkgtest.ijk0Vb/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 111s /tmp/autopkgtest.ijk0Vb/wrapper.sh: pretending to be a login shell 111s /tmp/autopkgtest.ijk0Vb/wrapper.sh: will write standard error to /tmp/autopkgtest.ijk0Vb/librust-bitvec-helpers-dev:bitvec-stderr 111s /tmp/autopkgtest.ijk0Vb/wrapper.sh: will write stdout to /tmp/autopkgtest.ijk0Vb/librust-bitvec-helpers-dev:bitvec-stdout 111s /tmp/autopkgtest.ijk0Vb/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.ijk0Vb/autopkgtest_tmp 111s /tmp/autopkgtest.ijk0Vb/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 111s /tmp/autopkgtest.ijk0Vb/wrapper.sh: command to run: bash -ec /usr/share/cargo/bin/cargo-auto-test bitvec_helpers 3.1.5 --all-targets --no-default-features --features bitvec 111s /tmp/autopkgtest.ijk0Vb/wrapper.sh: copying /tmp/tmp.OKrjEZodyM/out to stdout and file: /tmp/autopkgtest.ijk0Vb/librust-bitvec-helpers-dev:bitvec-stdout 111s /tmp/autopkgtest.ijk0Vb/wrapper.sh: copying /tmp/tmp.OKrjEZodyM/err to standard error and file: /tmp/autopkgtest.ijk0Vb/librust-bitvec-helpers-dev:bitvec-stdout 111s /tmp/autopkgtest.ijk0Vb/wrapper.sh: writing script pid 3362 to /tmp/autopkgtest_script_pid 111s debian cargo wrapper: options, profiles, parallel, lto: ['parallel=2'] [] ['-j2'] 0 111s debian cargo wrapper: rust_type, gnu_type: s390x-unknown-linux-gnu, s390x-linux-gnu 111s debian cargo wrapper: unsetting RUSTFLAGS and assuming it will be (or already was) added to $CARGO_HOME/config.toml 111s debian cargo wrapper: linking /usr/share/cargo/registry/* into /tmp/tmp.wE2DEtsSos/registry/ 111s debian cargo wrapper: options, profiles, parallel, lto: ['parallel=2'] [] ['-j2'] 0 111s debian cargo wrapper: rust_type, gnu_type: s390x-unknown-linux-gnu, s390x-linux-gnu 111s debian cargo wrapper: unsetting RUSTFLAGS and assuming it will be (or already was) added to $CARGO_HOME/config.toml 111s 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', 'bitvec'],) {} 111s Compiling tap v1.0.1 111s Compiling anyhow v1.0.86 111s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=tap CARGO_MANIFEST_DIR=/tmp/tmp.wE2DEtsSos/registry/tap-1.0.1 CARGO_MANIFEST_PATH=/tmp/tmp.wE2DEtsSos/registry/tap-1.0.1/Cargo.toml CARGO_PKG_AUTHORS='Elliott Linder :myrrlyn ' CARGO_PKG_DESCRIPTION='Generic extensions for tapping values in Rust' CARGO_PKG_HOMEPAGE='https://github.com/myrrlyn/tap' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=tap CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/myrrlyn/tap' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=1.0.1 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.wE2DEtsSos/target/debug/deps rustc --crate-name tap --edition=2015 /tmp/tmp.wE2DEtsSos/registry/tap-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=dc3123cf9c4aaec0 -C extra-filename=-dc3123cf9c4aaec0 --out-dir /tmp/tmp.wE2DEtsSos/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.wE2DEtsSos/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.wE2DEtsSos/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/bitvec_helpers-3.1.5=/usr/share/cargo/registry/bitvec-helpers-3.1.5 --remap-path-prefix /tmp/tmp.wE2DEtsSos/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 111s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.wE2DEtsSos/registry/anyhow-1.0.86 CARGO_MANIFEST_PATH=/tmp/tmp.wE2DEtsSos/registry/anyhow-1.0.86/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='Flexible concrete Error type built on std::error::Error' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=anyhow CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/anyhow' CARGO_PKG_RUST_VERSION=1.39 CARGO_PKG_VERSION=1.0.86 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=86 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.wE2DEtsSos/target/debug/deps rustc --crate-name build_script_build --edition=2018 /tmp/tmp.wE2DEtsSos/registry/anyhow-1.0.86/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("backtrace", "default", "std"))' -C metadata=ce1e359b06d9faf4 -C extra-filename=-ce1e359b06d9faf4 --out-dir /tmp/tmp.wE2DEtsSos/target/debug/build/anyhow-ce1e359b06d9faf4 -L dependency=/tmp/tmp.wE2DEtsSos/target/debug/deps --cap-lints warn` 111s warning: unstable feature specified for `-Ctarget-feature`: `backchain` 111s | 111s = note: this feature is not stably supported; its behavior can change in the future 111s 111s warning: `tap` (lib) generated 1 warning 111s Compiling cfg-if v1.0.0 111s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=cfg_if CARGO_MANIFEST_DIR=/tmp/tmp.wE2DEtsSos/registry/cfg-if-1.0.0 CARGO_MANIFEST_PATH=/tmp/tmp.wE2DEtsSos/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] 111s parameters. Structured like an if-else chain, the first matching branch is the 111s item that gets emitted. 111s ' 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.wE2DEtsSos/target/debug/deps rustc --crate-name cfg_if --edition=2018 /tmp/tmp.wE2DEtsSos/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.wE2DEtsSos/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.wE2DEtsSos/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.wE2DEtsSos/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/bitvec_helpers-3.1.5=/usr/share/cargo/registry/bitvec-helpers-3.1.5 --remap-path-prefix /tmp/tmp.wE2DEtsSos/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 111s warning: `cfg-if` (lib) generated 1 warning (1 duplicate) 111s Compiling radium v1.1.0 111s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=radium CARGO_MANIFEST_DIR=/tmp/tmp.wE2DEtsSos/registry/radium-1.1.0 CARGO_MANIFEST_PATH=/tmp/tmp.wE2DEtsSos/registry/radium-1.1.0/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='Portable interfaces for maybe-atomic types' CARGO_PKG_HOMEPAGE='https://ferrilab.github.io/ferrilab' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=radium CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/ferrilab/ferrilab' 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.wE2DEtsSos/target/debug/deps rustc --crate-name radium --edition=2021 /tmp/tmp.wE2DEtsSos/registry/radium-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("portable-atomic", "portable-atomic-fallback"))' -C metadata=688a1d384b60c00e -C extra-filename=-688a1d384b60c00e --out-dir /tmp/tmp.wE2DEtsSos/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.wE2DEtsSos/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.wE2DEtsSos/target/debug/deps --extern cfg_if=/tmp/tmp.wE2DEtsSos/target/s390x-unknown-linux-gnu/debug/deps/libcfg_if-ff3ff84a061de73f.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/bitvec_helpers-3.1.5=/usr/share/cargo/registry/bitvec-helpers-3.1.5 --remap-path-prefix /tmp/tmp.wE2DEtsSos/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 111s warning: `radium` (lib) generated 1 warning (1 duplicate) 111s Compiling wyz v0.5.1 111s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=wyz CARGO_MANIFEST_DIR=/tmp/tmp.wE2DEtsSos/registry/wyz-0.5.1 CARGO_MANIFEST_PATH=/tmp/tmp.wE2DEtsSos/registry/wyz-0.5.1/Cargo.toml CARGO_PKG_AUTHORS='myrrlyn ' CARGO_PKG_DESCRIPTION='myrrlyn’s utility collection' CARGO_PKG_HOMEPAGE='https://myrrlyn.net/crates/wyz' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=wyz CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/myrrlyn/wyz' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.5.1 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=5 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.wE2DEtsSos/target/debug/deps rustc --crate-name wyz --edition=2018 /tmp/tmp.wE2DEtsSos/registry/wyz-0.5.1/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "default", "garbage", "once_cell", "std", "typemap"))' -C metadata=6a1737499423488b -C extra-filename=-6a1737499423488b --out-dir /tmp/tmp.wE2DEtsSos/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.wE2DEtsSos/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.wE2DEtsSos/target/debug/deps --extern tap=/tmp/tmp.wE2DEtsSos/target/s390x-unknown-linux-gnu/debug/deps/libtap-dc3123cf9c4aaec0.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/bitvec_helpers-3.1.5=/usr/share/cargo/registry/bitvec-helpers-3.1.5 --remap-path-prefix /tmp/tmp.wE2DEtsSos/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 111s warning: unexpected `cfg` condition name: `tarpaulin_include` 111s --> /usr/share/cargo/registry/wyz-0.5.1/src/comu.rs:9:12 111s | 111s 9 | #![cfg(not(tarpaulin_include))] 111s | ^^^^^^^^^^^^^^^^^ 111s | 111s = 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` 111s = help: consider using a Cargo feature instead 111s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 111s [lints.rust] 111s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 111s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 111s = note: see for more information about checking conditional configuration 111s = note: `#[warn(unexpected_cfgs)]` on by default 111s 111s warning: unexpected `cfg` condition name: `tarpaulin_include` 111s --> /usr/share/cargo/registry/wyz-0.5.1/src/bidi.rs:107:12 111s | 111s 107 | #[cfg(not(tarpaulin_include))] 111s | ^^^^^^^^^^^^^^^^^ 111s | 111s = help: consider using a Cargo feature instead 111s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 111s [lints.rust] 111s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 111s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 111s = note: see for more information about checking conditional configuration 111s 111s warning: unexpected `cfg` condition name: `tarpaulin_include` 111s --> /usr/share/cargo/registry/wyz-0.5.1/src/bidi.rs:113:12 111s | 111s 113 | #[cfg(not(tarpaulin_include))] 111s | ^^^^^^^^^^^^^^^^^ 111s | 111s = help: consider using a Cargo feature instead 111s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 111s [lints.rust] 111s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 111s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 111s = note: see for more information about checking conditional configuration 111s 111s warning: unexpected `cfg` condition name: `tarpaulin_include` 111s --> /usr/share/cargo/registry/wyz-0.5.1/src/bidi.rs:119:12 111s | 111s 119 | #[cfg(not(tarpaulin_include))] 111s | ^^^^^^^^^^^^^^^^^ 111s | 111s = help: consider using a Cargo feature instead 111s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 111s [lints.rust] 111s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 111s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 111s = note: see for more information about checking conditional configuration 111s 111s warning: unexpected `cfg` condition name: `tarpaulin_include` 111s --> /usr/share/cargo/registry/wyz-0.5.1/src/bidi.rs:143:12 111s | 111s 143 | #[cfg(not(tarpaulin_include))] 111s | ^^^^^^^^^^^^^^^^^ 111s | 111s = help: consider using a Cargo feature instead 111s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 111s [lints.rust] 111s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 111s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 111s = note: see for more information about checking conditional configuration 111s 111s warning: unexpected `cfg` condition name: `tarpaulin_include` 111s --> /usr/share/cargo/registry/wyz-0.5.1/src/fmt.rs:37:11 111s | 111s 37 | #[cfg(not(tarpaulin_include))] 111s | ^^^^^^^^^^^^^^^^^ 111s | 111s = help: consider using a Cargo feature instead 111s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 111s [lints.rust] 111s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 111s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 111s = note: see for more information about checking conditional configuration 111s 111s warning: unexpected `cfg` condition name: `tarpaulin_include` 111s --> /usr/share/cargo/registry/wyz-0.5.1/src/fmt.rs:368:11 111s | 111s 368 | #[cfg(not(tarpaulin_include))] 111s | ^^^^^^^^^^^^^^^^^ 111s | 111s = help: consider using a Cargo feature instead 111s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 111s [lints.rust] 111s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 111s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 111s = note: see for more information about checking conditional configuration 111s 111s warning: unexpected `cfg` condition name: `tarpaulin_include` 111s --> /usr/share/cargo/registry/wyz-0.5.1/src/fmt.rs:380:11 111s | 111s 380 | #[cfg(not(tarpaulin_include))] 111s | ^^^^^^^^^^^^^^^^^ 111s | 111s = help: consider using a Cargo feature instead 111s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 111s [lints.rust] 111s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 111s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 111s = note: see for more information about checking conditional configuration 111s 111s warning: unexpected `cfg` condition name: `tarpaulin_include` 111s --> /usr/share/cargo/registry/wyz-0.5.1/src/fmt.rs:390:11 111s | 111s 390 | #[cfg(not(tarpaulin_include))] 111s | ^^^^^^^^^^^^^^^^^ 111s | 111s = help: consider using a Cargo feature instead 111s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 111s [lints.rust] 111s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 111s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 111s = note: see for more information about checking conditional configuration 111s 111s warning: unexpected `cfg` condition name: `tarpaulin_include` 111s --> /usr/share/cargo/registry/wyz-0.5.1/src/fmt.rs:400:11 111s | 111s 400 | #[cfg(not(tarpaulin_include))] 111s | ^^^^^^^^^^^^^^^^^ 111s | 111s = help: consider using a Cargo feature instead 111s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 111s [lints.rust] 111s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 111s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 111s = note: see for more information about checking conditional configuration 111s 111s warning: unexpected `cfg` condition name: `tarpaulin_include` 111s --> /usr/share/cargo/registry/wyz-0.5.1/src/fmt.rs:156:13 111s | 111s 156 | #[cfg(not(tarpaulin_include))] 111s | ^^^^^^^^^^^^^^^^^ 111s ... 111s 263 | / fmt!( 111s 264 | | FmtBinary => Binary, 111s 265 | | FmtDisplay => Display, 111s 266 | | FmtLowerExp => LowerExp, 111s ... | 111s 271 | | FmtUpperHex => UpperHex, 111s 272 | | ); 111s | |_- in this macro invocation 111s | 111s = help: consider using a Cargo feature instead 111s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 111s [lints.rust] 111s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 111s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 111s = note: see for more information about checking conditional configuration 111s = note: this warning originates in the macro `fmt` (in Nightly builds, run with -Z macro-backtrace for more info) 111s 111s warning: unexpected `cfg` condition name: `tarpaulin_include` 111s --> /usr/share/cargo/registry/wyz-0.5.1/src/fmt.rs:171:13 111s | 111s 171 | #[cfg(not(tarpaulin_include))] 111s | ^^^^^^^^^^^^^^^^^ 111s ... 111s 263 | / fmt!( 111s 264 | | FmtBinary => Binary, 111s 265 | | FmtDisplay => Display, 111s 266 | | FmtLowerExp => LowerExp, 111s ... | 111s 271 | | FmtUpperHex => UpperHex, 111s 272 | | ); 111s | |_- in this macro invocation 111s | 111s = help: consider using a Cargo feature instead 111s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 111s [lints.rust] 111s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 111s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 111s = note: see for more information about checking conditional configuration 111s = note: this warning originates in the macro `fmt` (in Nightly builds, run with -Z macro-backtrace for more info) 111s 111s warning: unexpected `cfg` condition name: `tarpaulin_include` 111s --> /usr/share/cargo/registry/wyz-0.5.1/src/fmt.rs:179:13 111s | 111s 179 | #[cfg(not(tarpaulin_include))] 111s | ^^^^^^^^^^^^^^^^^ 111s ... 111s 263 | / fmt!( 111s 264 | | FmtBinary => Binary, 111s 265 | | FmtDisplay => Display, 111s 266 | | FmtLowerExp => LowerExp, 111s ... | 111s 271 | | FmtUpperHex => UpperHex, 111s 272 | | ); 111s | |_- in this macro invocation 111s | 111s = help: consider using a Cargo feature instead 111s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 111s [lints.rust] 111s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 111s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 111s = note: see for more information about checking conditional configuration 111s = note: this warning originates in the macro `fmt` (in Nightly builds, run with -Z macro-backtrace for more info) 111s 111s warning: unexpected `cfg` condition name: `tarpaulin_include` 111s --> /usr/share/cargo/registry/wyz-0.5.1/src/fmt.rs:187:13 111s | 111s 187 | #[cfg(not(tarpaulin_include))] 111s | ^^^^^^^^^^^^^^^^^ 111s ... 111s 263 | / fmt!( 111s 264 | | FmtBinary => Binary, 111s 265 | | FmtDisplay => Display, 111s 266 | | FmtLowerExp => LowerExp, 111s ... | 111s 271 | | FmtUpperHex => UpperHex, 111s 272 | | ); 111s | |_- in this macro invocation 111s | 111s = help: consider using a Cargo feature instead 111s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 111s [lints.rust] 111s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 111s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 111s = note: see for more information about checking conditional configuration 111s = note: this warning originates in the macro `fmt` (in Nightly builds, run with -Z macro-backtrace for more info) 111s 111s warning: unexpected `cfg` condition name: `tarpaulin_include` 111s --> /usr/share/cargo/registry/wyz-0.5.1/src/fmt.rs:195:13 111s | 111s 195 | #[cfg(not(tarpaulin_include))] 111s | ^^^^^^^^^^^^^^^^^ 111s ... 111s 263 | / fmt!( 111s 264 | | FmtBinary => Binary, 111s 265 | | FmtDisplay => Display, 111s 266 | | FmtLowerExp => LowerExp, 111s ... | 111s 271 | | FmtUpperHex => UpperHex, 111s 272 | | ); 111s | |_- in this macro invocation 111s | 111s = help: consider using a Cargo feature instead 111s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 111s [lints.rust] 111s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 111s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 111s = note: see for more information about checking conditional configuration 111s = note: this warning originates in the macro `fmt` (in Nightly builds, run with -Z macro-backtrace for more info) 111s 111s warning: unexpected `cfg` condition name: `tarpaulin_include` 111s --> /usr/share/cargo/registry/wyz-0.5.1/src/fmt.rs:203:13 111s | 111s 203 | #[cfg(not(tarpaulin_include))] 111s | ^^^^^^^^^^^^^^^^^ 111s ... 111s 263 | / fmt!( 111s 264 | | FmtBinary => Binary, 111s 265 | | FmtDisplay => Display, 111s 266 | | FmtLowerExp => LowerExp, 111s ... | 111s 271 | | FmtUpperHex => UpperHex, 111s 272 | | ); 111s | |_- in this macro invocation 111s | 111s = help: consider using a Cargo feature instead 111s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 111s [lints.rust] 111s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 111s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 111s = note: see for more information about checking conditional configuration 111s = note: this warning originates in the macro `fmt` (in Nightly builds, run with -Z macro-backtrace for more info) 111s 111s warning: unexpected `cfg` condition name: `tarpaulin_include` 111s --> /usr/share/cargo/registry/wyz-0.5.1/src/fmt.rs:211:13 111s | 111s 211 | #[cfg(not(tarpaulin_include))] 111s | ^^^^^^^^^^^^^^^^^ 111s ... 111s 263 | / fmt!( 111s 264 | | FmtBinary => Binary, 111s 265 | | FmtDisplay => Display, 111s 266 | | FmtLowerExp => LowerExp, 111s ... | 111s 271 | | FmtUpperHex => UpperHex, 111s 272 | | ); 111s | |_- in this macro invocation 111s | 111s = help: consider using a Cargo feature instead 111s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 111s [lints.rust] 111s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 111s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 111s = note: see for more information about checking conditional configuration 111s = note: this warning originates in the macro `fmt` (in Nightly builds, run with -Z macro-backtrace for more info) 111s 111s warning: unexpected `cfg` condition name: `tarpaulin_include` 111s --> /usr/share/cargo/registry/wyz-0.5.1/src/fmt.rs:219:13 111s | 111s 219 | #[cfg(not(tarpaulin_include))] 111s | ^^^^^^^^^^^^^^^^^ 111s ... 111s 263 | / fmt!( 111s 264 | | FmtBinary => Binary, 111s 265 | | FmtDisplay => Display, 111s 266 | | FmtLowerExp => LowerExp, 111s ... | 111s 271 | | FmtUpperHex => UpperHex, 111s 272 | | ); 111s | |_- in this macro invocation 111s | 111s = help: consider using a Cargo feature instead 111s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 111s [lints.rust] 111s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 111s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 111s = note: see for more information about checking conditional configuration 111s = note: this warning originates in the macro `fmt` (in Nightly builds, run with -Z macro-backtrace for more info) 111s 111s warning: unexpected `cfg` condition name: `tarpaulin_include` 111s --> /usr/share/cargo/registry/wyz-0.5.1/src/fmt.rs:227:13 111s | 111s 227 | #[cfg(not(tarpaulin_include))] 111s | ^^^^^^^^^^^^^^^^^ 111s ... 111s 263 | / fmt!( 111s 264 | | FmtBinary => Binary, 111s 265 | | FmtDisplay => Display, 111s 266 | | FmtLowerExp => LowerExp, 111s ... | 111s 271 | | FmtUpperHex => UpperHex, 111s 272 | | ); 111s | |_- in this macro invocation 111s | 111s = help: consider using a Cargo feature instead 111s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 111s [lints.rust] 111s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 111s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 111s = note: see for more information about checking conditional configuration 111s = note: this warning originates in the macro `fmt` (in Nightly builds, run with -Z macro-backtrace for more info) 111s 111s warning: unexpected `cfg` condition name: `tarpaulin_include` 111s --> /usr/share/cargo/registry/wyz-0.5.1/src/fmt.rs:237:13 111s | 111s 237 | #[cfg(not(tarpaulin_include))] 111s | ^^^^^^^^^^^^^^^^^ 111s ... 111s 263 | / fmt!( 111s 264 | | FmtBinary => Binary, 111s 265 | | FmtDisplay => Display, 111s 266 | | FmtLowerExp => LowerExp, 111s ... | 111s 271 | | FmtUpperHex => UpperHex, 111s 272 | | ); 111s | |_- in this macro invocation 111s | 111s = help: consider using a Cargo feature instead 111s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 111s [lints.rust] 111s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 111s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 111s = note: see for more information about checking conditional configuration 111s = note: this warning originates in the macro `fmt` (in Nightly builds, run with -Z macro-backtrace for more info) 111s 111s warning: unexpected `cfg` condition name: `tarpaulin_include` 111s --> /usr/share/cargo/registry/wyz-0.5.1/src/fmt.rs:245:13 111s | 111s 245 | #[cfg(not(tarpaulin_include))] 111s | ^^^^^^^^^^^^^^^^^ 111s ... 111s 263 | / fmt!( 111s 264 | | FmtBinary => Binary, 111s 265 | | FmtDisplay => Display, 111s 266 | | FmtLowerExp => LowerExp, 111s ... | 111s 271 | | FmtUpperHex => UpperHex, 111s 272 | | ); 111s | |_- in this macro invocation 111s | 111s = help: consider using a Cargo feature instead 111s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 111s [lints.rust] 111s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 111s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 111s = note: see for more information about checking conditional configuration 111s = note: this warning originates in the macro `fmt` (in Nightly builds, run with -Z macro-backtrace for more info) 111s 111s warning: unexpected `cfg` condition name: `tarpaulin_include` 111s --> /usr/share/cargo/registry/wyz-0.5.1/src/fmt.rs:253:13 111s | 111s 253 | #[cfg(not(tarpaulin_include))] 111s | ^^^^^^^^^^^^^^^^^ 111s ... 111s 263 | / fmt!( 111s 264 | | FmtBinary => Binary, 111s 265 | | FmtDisplay => Display, 111s 266 | | FmtLowerExp => LowerExp, 111s ... | 111s 271 | | FmtUpperHex => UpperHex, 111s 272 | | ); 111s | |_- in this macro invocation 111s | 111s = help: consider using a Cargo feature instead 111s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 111s [lints.rust] 111s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 111s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 111s = note: see for more information about checking conditional configuration 111s = note: this warning originates in the macro `fmt` (in Nightly builds, run with -Z macro-backtrace for more info) 111s 111s 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/bitvec_helpers-3.1.5=/usr/share/cargo/registry/bitvec-helpers-3.1.5--remap-path-prefix/tmp/tmp.wE2DEtsSos/registry=/usr/share/cargo/registry-Ctarget-feature=+backchain' CARGO_FEATURE_DEFAULT=1 CARGO_FEATURE_STD=1 CARGO_MANIFEST_DIR=/tmp/tmp.wE2DEtsSos/registry/anyhow-1.0.86 CARGO_MANIFEST_PATH=/tmp/tmp.wE2DEtsSos/registry/anyhow-1.0.86/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='Flexible concrete Error type built on std::error::Error' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=anyhow CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/anyhow' CARGO_PKG_RUST_VERSION=1.39 CARGO_PKG_VERSION=1.0.86 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=86 CARGO_PKG_VERSION_PRE='' DEBUG=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.wE2DEtsSos/target/debug/deps:/tmp/tmp.wE2DEtsSos/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.wE2DEtsSos/target/s390x-unknown-linux-gnu/debug/build/anyhow-0076587e9dd9f3d8/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.wE2DEtsSos/target/debug/build/anyhow-ce1e359b06d9faf4/build-script-build` 111s [anyhow 1.0.86] cargo:rerun-if-changed=build/probe.rs 112s [anyhow 1.0.86] cargo:rerun-if-env-changed=RUSTC_BOOTSTRAP 112s [anyhow 1.0.86] cargo:rustc-check-cfg=cfg(anyhow_nightly_testing) 112s [anyhow 1.0.86] cargo:rustc-check-cfg=cfg(anyhow_no_fmt_arguments_as_str) 112s [anyhow 1.0.86] cargo:rustc-check-cfg=cfg(anyhow_no_ptr_addr_of) 112s [anyhow 1.0.86] cargo:rustc-check-cfg=cfg(anyhow_no_unsafe_op_in_unsafe_fn_lint) 112s [anyhow 1.0.86] cargo:rustc-check-cfg=cfg(doc_cfg) 112s [anyhow 1.0.86] cargo:rustc-check-cfg=cfg(error_generic_member_access) 112s [anyhow 1.0.86] cargo:rustc-check-cfg=cfg(std_backtrace) 112s [anyhow 1.0.86] cargo:rustc-cfg=std_backtrace 112s Compiling funty v2.0.0 112s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=funty CARGO_MANIFEST_DIR=/tmp/tmp.wE2DEtsSos/registry/funty-2.0.0 CARGO_MANIFEST_PATH=/tmp/tmp.wE2DEtsSos/registry/funty-2.0.0/Cargo.toml CARGO_PKG_AUTHORS='myrrlyn ' CARGO_PKG_DESCRIPTION='Trait generalization over the primitive types' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=funty CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/myrrlyn/funty' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=2.0.0 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.wE2DEtsSos/target/debug/deps rustc --crate-name funty --edition=2018 /tmp/tmp.wE2DEtsSos/registry/funty-2.0.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "std"))' -C metadata=b943fa651dbd1f9d -C extra-filename=-b943fa651dbd1f9d --out-dir /tmp/tmp.wE2DEtsSos/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.wE2DEtsSos/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.wE2DEtsSos/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/bitvec_helpers-3.1.5=/usr/share/cargo/registry/bitvec-helpers-3.1.5 --remap-path-prefix /tmp/tmp.wE2DEtsSos/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 112s warning: `wyz` (lib) generated 23 warnings (1 duplicate) 112s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=anyhow CARGO_MANIFEST_DIR=/tmp/tmp.wE2DEtsSos/registry/anyhow-1.0.86 CARGO_MANIFEST_PATH=/tmp/tmp.wE2DEtsSos/registry/anyhow-1.0.86/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='Flexible concrete Error type built on std::error::Error' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=anyhow CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/anyhow' CARGO_PKG_RUST_VERSION=1.39 CARGO_PKG_VERSION=1.0.86 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=86 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.wE2DEtsSos/target/debug/deps OUT_DIR=/tmp/tmp.wE2DEtsSos/target/s390x-unknown-linux-gnu/debug/build/anyhow-0076587e9dd9f3d8/out rustc --crate-name anyhow --edition=2018 /tmp/tmp.wE2DEtsSos/registry/anyhow-1.0.86/src/lib.rs --error-format=json --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("backtrace", "default", "std"))' -C metadata=30f85af40dc383bf -C extra-filename=-30f85af40dc383bf --out-dir /tmp/tmp.wE2DEtsSos/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.wE2DEtsSos/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.wE2DEtsSos/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/bitvec_helpers-3.1.5=/usr/share/cargo/registry/bitvec-helpers-3.1.5 --remap-path-prefix /tmp/tmp.wE2DEtsSos/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain --cfg std_backtrace --check-cfg 'cfg(anyhow_nightly_testing)' --check-cfg 'cfg(anyhow_no_fmt_arguments_as_str)' --check-cfg 'cfg(anyhow_no_ptr_addr_of)' --check-cfg 'cfg(anyhow_no_unsafe_op_in_unsafe_fn_lint)' --check-cfg 'cfg(doc_cfg)' --check-cfg 'cfg(error_generic_member_access)' --check-cfg 'cfg(std_backtrace)'` 112s warning: `anyhow` (lib) generated 1 warning (1 duplicate) 112s Compiling bitvec v1.0.1 112s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=bitvec CARGO_MANIFEST_DIR=/tmp/tmp.wE2DEtsSos/registry/bitvec-1.0.1 CARGO_MANIFEST_PATH=/tmp/tmp.wE2DEtsSos/registry/bitvec-1.0.1/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='Addresses memory by bits, for packed collections and bitfields' CARGO_PKG_HOMEPAGE='https://bitvecto-rs.github.io/bitvec' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=bitvec CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/bitvecto-rs/bitvec' CARGO_PKG_RUST_VERSION=1.56 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.wE2DEtsSos/target/debug/deps rustc --crate-name bitvec --edition=2021 /tmp/tmp.wE2DEtsSos/registry/bitvec-1.0.1/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="alloc"' --cfg 'feature="atomic"' --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "atomic", "default", "serde", "std", "testing"))' -C metadata=255dfc50e4dc827a -C extra-filename=-255dfc50e4dc827a --out-dir /tmp/tmp.wE2DEtsSos/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.wE2DEtsSos/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.wE2DEtsSos/target/debug/deps --extern funty=/tmp/tmp.wE2DEtsSos/target/s390x-unknown-linux-gnu/debug/deps/libfunty-b943fa651dbd1f9d.rmeta --extern radium=/tmp/tmp.wE2DEtsSos/target/s390x-unknown-linux-gnu/debug/deps/libradium-688a1d384b60c00e.rmeta --extern tap=/tmp/tmp.wE2DEtsSos/target/s390x-unknown-linux-gnu/debug/deps/libtap-dc3123cf9c4aaec0.rmeta --extern wyz=/tmp/tmp.wE2DEtsSos/target/s390x-unknown-linux-gnu/debug/deps/libwyz-6a1737499423488b.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/bitvec_helpers-3.1.5=/usr/share/cargo/registry/bitvec-helpers-3.1.5 --remap-path-prefix /tmp/tmp.wE2DEtsSos/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/macros/internal.rs:364:11 112s | 112s 364 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = 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` 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s = note: `#[warn(unexpected_cfgs)]` on by default 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/macros/internal.rs:388:11 112s | 112s 388 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/array/api.rs:29:12 112s | 112s 29 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/array/api.rs:50:12 112s | 112s 50 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/array/iter.rs:41:11 112s | 112s 41 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/array/iter.rs:57:11 112s | 112s 57 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/array/iter.rs:163:11 112s | 112s 163 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/array/iter.rs:121:12 112s | 112s 121 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/array/iter.rs:143:12 112s | 112s 143 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/array/ops.rs:25:11 112s | 112s 25 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/array/ops.rs:37:11 112s | 112s 37 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/array/ops.rs:76:11 112s | 112s 76 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/array/ops.rs:88:11 112s | 112s 88 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/array/ops.rs:127:11 112s | 112s 127 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/array/ops.rs:139:11 112s | 112s 139 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/array/traits.rs:35:11 112s | 112s 35 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/array/traits.rs:47:11 112s | 112s 47 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/array/traits.rs:83:11 112s | 112s 83 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/array/traits.rs:95:11 112s | 112s 95 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/array/traits.rs:109:11 112s | 112s 109 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/array/traits.rs:123:11 112s | 112s 123 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/array/traits.rs:136:11 112s | 112s 136 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/array/traits.rs:150:11 112s | 112s 150 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/array/traits.rs:162:11 112s | 112s 162 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/array/traits.rs:174:11 112s | 112s 174 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/array/traits.rs:270:11 112s | 112s 270 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/array/traits.rs:327:11 112s | 112s 327 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/devel.rs:19:14 112s | 112s 19 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s ::: /usr/share/cargo/registry/bitvec-1.0.1/src/array/traits.rs:261:1 112s | 112s 261 | / easy_fmt! { 112s 262 | | impl Binary 112s 263 | | impl Display 112s 264 | | impl LowerHex 112s ... | 112s 267 | | for BitArray 112s 268 | | } 112s | |_- in this macro invocation 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s = note: this warning originates in the macro `easy_fmt` (in Nightly builds, run with -Z macro-backtrace for more info) 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/boxed/api.rs:134:12 112s | 112s 134 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/boxed/iter.rs:122:11 112s | 112s 122 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/boxed/iter.rs:134:11 112s | 112s 134 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/boxed/iter.rs:150:11 112s | 112s 150 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/boxed/iter.rs:88:12 112s | 112s 88 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/boxed/iter.rs:113:12 112s | 112s 113 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/boxed/ops.rs:27:11 112s | 112s 27 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/boxed/ops.rs:39:11 112s | 112s 39 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/boxed/ops.rs:78:11 112s | 112s 78 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/boxed/ops.rs:90:11 112s | 112s 90 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/boxed/ops.rs:129:11 112s | 112s 129 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/boxed/ops.rs:141:11 112s | 112s 141 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/boxed/ops.rs:215:11 112s | 112s 215 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/boxed/ops.rs:230:11 112s | 112s 230 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/boxed/traits.rs:39:11 112s | 112s 39 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/boxed/traits.rs:51:11 112s | 112s 51 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/boxed/traits.rs:63:11 112s | 112s 63 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/boxed/traits.rs:75:11 112s | 112s 75 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/boxed/traits.rs:83:11 112s | 112s 83 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/boxed/traits.rs:95:11 112s | 112s 95 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/boxed/traits.rs:109:11 112s | 112s 109 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/boxed/traits.rs:123:11 112s | 112s 123 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/boxed/traits.rs:137:11 112s | 112s 137 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/boxed/traits.rs:150:11 112s | 112s 150 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/boxed/traits.rs:164:11 112s | 112s 164 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/boxed/traits.rs:177:11 112s | 112s 177 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/boxed/traits.rs:191:11 112s | 112s 191 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/boxed/traits.rs:205:11 112s | 112s 205 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/boxed/traits.rs:217:11 112s | 112s 217 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/boxed/traits.rs:345:11 112s | 112s 345 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/boxed/traits.rs:359:11 112s | 112s 359 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/devel.rs:32:14 112s | 112s 32 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s ::: /usr/share/cargo/registry/bitvec-1.0.1/src/boxed/traits.rs:335:1 112s | 112s 335 | / easy_fmt! { 112s 336 | | impl Binary 112s 337 | | impl Display 112s 338 | | impl LowerHex 112s ... | 112s 342 | | for BitBox 112s 343 | | } 112s | |_- in this macro invocation 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s = note: this warning originates in the macro `easy_fmt` (in Nightly builds, run with -Z macro-backtrace for more info) 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/domain.rs:206:11 112s | 112s 206 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/domain.rs:561:11 112s | 112s 561 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/domain.rs:892:11 112s | 112s 892 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/domain.rs:929:11 112s | 112s 929 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/domain.rs:765:12 112s | 112s 765 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/domain.rs:772:12 112s | 112s 772 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/domain.rs:780:12 112s | 112s 780 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/domain.rs:787:12 112s | 112s 787 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/domain.rs:840:12 112s | 112s 840 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/domain.rs:851:12 112s | 112s 851 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/domain.rs:862:12 112s | 112s 862 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/field.rs:444:11 112s | 112s 444 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/field.rs:477:11 112s | 112s 477 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/field/io.rs:64:12 112s | 112s 64 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/field/io.rs:102:12 112s | 112s 102 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/field.rs:44:12 112s | 112s 44 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/field.rs:70:12 112s | 112s 70 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/index.rs:388:11 112s | 112s 388 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/index.rs:109:12 112s | 112s 109 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/index.rs:160:12 112s | 112s 160 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/index.rs:173:12 112s | 112s 173 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/index.rs:185:12 112s | 112s 185 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/index.rs:373:12 112s | 112s 373 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/index.rs:484:12 112s | 112s 484 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/index.rs:676:12 112s | 112s 676 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/index.rs:695:12 112s | 112s 695 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/index.rs:797:12 112s | 112s 797 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/index.rs:804:12 112s | 112s 804 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/index.rs:894:12 112s | 112s 894 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/mem.rs:61:11 112s | 112s 61 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/mem.rs:68:11 112s | 112s 68 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/order.rs:237:11 112s | 112s 237 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr.rs:118:11 112s | 112s 118 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr.rs:130:11 112s | 112s 130 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr.rs:141:11 112s | 112s 141 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr.rs:152:11 112s | 112s 152 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr.rs:164:11 112s | 112s 164 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr.rs:176:11 112s | 112s 176 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr.rs:187:11 112s | 112s 187 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr.rs:198:11 112s | 112s 198 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr.rs:212:11 112s | 112s 212 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr.rs:260:11 112s | 112s 260 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr.rs:271:11 112s | 112s 271 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr.rs:287:11 112s | 112s 287 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr.rs:299:11 112s | 112s 299 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr.rs:312:11 112s | 112s 312 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr.rs:326:11 112s | 112s 326 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr/addr.rs:67:11 112s | 112s 67 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr/addr.rs:85:11 112s | 112s 85 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr/addr.rs:103:11 112s | 112s 103 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr/addr.rs:113:11 112s | 112s 113 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr/addr.rs:139:11 112s | 112s 139 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr/addr.rs:150:11 112s | 112s 150 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr/proxy.rs:172:11 112s | 112s 172 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr/proxy.rs:192:11 112s | 112s 192 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr/proxy.rs:205:11 112s | 112s 205 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr/proxy.rs:222:11 112s | 112s 222 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr/proxy.rs:235:11 112s | 112s 235 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr/proxy.rs:248:11 112s | 112s 248 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr/proxy.rs:261:11 112s | 112s 261 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr/proxy.rs:274:11 112s | 112s 274 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr/proxy.rs:294:11 112s | 112s 294 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr/proxy.rs:307:11 112s | 112s 307 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr/proxy.rs:320:11 112s | 112s 320 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr/proxy.rs:333:11 112s | 112s 333 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr/proxy.rs:358:11 112s | 112s 358 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr/proxy.rs:371:11 112s | 112s 371 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr/proxy.rs:384:11 112s | 112s 384 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr/proxy.rs:99:12 112s | 112s 99 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr/proxy.rs:110:12 112s | 112s 110 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr/range.rs:203:11 112s | 112s 203 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr/range.rs:242:11 112s | 112s 242 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr/range.rs:255:11 112s | 112s 255 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr/range.rs:268:11 112s | 112s 268 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr/range.rs:281:11 112s | 112s 281 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr/range.rs:297:11 112s | 112s 297 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr/range.rs:387:11 112s | 112s 387 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr/single.rs:1208:11 112s | 112s 1208 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr/single.rs:1289:11 112s | 112s 1289 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr/single.rs:1301:11 112s | 112s 1301 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr/single.rs:1377:11 112s | 112s 1377 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr/single.rs:1412:11 112s | 112s 1412 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr/single.rs:1422:11 112s | 112s 1422 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr/single.rs:1432:11 112s | 112s 1432 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr/single.rs:344:12 112s | 112s 344 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr/single.rs:391:12 112s | 112s 391 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr/single.rs:452:12 112s | 112s 452 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr/single.rs:834:12 112s | 112s 834 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr/single.rs:854:12 112s | 112s 854 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr/single.rs:1014:12 112s | 112s 1014 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr/single.rs:1046:12 112s | 112s 1046 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr/span.rs:681:11 112s | 112s 681 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr/span.rs:735:11 112s | 112s 735 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr/span.rs:800:11 112s | 112s 800 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr/span.rs:813:11 112s | 112s 813 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr/span.rs:823:11 112s | 112s 823 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr/span.rs:843:11 112s | 112s 843 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/slice/api.rs:2740:11 112s | 112s 2740 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/slice/api.rs:528:12 112s | 112s 528 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/slice/api.rs:536:12 112s | 112s 536 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/slice/api.rs:556:12 112s | 112s 556 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/slice/api.rs:574:12 112s | 112s 574 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/slice/api.rs:2180:12 112s | 112s 2180 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/slice/api.rs:2192:12 112s | 112s 2192 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/slice/iter.rs:41:11 112s | 112s 41 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/slice/iter.rs:57:11 112s | 112s 57 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/slice/iter.rs:230:11 112s | 112s 230 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/slice/iter.rs:246:11 112s | 112s 246 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/slice/iter.rs:259:11 112s | 112s 259 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/slice/iter.rs:380:11 112s | 112s 380 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/slice/iter.rs:393:11 112s | 112s 393 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/slice/iter.rs:131:12 112s | 112s 131 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/slice/iter.rs:221:12 112s | 112s 221 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/slice/iter.rs:325:12 112s | 112s 325 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/slice/iter.rs:331:12 112s | 112s 331 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/slice/iter.rs:365:12 112s | 112s 365 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/slice/iter.rs:371:12 112s | 112s 371 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/slice/iter.rs:884:12 112s | 112s 884 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/slice/iter.rs:989:12 112s | 112s 989 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/slice/iter.rs:1295:12 112s | 112s 1295 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/slice/iter.rs:1400:12 112s | 112s 1400 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/slice/traits.rs:531:11 112s | 112s 531 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/slice/traits.rs:570:11 112s | 112s 570 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/slice.rs:974:12 112s | 112s 974 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/slice.rs:998:12 112s | 112s 998 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/slice.rs:1011:12 112s | 112s 1011 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/slice.rs:1024:12 112s | 112s 1024 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/slice.rs:1037:12 112s | 112s 1037 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/api.rs:314:12 112s | 112s 314 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/api.rs:368:12 112s | 112s 368 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/api.rs:376:12 112s | 112s 376 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/api.rs:384:12 112s | 112s 384 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/api.rs:392:12 112s | 112s 392 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/api.rs:773:12 112s | 112s 773 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/api.rs:788:12 112s | 112s 788 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/api.rs:894:12 112s | 112s 894 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/api.rs:931:12 112s | 112s 931 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/iter.rs:81:11 112s | 112s 81 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/iter.rs:94:11 112s | 112s 94 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/iter.rs:128:11 112s | 112s 128 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/iter.rs:145:11 112s | 112s 145 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/iter.rs:159:11 112s | 112s 159 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/iter.rs:172:11 112s | 112s 172 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/iter.rs:190:11 112s | 112s 190 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/iter.rs:203:11 112s | 112s 203 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/iter.rs:234:11 112s | 112s 234 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/iter.rs:250:11 112s | 112s 250 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/iter.rs:410:11 112s | 112s 410 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/iter.rs:422:11 112s | 112s 422 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/iter.rs:435:11 112s | 112s 435 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/iter.rs:457:11 112s | 112s 457 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/iter.rs:475:11 112s | 112s 475 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/iter.rs:601:11 112s | 112s 601 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/iter.rs:619:11 112s | 112s 619 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/iter.rs:323:12 112s | 112s 323 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/iter.rs:329:12 112s | 112s 329 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/ops.rs:30:11 112s | 112s 30 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/ops.rs:42:11 112s | 112s 42 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/ops.rs:54:11 112s | 112s 54 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/ops.rs:70:11 112s | 112s 70 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/ops.rs:83:11 112s | 112s 83 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/ops.rs:95:11 112s | 112s 95 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/ops.rs:107:11 112s | 112s 107 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/ops.rs:123:11 112s | 112s 123 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/ops.rs:136:11 112s | 112s 136 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/ops.rs:148:11 112s | 112s 148 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/ops.rs:160:11 112s | 112s 160 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/ops.rs:176:11 112s | 112s 176 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/ops.rs:226:11 112s | 112s 226 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/ops.rs:241:11 112s | 112s 241 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/traits.rs:40:11 112s | 112s 40 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/traits.rs:52:11 112s | 112s 52 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/traits.rs:64:11 112s | 112s 64 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/traits.rs:83:11 112s | 112s 83 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/traits.rs:95:11 112s | 112s 95 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/traits.rs:109:11 112s | 112s 109 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/traits.rs:123:11 112s | 112s 123 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/traits.rs:137:11 112s | 112s 137 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/traits.rs:150:11 112s | 112s 150 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/traits.rs:164:11 112s | 112s 164 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/traits.rs:178:11 112s | 112s 178 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/traits.rs:192:11 112s | 112s 192 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/traits.rs:205:11 112s | 112s 205 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/traits.rs:217:11 112s | 112s 217 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/traits.rs:229:11 112s | 112s 229 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/traits.rs:241:11 112s | 112s 241 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/traits.rs:253:11 112s | 112s 253 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/traits.rs:265:11 112s | 112s 265 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/traits.rs:277:11 112s | 112s 277 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/traits.rs:289:11 112s | 112s 289 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/traits.rs:301:11 112s | 112s 301 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/traits.rs:313:11 112s | 112s 313 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/traits.rs:325:11 112s | 112s 325 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/traits.rs:339:11 112s | 112s 339 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/traits.rs:377:11 112s | 112s 377 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/devel.rs:32:14 112s | 112s 32 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s ::: /usr/share/cargo/registry/bitvec-1.0.1/src/vec/traits.rs:367:1 112s | 112s 367 | / easy_fmt! { 112s 368 | | impl Binary 112s 369 | | impl Display 112s 370 | | impl LowerHex 112s ... | 112s 374 | | for BitVec 112s 375 | | } 112s | |_- in this macro invocation 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s = note: this warning originates in the macro `easy_fmt` (in Nightly builds, run with -Z macro-backtrace for more info) 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/view.rs:43:11 112s | 112s 43 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/view.rs:73:11 112s | 112s 73 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/view.rs:107:11 112s | 112s 107 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/view.rs:225:11 112s | 112s 225 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: unexpected `cfg` condition name: `tarpaulin_include` 112s --> /usr/share/cargo/registry/bitvec-1.0.1/src/view.rs:244:11 112s | 112s 244 | #[cfg(not(tarpaulin_include))] 112s | ^^^^^^^^^^^^^^^^^ 112s | 112s = help: consider using a Cargo feature instead 112s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 112s [lints.rust] 112s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 112s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 112s = note: see for more information about checking conditional configuration 112s 112s warning: `funty` (lib) generated 1 warning (1 duplicate) 114s warning: `bitvec` (lib) generated 262 warnings (1 duplicate) 114s Compiling bitvec_helpers v3.1.5 (/usr/share/cargo/registry/bitvec_helpers-3.1.5) 114s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=bitvec_helpers CARGO_MANIFEST_DIR=/usr/share/cargo/registry/bitvec_helpers-3.1.5 CARGO_MANIFEST_PATH=/usr/share/cargo/registry/bitvec_helpers-3.1.5/Cargo.toml CARGO_PKG_AUTHORS=quietvoid CARGO_PKG_DESCRIPTION='BitVec based bitstream reader and writer' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=bitvec_helpers CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/quietvoid/bitvec_helpers' CARGO_PKG_RUST_VERSION=1.79.0 CARGO_PKG_VERSION=3.1.5 CARGO_PKG_VERSION_MAJOR=3 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=5 CARGO_PKG_VERSION_PRE='' CARGO_PRIMARY_PACKAGE=1 LD_LIBRARY_PATH=/tmp/tmp.wE2DEtsSos/target/debug/deps rustc --crate-name bitvec_helpers --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="bitvec"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("bitstream-io", "bitvec", "default"))' -C metadata=e5939a3d97cb94bd -C extra-filename=-e5939a3d97cb94bd --out-dir /tmp/tmp.wE2DEtsSos/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -C incremental=/tmp/tmp.wE2DEtsSos/target/s390x-unknown-linux-gnu/debug/incremental -L dependency=/tmp/tmp.wE2DEtsSos/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.wE2DEtsSos/target/debug/deps --extern anyhow=/tmp/tmp.wE2DEtsSos/target/s390x-unknown-linux-gnu/debug/deps/libanyhow-30f85af40dc383bf.rlib --extern bitvec=/tmp/tmp.wE2DEtsSos/target/s390x-unknown-linux-gnu/debug/deps/libbitvec-255dfc50e4dc827a.rlib --extern funty=/tmp/tmp.wE2DEtsSos/target/s390x-unknown-linux-gnu/debug/deps/libfunty-b943fa651dbd1f9d.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/bitvec_helpers-3.1.5=/usr/share/cargo/registry/bitvec-helpers-3.1.5 --remap-path-prefix /tmp/tmp.wE2DEtsSos/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 115s warning: `bitvec_helpers` (lib test) generated 1 warning (1 duplicate) 115s Finished `test` profile [unoptimized + debuginfo] target(s) in 3.51s 115s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_MANIFEST_DIR=/usr/share/cargo/registry/bitvec_helpers-3.1.5 CARGO_MANIFEST_PATH=/usr/share/cargo/registry/bitvec_helpers-3.1.5/Cargo.toml CARGO_PKG_AUTHORS=quietvoid CARGO_PKG_DESCRIPTION='BitVec based bitstream reader and writer' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=bitvec_helpers CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/quietvoid/bitvec_helpers' CARGO_PKG_RUST_VERSION=1.79.0 CARGO_PKG_VERSION=3.1.5 CARGO_PKG_VERSION_MAJOR=3 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=5 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/tmp/tmp.wE2DEtsSos/target/s390x-unknown-linux-gnu/debug/deps:/tmp/tmp.wE2DEtsSos/target/s390x-unknown-linux-gnu/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' /tmp/tmp.wE2DEtsSos/target/s390x-unknown-linux-gnu/debug/deps/bitvec_helpers-e5939a3d97cb94bd` 115s 115s running 4 tests 115s test bitvec_impl::bitslice_reader::skip_n_validations ... ok 115s test bitvec_impl::bitslice_reader::get_n_validations ... ok 115s test bitvec_impl::bitvec_reader::get_n_validations ... ok 115s test bitvec_impl::bitvec_reader::skip_n_validations ... ok 115s 115s test result: ok. 4 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.00s 115s 115s /tmp/autopkgtest.ijk0Vb/wrapper.sh: checking for leaked background processes... 115s /tmp/autopkgtest.ijk0Vb/wrapper.sh: waiting for tee/cat subprocesses... 115s /tmp/autopkgtest.ijk0Vb/wrapper.sh: cleaning up... 115s /tmp/autopkgtest.ijk0Vb/wrapper.sh: Exit status: 0 115s autopkgtest: DBG: testbed command exited with code 0 115s autopkgtest [21:12:19]: test librust-bitvec-helpers-dev:bitvec: -----------------------] 115s autopkgtest: DBG: testbed executing test finished with exit status 0 115s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.ijk0Vb/librust-bitvec-helpers-dev%3Abitvec-stdout /tmp/autopkgtest-work.59hd9nc_/out/librust-bitvec-helpers-dev%3Abitvec-stdout 115s autopkgtest: DBG: got reply from testbed: ok 115s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.ijk0Vb/librust-bitvec-helpers-dev%3Abitvec-stderr /tmp/autopkgtest-work.59hd9nc_/out/librust-bitvec-helpers-dev%3Abitvec-stderr 115s autopkgtest: DBG: got reply from testbed: ok 116s librust-bitvec-helpers-dev:bitvec PASS 116s autopkgtest [21:12:20]: test librust-bitvec-helpers-dev:bitvec: - - - - - - - - - - results - - - - - - - - - - 116s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.ijk0Vb/librust-bitvec-helpers-dev%3Abitvec-artifacts/ /tmp/autopkgtest-work.59hd9nc_/out/artifacts/ 116s autopkgtest: DBG: got reply from testbed: ok 116s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.ijk0Vb/librust-bitvec-helpers-dev:bitvec-artifacts', '/tmp/autopkgtest.ijk0Vb/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 116s autopkgtest: DBG: testbed command exited with code 0 116s autopkgtest [21:12:20]: test librust-bitvec-helpers-dev:default: preparing testbed 116s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['dh-cargo (>= 18)', 'librust-bitvec-helpers-dev'], deps_new=['dh-cargo (>= 18)', 'librust-bitvec-helpers-dev'] 116s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 116s autopkgtest: DBG: install_deps: deps_new=['dh-cargo (>= 18)', 'librust-bitvec-helpers-dev'] 116s autopkgtest: DBG: install-deps: satisfying dh-cargo (>= 18), librust-bitvec-helpers-dev 116s autopkgtest: DBG: can use apt-get on testbed: True 116s 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-bitvec-helpers-dev'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 116s Reading package lists... 116s Building dependency tree... 116s Reading state information... 116s Starting pkgProblemResolver with broken count: 0 116s Starting 2 pkgProblemResolver with broken count: 0 116s Done 117s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 117s autopkgtest: DBG: testbed command exited with code 0 117s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'librust-bitvec-helpers-dev'], kind short, sout pipe, serr pipe, env [] 117s autopkgtest: DBG: testbed command exited with code 0 117s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.ijk0Vb/librust-bitvec-helpers-dev:default-packages.all"], kind short, sout raw, serr pipe, env [] 117s autopkgtest: DBG: testbed command exited with code 0 117s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.ijk0Vb/librust-bitvec-helpers-dev%3Adefault-packages.all /tmp/autopkgtest-work.59hd9nc_/out/librust-bitvec-helpers-dev%3Adefault-packages.all 117s autopkgtest: DBG: got reply from testbed: ok 117s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.ijk0Vb/build.4F8/src'], kind short, sout raw, serr raw, env [] 117s autopkgtest: DBG: testbed command exited with code 0 117s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.ijk0Vb/build.4F8/src already exists 117s autopkgtest [21:12:21]: test librust-bitvec-helpers-dev:default: /usr/share/cargo/bin/cargo-auto-test bitvec_helpers 3.1.5 --all-targets 117s autopkgtest [21:12:21]: test librust-bitvec-helpers-dev:default: [----------------------- 117s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.ijk0Vb/wrapper.sh --debug --artifacts=/tmp/autopkgtest.ijk0Vb/librust-bitvec-helpers-dev:default-artifacts --chdir=/tmp/autopkgtest.ijk0Vb/build.4F8/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.ijk0Vb/librust-bitvec-helpers-dev:default-stderr --stdout=/tmp/autopkgtest.ijk0Vb/librust-bitvec-helpers-dev:default-stdout --tmp=/tmp/autopkgtest.ijk0Vb/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 bitvec_helpers 3.1.5 --all-targets'"], kind test, sout raw, serr raw, env [] 117s /tmp/autopkgtest.ijk0Vb/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.ijk0Vb/librust-bitvec-helpers-dev:default-artifacts 117s /tmp/autopkgtest.ijk0Vb/wrapper.sh: changing to directory: /tmp/autopkgtest.ijk0Vb/build.4F8/src 117s /tmp/autopkgtest.ijk0Vb/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 117s /tmp/autopkgtest.ijk0Vb/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 117s /tmp/autopkgtest.ijk0Vb/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 117s /tmp/autopkgtest.ijk0Vb/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 117s /tmp/autopkgtest.ijk0Vb/wrapper.sh: setting environment: LANG=C.UTF-8 117s /tmp/autopkgtest.ijk0Vb/wrapper.sh: unsetting environment: LANGUAGE 117s /tmp/autopkgtest.ijk0Vb/wrapper.sh: unsetting environment: LC_ADDRESS 117s /tmp/autopkgtest.ijk0Vb/wrapper.sh: unsetting environment: LC_ALL 117s /tmp/autopkgtest.ijk0Vb/wrapper.sh: unsetting environment: LC_COLLATE 117s /tmp/autopkgtest.ijk0Vb/wrapper.sh: unsetting environment: LC_CTYPE 117s /tmp/autopkgtest.ijk0Vb/wrapper.sh: unsetting environment: LC_IDENTIFICATION 117s /tmp/autopkgtest.ijk0Vb/wrapper.sh: unsetting environment: LC_MEASUREMENT 117s /tmp/autopkgtest.ijk0Vb/wrapper.sh: unsetting environment: LC_MESSAGES 117s /tmp/autopkgtest.ijk0Vb/wrapper.sh: unsetting environment: LC_MONETARY 117s /tmp/autopkgtest.ijk0Vb/wrapper.sh: unsetting environment: LC_NAME 117s /tmp/autopkgtest.ijk0Vb/wrapper.sh: unsetting environment: LC_NUMERIC 117s /tmp/autopkgtest.ijk0Vb/wrapper.sh: unsetting environment: LC_PAPER 117s /tmp/autopkgtest.ijk0Vb/wrapper.sh: unsetting environment: LC_TELEPHONE 117s /tmp/autopkgtest.ijk0Vb/wrapper.sh: unsetting environment: LC_TIME 117s /tmp/autopkgtest.ijk0Vb/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 117s /tmp/autopkgtest.ijk0Vb/wrapper.sh: pretending to be a login shell 117s /tmp/autopkgtest.ijk0Vb/wrapper.sh: will write standard error to /tmp/autopkgtest.ijk0Vb/librust-bitvec-helpers-dev:default-stderr 117s /tmp/autopkgtest.ijk0Vb/wrapper.sh: will write stdout to /tmp/autopkgtest.ijk0Vb/librust-bitvec-helpers-dev:default-stdout 117s /tmp/autopkgtest.ijk0Vb/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.ijk0Vb/autopkgtest_tmp 117s /tmp/autopkgtest.ijk0Vb/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 117s /tmp/autopkgtest.ijk0Vb/wrapper.sh: command to run: bash -ec /usr/share/cargo/bin/cargo-auto-test bitvec_helpers 3.1.5 --all-targets 117s /tmp/autopkgtest.ijk0Vb/wrapper.sh: copying /tmp/tmp.i3mwoA9W3n/out to stdout and file: /tmp/autopkgtest.ijk0Vb/librust-bitvec-helpers-dev:default-stdout 117s /tmp/autopkgtest.ijk0Vb/wrapper.sh: copying /tmp/tmp.i3mwoA9W3n/err to standard error and file: /tmp/autopkgtest.ijk0Vb/librust-bitvec-helpers-dev:default-stdout 117s /tmp/autopkgtest.ijk0Vb/wrapper.sh: writing script pid 3693 to /tmp/autopkgtest_script_pid 117s debian cargo wrapper: options, profiles, parallel, lto: ['parallel=2'] [] ['-j2'] 0 117s debian cargo wrapper: rust_type, gnu_type: s390x-unknown-linux-gnu, s390x-linux-gnu 117s debian cargo wrapper: unsetting RUSTFLAGS and assuming it will be (or already was) added to $CARGO_HOME/config.toml 117s debian cargo wrapper: linking /usr/share/cargo/registry/* into /tmp/tmp.KZUspVEBBE/registry/ 117s debian cargo wrapper: options, profiles, parallel, lto: ['parallel=2'] [] ['-j2'] 0 117s debian cargo wrapper: rust_type, gnu_type: s390x-unknown-linux-gnu, s390x-linux-gnu 117s debian cargo wrapper: unsetting RUSTFLAGS and assuming it will be (or already was) added to $CARGO_HOME/config.toml 117s 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'],) {} 118s Compiling tap v1.0.1 118s Compiling cfg-if v1.0.0 118s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=tap CARGO_MANIFEST_DIR=/tmp/tmp.KZUspVEBBE/registry/tap-1.0.1 CARGO_MANIFEST_PATH=/tmp/tmp.KZUspVEBBE/registry/tap-1.0.1/Cargo.toml CARGO_PKG_AUTHORS='Elliott Linder :myrrlyn ' CARGO_PKG_DESCRIPTION='Generic extensions for tapping values in Rust' CARGO_PKG_HOMEPAGE='https://github.com/myrrlyn/tap' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=tap CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/myrrlyn/tap' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=1.0.1 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.KZUspVEBBE/target/debug/deps rustc --crate-name tap --edition=2015 /tmp/tmp.KZUspVEBBE/registry/tap-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=dc3123cf9c4aaec0 -C extra-filename=-dc3123cf9c4aaec0 --out-dir /tmp/tmp.KZUspVEBBE/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.KZUspVEBBE/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.KZUspVEBBE/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/bitvec_helpers-3.1.5=/usr/share/cargo/registry/bitvec-helpers-3.1.5 --remap-path-prefix /tmp/tmp.KZUspVEBBE/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 118s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=cfg_if CARGO_MANIFEST_DIR=/tmp/tmp.KZUspVEBBE/registry/cfg-if-1.0.0 CARGO_MANIFEST_PATH=/tmp/tmp.KZUspVEBBE/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] 118s parameters. Structured like an if-else chain, the first matching branch is the 118s item that gets emitted. 118s ' 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.KZUspVEBBE/target/debug/deps rustc --crate-name cfg_if --edition=2018 /tmp/tmp.KZUspVEBBE/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.KZUspVEBBE/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.KZUspVEBBE/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.KZUspVEBBE/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/bitvec_helpers-3.1.5=/usr/share/cargo/registry/bitvec-helpers-3.1.5 --remap-path-prefix /tmp/tmp.KZUspVEBBE/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 118s warning: unstable feature specified for `-Ctarget-feature`: `backchain` 118s | 118s = note: this feature is not stably supported; its behavior can change in the future 118s 118s warning: `cfg-if` (lib) generated 1 warning 118s Compiling anyhow v1.0.86 118s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.KZUspVEBBE/registry/anyhow-1.0.86 CARGO_MANIFEST_PATH=/tmp/tmp.KZUspVEBBE/registry/anyhow-1.0.86/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='Flexible concrete Error type built on std::error::Error' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=anyhow CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/anyhow' CARGO_PKG_RUST_VERSION=1.39 CARGO_PKG_VERSION=1.0.86 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=86 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.KZUspVEBBE/target/debug/deps rustc --crate-name build_script_build --edition=2018 /tmp/tmp.KZUspVEBBE/registry/anyhow-1.0.86/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("backtrace", "default", "std"))' -C metadata=ce1e359b06d9faf4 -C extra-filename=-ce1e359b06d9faf4 --out-dir /tmp/tmp.KZUspVEBBE/target/debug/build/anyhow-ce1e359b06d9faf4 -L dependency=/tmp/tmp.KZUspVEBBE/target/debug/deps --cap-lints warn` 118s warning: `tap` (lib) generated 1 warning (1 duplicate) 118s Compiling wyz v0.5.1 118s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=wyz CARGO_MANIFEST_DIR=/tmp/tmp.KZUspVEBBE/registry/wyz-0.5.1 CARGO_MANIFEST_PATH=/tmp/tmp.KZUspVEBBE/registry/wyz-0.5.1/Cargo.toml CARGO_PKG_AUTHORS='myrrlyn ' CARGO_PKG_DESCRIPTION='myrrlyn’s utility collection' CARGO_PKG_HOMEPAGE='https://myrrlyn.net/crates/wyz' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=wyz CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/myrrlyn/wyz' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.5.1 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=5 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.KZUspVEBBE/target/debug/deps rustc --crate-name wyz --edition=2018 /tmp/tmp.KZUspVEBBE/registry/wyz-0.5.1/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "default", "garbage", "once_cell", "std", "typemap"))' -C metadata=6a1737499423488b -C extra-filename=-6a1737499423488b --out-dir /tmp/tmp.KZUspVEBBE/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.KZUspVEBBE/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.KZUspVEBBE/target/debug/deps --extern tap=/tmp/tmp.KZUspVEBBE/target/s390x-unknown-linux-gnu/debug/deps/libtap-dc3123cf9c4aaec0.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/bitvec_helpers-3.1.5=/usr/share/cargo/registry/bitvec-helpers-3.1.5 --remap-path-prefix /tmp/tmp.KZUspVEBBE/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 118s warning: unexpected `cfg` condition name: `tarpaulin_include` 118s --> /usr/share/cargo/registry/wyz-0.5.1/src/comu.rs:9:12 118s | 118s 9 | #![cfg(not(tarpaulin_include))] 118s | ^^^^^^^^^^^^^^^^^ 118s | 118s = 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` 118s = help: consider using a Cargo feature instead 118s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 118s [lints.rust] 118s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 118s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 118s = note: see for more information about checking conditional configuration 118s = note: `#[warn(unexpected_cfgs)]` on by default 118s 118s warning: unexpected `cfg` condition name: `tarpaulin_include` 118s --> /usr/share/cargo/registry/wyz-0.5.1/src/bidi.rs:107:12 118s | 118s 107 | #[cfg(not(tarpaulin_include))] 118s | ^^^^^^^^^^^^^^^^^ 118s | 118s = help: consider using a Cargo feature instead 118s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 118s [lints.rust] 118s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 118s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 118s = note: see for more information about checking conditional configuration 118s 118s warning: unexpected `cfg` condition name: `tarpaulin_include` 118s --> /usr/share/cargo/registry/wyz-0.5.1/src/bidi.rs:113:12 118s | 118s 113 | #[cfg(not(tarpaulin_include))] 118s | ^^^^^^^^^^^^^^^^^ 118s | 118s = help: consider using a Cargo feature instead 118s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 118s [lints.rust] 118s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 118s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 118s = note: see for more information about checking conditional configuration 118s 118s warning: unexpected `cfg` condition name: `tarpaulin_include` 118s --> /usr/share/cargo/registry/wyz-0.5.1/src/bidi.rs:119:12 118s | 118s 119 | #[cfg(not(tarpaulin_include))] 118s | ^^^^^^^^^^^^^^^^^ 118s | 118s = help: consider using a Cargo feature instead 118s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 118s [lints.rust] 118s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 118s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 118s = note: see for more information about checking conditional configuration 118s 118s warning: unexpected `cfg` condition name: `tarpaulin_include` 118s --> /usr/share/cargo/registry/wyz-0.5.1/src/bidi.rs:143:12 118s | 118s 143 | #[cfg(not(tarpaulin_include))] 118s | ^^^^^^^^^^^^^^^^^ 118s | 118s = help: consider using a Cargo feature instead 118s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 118s [lints.rust] 118s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 118s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 118s = note: see for more information about checking conditional configuration 118s 118s warning: unexpected `cfg` condition name: `tarpaulin_include` 118s --> /usr/share/cargo/registry/wyz-0.5.1/src/fmt.rs:37:11 118s | 118s 37 | #[cfg(not(tarpaulin_include))] 118s | ^^^^^^^^^^^^^^^^^ 118s | 118s = help: consider using a Cargo feature instead 118s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 118s [lints.rust] 118s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 118s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 118s = note: see for more information about checking conditional configuration 118s 118s warning: unexpected `cfg` condition name: `tarpaulin_include` 118s --> /usr/share/cargo/registry/wyz-0.5.1/src/fmt.rs:368:11 118s | 118s 368 | #[cfg(not(tarpaulin_include))] 118s | ^^^^^^^^^^^^^^^^^ 118s | 118s = help: consider using a Cargo feature instead 118s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 118s [lints.rust] 118s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 118s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 118s = note: see for more information about checking conditional configuration 118s 118s warning: unexpected `cfg` condition name: `tarpaulin_include` 118s --> /usr/share/cargo/registry/wyz-0.5.1/src/fmt.rs:380:11 118s | 118s 380 | #[cfg(not(tarpaulin_include))] 118s | ^^^^^^^^^^^^^^^^^ 118s | 118s = help: consider using a Cargo feature instead 118s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 118s [lints.rust] 118s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 118s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 118s = note: see for more information about checking conditional configuration 118s 118s warning: unexpected `cfg` condition name: `tarpaulin_include` 118s --> /usr/share/cargo/registry/wyz-0.5.1/src/fmt.rs:390:11 118s | 118s 390 | #[cfg(not(tarpaulin_include))] 118s | ^^^^^^^^^^^^^^^^^ 118s | 118s = help: consider using a Cargo feature instead 118s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 118s [lints.rust] 118s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 118s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 118s = note: see for more information about checking conditional configuration 118s 118s warning: unexpected `cfg` condition name: `tarpaulin_include` 118s --> /usr/share/cargo/registry/wyz-0.5.1/src/fmt.rs:400:11 118s | 118s 400 | #[cfg(not(tarpaulin_include))] 118s | ^^^^^^^^^^^^^^^^^ 118s | 118s = help: consider using a Cargo feature instead 118s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 118s [lints.rust] 118s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 118s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 118s = note: see for more information about checking conditional configuration 118s 118s warning: unexpected `cfg` condition name: `tarpaulin_include` 118s --> /usr/share/cargo/registry/wyz-0.5.1/src/fmt.rs:156:13 118s | 118s 156 | #[cfg(not(tarpaulin_include))] 118s | ^^^^^^^^^^^^^^^^^ 118s ... 118s 263 | / fmt!( 118s 264 | | FmtBinary => Binary, 118s 265 | | FmtDisplay => Display, 118s 266 | | FmtLowerExp => LowerExp, 118s ... | 118s 271 | | FmtUpperHex => UpperHex, 118s 272 | | ); 118s | |_- in this macro invocation 118s | 118s = help: consider using a Cargo feature instead 118s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 118s [lints.rust] 118s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 118s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 118s = note: see for more information about checking conditional configuration 118s = note: this warning originates in the macro `fmt` (in Nightly builds, run with -Z macro-backtrace for more info) 118s 118s warning: unexpected `cfg` condition name: `tarpaulin_include` 118s --> /usr/share/cargo/registry/wyz-0.5.1/src/fmt.rs:171:13 118s | 118s 171 | #[cfg(not(tarpaulin_include))] 118s | ^^^^^^^^^^^^^^^^^ 118s ... 118s 263 | / fmt!( 118s 264 | | FmtBinary => Binary, 118s 265 | | FmtDisplay => Display, 118s 266 | | FmtLowerExp => LowerExp, 118s ... | 118s 271 | | FmtUpperHex => UpperHex, 118s 272 | | ); 118s | |_- in this macro invocation 118s | 118s = help: consider using a Cargo feature instead 118s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 118s [lints.rust] 118s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 118s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 118s = note: see for more information about checking conditional configuration 118s = note: this warning originates in the macro `fmt` (in Nightly builds, run with -Z macro-backtrace for more info) 118s 118s warning: unexpected `cfg` condition name: `tarpaulin_include` 118s --> /usr/share/cargo/registry/wyz-0.5.1/src/fmt.rs:179:13 118s | 118s 179 | #[cfg(not(tarpaulin_include))] 118s | ^^^^^^^^^^^^^^^^^ 118s ... 118s 263 | / fmt!( 118s 264 | | FmtBinary => Binary, 118s 265 | | FmtDisplay => Display, 118s 266 | | FmtLowerExp => LowerExp, 118s ... | 118s 271 | | FmtUpperHex => UpperHex, 118s 272 | | ); 118s | |_- in this macro invocation 118s | 118s = help: consider using a Cargo feature instead 118s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 118s [lints.rust] 118s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 118s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 118s = note: see for more information about checking conditional configuration 118s = note: this warning originates in the macro `fmt` (in Nightly builds, run with -Z macro-backtrace for more info) 118s 118s warning: unexpected `cfg` condition name: `tarpaulin_include` 118s --> /usr/share/cargo/registry/wyz-0.5.1/src/fmt.rs:187:13 118s | 118s 187 | #[cfg(not(tarpaulin_include))] 118s | ^^^^^^^^^^^^^^^^^ 118s ... 118s 263 | / fmt!( 118s 264 | | FmtBinary => Binary, 118s 265 | | FmtDisplay => Display, 118s 266 | | FmtLowerExp => LowerExp, 118s ... | 118s 271 | | FmtUpperHex => UpperHex, 118s 272 | | ); 118s | |_- in this macro invocation 118s | 118s = help: consider using a Cargo feature instead 118s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 118s [lints.rust] 118s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 118s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 118s = note: see for more information about checking conditional configuration 118s = note: this warning originates in the macro `fmt` (in Nightly builds, run with -Z macro-backtrace for more info) 118s 118s warning: unexpected `cfg` condition name: `tarpaulin_include` 118s --> /usr/share/cargo/registry/wyz-0.5.1/src/fmt.rs:195:13 118s | 118s 195 | #[cfg(not(tarpaulin_include))] 118s | ^^^^^^^^^^^^^^^^^ 118s ... 118s 263 | / fmt!( 118s 264 | | FmtBinary => Binary, 118s 265 | | FmtDisplay => Display, 118s 266 | | FmtLowerExp => LowerExp, 118s ... | 118s 271 | | FmtUpperHex => UpperHex, 118s 272 | | ); 118s | |_- in this macro invocation 118s | 118s = help: consider using a Cargo feature instead 118s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 118s [lints.rust] 118s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 118s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 118s = note: see for more information about checking conditional configuration 118s = note: this warning originates in the macro `fmt` (in Nightly builds, run with -Z macro-backtrace for more info) 118s 118s warning: unexpected `cfg` condition name: `tarpaulin_include` 118s --> /usr/share/cargo/registry/wyz-0.5.1/src/fmt.rs:203:13 118s | 118s 203 | #[cfg(not(tarpaulin_include))] 118s | ^^^^^^^^^^^^^^^^^ 118s ... 118s 263 | / fmt!( 118s 264 | | FmtBinary => Binary, 118s 265 | | FmtDisplay => Display, 118s 266 | | FmtLowerExp => LowerExp, 118s ... | 118s 271 | | FmtUpperHex => UpperHex, 118s 272 | | ); 118s | |_- in this macro invocation 118s | 118s = help: consider using a Cargo feature instead 118s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 118s [lints.rust] 118s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 118s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 118s = note: see for more information about checking conditional configuration 118s = note: this warning originates in the macro `fmt` (in Nightly builds, run with -Z macro-backtrace for more info) 118s 118s warning: unexpected `cfg` condition name: `tarpaulin_include` 118s --> /usr/share/cargo/registry/wyz-0.5.1/src/fmt.rs:211:13 118s | 118s 211 | #[cfg(not(tarpaulin_include))] 118s | ^^^^^^^^^^^^^^^^^ 118s ... 118s 263 | / fmt!( 118s 264 | | FmtBinary => Binary, 118s 265 | | FmtDisplay => Display, 118s 266 | | FmtLowerExp => LowerExp, 118s ... | 118s 271 | | FmtUpperHex => UpperHex, 118s 272 | | ); 118s | |_- in this macro invocation 118s | 118s = help: consider using a Cargo feature instead 118s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 118s [lints.rust] 118s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 118s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 118s = note: see for more information about checking conditional configuration 118s = note: this warning originates in the macro `fmt` (in Nightly builds, run with -Z macro-backtrace for more info) 118s 118s warning: unexpected `cfg` condition name: `tarpaulin_include` 118s --> /usr/share/cargo/registry/wyz-0.5.1/src/fmt.rs:219:13 118s | 118s 219 | #[cfg(not(tarpaulin_include))] 118s | ^^^^^^^^^^^^^^^^^ 118s ... 118s 263 | / fmt!( 118s 264 | | FmtBinary => Binary, 118s 265 | | FmtDisplay => Display, 118s 266 | | FmtLowerExp => LowerExp, 118s ... | 118s 271 | | FmtUpperHex => UpperHex, 118s 272 | | ); 118s | |_- in this macro invocation 118s | 118s = help: consider using a Cargo feature instead 118s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 118s [lints.rust] 118s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 118s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 118s = note: see for more information about checking conditional configuration 118s = note: this warning originates in the macro `fmt` (in Nightly builds, run with -Z macro-backtrace for more info) 118s 118s warning: unexpected `cfg` condition name: `tarpaulin_include` 118s --> /usr/share/cargo/registry/wyz-0.5.1/src/fmt.rs:227:13 118s | 118s 227 | #[cfg(not(tarpaulin_include))] 118s | ^^^^^^^^^^^^^^^^^ 118s ... 118s 263 | / fmt!( 118s 264 | | FmtBinary => Binary, 118s 265 | | FmtDisplay => Display, 118s 266 | | FmtLowerExp => LowerExp, 118s ... | 118s 271 | | FmtUpperHex => UpperHex, 118s 272 | | ); 118s | |_- in this macro invocation 118s | 118s = help: consider using a Cargo feature instead 118s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 118s [lints.rust] 118s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 118s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 118s = note: see for more information about checking conditional configuration 118s = note: this warning originates in the macro `fmt` (in Nightly builds, run with -Z macro-backtrace for more info) 118s 118s warning: unexpected `cfg` condition name: `tarpaulin_include` 118s --> /usr/share/cargo/registry/wyz-0.5.1/src/fmt.rs:237:13 118s | 118s 237 | #[cfg(not(tarpaulin_include))] 118s | ^^^^^^^^^^^^^^^^^ 118s ... 118s 263 | / fmt!( 118s 264 | | FmtBinary => Binary, 118s 265 | | FmtDisplay => Display, 118s 266 | | FmtLowerExp => LowerExp, 118s ... | 118s 271 | | FmtUpperHex => UpperHex, 118s 272 | | ); 118s | |_- in this macro invocation 118s | 118s = help: consider using a Cargo feature instead 118s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 118s [lints.rust] 118s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 118s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 118s = note: see for more information about checking conditional configuration 118s = note: this warning originates in the macro `fmt` (in Nightly builds, run with -Z macro-backtrace for more info) 118s 118s warning: unexpected `cfg` condition name: `tarpaulin_include` 118s --> /usr/share/cargo/registry/wyz-0.5.1/src/fmt.rs:245:13 118s | 118s 245 | #[cfg(not(tarpaulin_include))] 118s | ^^^^^^^^^^^^^^^^^ 118s ... 118s 263 | / fmt!( 118s 264 | | FmtBinary => Binary, 118s 265 | | FmtDisplay => Display, 118s 266 | | FmtLowerExp => LowerExp, 118s ... | 118s 271 | | FmtUpperHex => UpperHex, 118s 272 | | ); 118s | |_- in this macro invocation 118s | 118s = help: consider using a Cargo feature instead 118s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 118s [lints.rust] 118s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 118s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 118s = note: see for more information about checking conditional configuration 118s = note: this warning originates in the macro `fmt` (in Nightly builds, run with -Z macro-backtrace for more info) 118s 118s warning: unexpected `cfg` condition name: `tarpaulin_include` 118s --> /usr/share/cargo/registry/wyz-0.5.1/src/fmt.rs:253:13 118s | 118s 253 | #[cfg(not(tarpaulin_include))] 118s | ^^^^^^^^^^^^^^^^^ 118s ... 118s 263 | / fmt!( 118s 264 | | FmtBinary => Binary, 118s 265 | | FmtDisplay => Display, 118s 266 | | FmtLowerExp => LowerExp, 118s ... | 118s 271 | | FmtUpperHex => UpperHex, 118s 272 | | ); 118s | |_- in this macro invocation 118s | 118s = help: consider using a Cargo feature instead 118s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 118s [lints.rust] 118s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 118s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 118s = note: see for more information about checking conditional configuration 118s = note: this warning originates in the macro `fmt` (in Nightly builds, run with -Z macro-backtrace for more info) 118s 118s warning: `wyz` (lib) generated 23 warnings (1 duplicate) 118s Compiling radium v1.1.0 118s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=radium CARGO_MANIFEST_DIR=/tmp/tmp.KZUspVEBBE/registry/radium-1.1.0 CARGO_MANIFEST_PATH=/tmp/tmp.KZUspVEBBE/registry/radium-1.1.0/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='Portable interfaces for maybe-atomic types' CARGO_PKG_HOMEPAGE='https://ferrilab.github.io/ferrilab' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=radium CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/ferrilab/ferrilab' 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.KZUspVEBBE/target/debug/deps rustc --crate-name radium --edition=2021 /tmp/tmp.KZUspVEBBE/registry/radium-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("portable-atomic", "portable-atomic-fallback"))' -C metadata=688a1d384b60c00e -C extra-filename=-688a1d384b60c00e --out-dir /tmp/tmp.KZUspVEBBE/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.KZUspVEBBE/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.KZUspVEBBE/target/debug/deps --extern cfg_if=/tmp/tmp.KZUspVEBBE/target/s390x-unknown-linux-gnu/debug/deps/libcfg_if-ff3ff84a061de73f.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/bitvec_helpers-3.1.5=/usr/share/cargo/registry/bitvec-helpers-3.1.5 --remap-path-prefix /tmp/tmp.KZUspVEBBE/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 118s 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/bitvec_helpers-3.1.5=/usr/share/cargo/registry/bitvec-helpers-3.1.5--remap-path-prefix/tmp/tmp.KZUspVEBBE/registry=/usr/share/cargo/registry-Ctarget-feature=+backchain' CARGO_FEATURE_DEFAULT=1 CARGO_FEATURE_STD=1 CARGO_MANIFEST_DIR=/tmp/tmp.KZUspVEBBE/registry/anyhow-1.0.86 CARGO_MANIFEST_PATH=/tmp/tmp.KZUspVEBBE/registry/anyhow-1.0.86/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='Flexible concrete Error type built on std::error::Error' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=anyhow CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/anyhow' CARGO_PKG_RUST_VERSION=1.39 CARGO_PKG_VERSION=1.0.86 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=86 CARGO_PKG_VERSION_PRE='' DEBUG=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.KZUspVEBBE/target/debug/deps:/tmp/tmp.KZUspVEBBE/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.KZUspVEBBE/target/s390x-unknown-linux-gnu/debug/build/anyhow-0076587e9dd9f3d8/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.KZUspVEBBE/target/debug/build/anyhow-ce1e359b06d9faf4/build-script-build` 118s [anyhow 1.0.86] cargo:rerun-if-changed=build/probe.rs 118s [anyhow 1.0.86] cargo:rerun-if-env-changed=RUSTC_BOOTSTRAP 118s warning: `radium` (lib) generated 1 warning (1 duplicate) 118s Compiling funty v2.0.0 118s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=funty CARGO_MANIFEST_DIR=/tmp/tmp.KZUspVEBBE/registry/funty-2.0.0 CARGO_MANIFEST_PATH=/tmp/tmp.KZUspVEBBE/registry/funty-2.0.0/Cargo.toml CARGO_PKG_AUTHORS='myrrlyn ' CARGO_PKG_DESCRIPTION='Trait generalization over the primitive types' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=funty CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/myrrlyn/funty' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=2.0.0 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.KZUspVEBBE/target/debug/deps rustc --crate-name funty --edition=2018 /tmp/tmp.KZUspVEBBE/registry/funty-2.0.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "std"))' -C metadata=b943fa651dbd1f9d -C extra-filename=-b943fa651dbd1f9d --out-dir /tmp/tmp.KZUspVEBBE/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.KZUspVEBBE/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.KZUspVEBBE/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/bitvec_helpers-3.1.5=/usr/share/cargo/registry/bitvec-helpers-3.1.5 --remap-path-prefix /tmp/tmp.KZUspVEBBE/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 118s [anyhow 1.0.86] cargo:rustc-check-cfg=cfg(anyhow_nightly_testing) 118s [anyhow 1.0.86] cargo:rustc-check-cfg=cfg(anyhow_no_fmt_arguments_as_str) 118s [anyhow 1.0.86] cargo:rustc-check-cfg=cfg(anyhow_no_ptr_addr_of) 118s [anyhow 1.0.86] cargo:rustc-check-cfg=cfg(anyhow_no_unsafe_op_in_unsafe_fn_lint) 118s [anyhow 1.0.86] cargo:rustc-check-cfg=cfg(doc_cfg) 118s [anyhow 1.0.86] cargo:rustc-check-cfg=cfg(error_generic_member_access) 118s [anyhow 1.0.86] cargo:rustc-check-cfg=cfg(std_backtrace) 118s [anyhow 1.0.86] cargo:rustc-cfg=std_backtrace 118s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=anyhow CARGO_MANIFEST_DIR=/tmp/tmp.KZUspVEBBE/registry/anyhow-1.0.86 CARGO_MANIFEST_PATH=/tmp/tmp.KZUspVEBBE/registry/anyhow-1.0.86/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='Flexible concrete Error type built on std::error::Error' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=anyhow CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/anyhow' CARGO_PKG_RUST_VERSION=1.39 CARGO_PKG_VERSION=1.0.86 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=86 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.KZUspVEBBE/target/debug/deps OUT_DIR=/tmp/tmp.KZUspVEBBE/target/s390x-unknown-linux-gnu/debug/build/anyhow-0076587e9dd9f3d8/out rustc --crate-name anyhow --edition=2018 /tmp/tmp.KZUspVEBBE/registry/anyhow-1.0.86/src/lib.rs --error-format=json --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("backtrace", "default", "std"))' -C metadata=30f85af40dc383bf -C extra-filename=-30f85af40dc383bf --out-dir /tmp/tmp.KZUspVEBBE/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.KZUspVEBBE/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.KZUspVEBBE/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/bitvec_helpers-3.1.5=/usr/share/cargo/registry/bitvec-helpers-3.1.5 --remap-path-prefix /tmp/tmp.KZUspVEBBE/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain --cfg std_backtrace --check-cfg 'cfg(anyhow_nightly_testing)' --check-cfg 'cfg(anyhow_no_fmt_arguments_as_str)' --check-cfg 'cfg(anyhow_no_ptr_addr_of)' --check-cfg 'cfg(anyhow_no_unsafe_op_in_unsafe_fn_lint)' --check-cfg 'cfg(doc_cfg)' --check-cfg 'cfg(error_generic_member_access)' --check-cfg 'cfg(std_backtrace)'` 118s warning: `anyhow` (lib) generated 1 warning (1 duplicate) 118s Compiling bitvec v1.0.1 118s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=bitvec CARGO_MANIFEST_DIR=/tmp/tmp.KZUspVEBBE/registry/bitvec-1.0.1 CARGO_MANIFEST_PATH=/tmp/tmp.KZUspVEBBE/registry/bitvec-1.0.1/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='Addresses memory by bits, for packed collections and bitfields' CARGO_PKG_HOMEPAGE='https://bitvecto-rs.github.io/bitvec' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=bitvec CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/bitvecto-rs/bitvec' CARGO_PKG_RUST_VERSION=1.56 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.KZUspVEBBE/target/debug/deps rustc --crate-name bitvec --edition=2021 /tmp/tmp.KZUspVEBBE/registry/bitvec-1.0.1/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="alloc"' --cfg 'feature="atomic"' --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "atomic", "default", "serde", "std", "testing"))' -C metadata=255dfc50e4dc827a -C extra-filename=-255dfc50e4dc827a --out-dir /tmp/tmp.KZUspVEBBE/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.KZUspVEBBE/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.KZUspVEBBE/target/debug/deps --extern funty=/tmp/tmp.KZUspVEBBE/target/s390x-unknown-linux-gnu/debug/deps/libfunty-b943fa651dbd1f9d.rmeta --extern radium=/tmp/tmp.KZUspVEBBE/target/s390x-unknown-linux-gnu/debug/deps/libradium-688a1d384b60c00e.rmeta --extern tap=/tmp/tmp.KZUspVEBBE/target/s390x-unknown-linux-gnu/debug/deps/libtap-dc3123cf9c4aaec0.rmeta --extern wyz=/tmp/tmp.KZUspVEBBE/target/s390x-unknown-linux-gnu/debug/deps/libwyz-6a1737499423488b.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/bitvec_helpers-3.1.5=/usr/share/cargo/registry/bitvec-helpers-3.1.5 --remap-path-prefix /tmp/tmp.KZUspVEBBE/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/macros/internal.rs:364:11 119s | 119s 364 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = 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` 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s = note: `#[warn(unexpected_cfgs)]` on by default 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/macros/internal.rs:388:11 119s | 119s 388 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/array/api.rs:29:12 119s | 119s 29 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/array/api.rs:50:12 119s | 119s 50 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/array/iter.rs:41:11 119s | 119s 41 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/array/iter.rs:57:11 119s | 119s 57 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/array/iter.rs:163:11 119s | 119s 163 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/array/iter.rs:121:12 119s | 119s 121 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/array/iter.rs:143:12 119s | 119s 143 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/array/ops.rs:25:11 119s | 119s 25 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/array/ops.rs:37:11 119s | 119s 37 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/array/ops.rs:76:11 119s | 119s 76 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/array/ops.rs:88:11 119s | 119s 88 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/array/ops.rs:127:11 119s | 119s 127 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/array/ops.rs:139:11 119s | 119s 139 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/array/traits.rs:35:11 119s | 119s 35 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/array/traits.rs:47:11 119s | 119s 47 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/array/traits.rs:83:11 119s | 119s 83 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/array/traits.rs:95:11 119s | 119s 95 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/array/traits.rs:109:11 119s | 119s 109 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/array/traits.rs:123:11 119s | 119s 123 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/array/traits.rs:136:11 119s | 119s 136 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/array/traits.rs:150:11 119s | 119s 150 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/array/traits.rs:162:11 119s | 119s 162 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/array/traits.rs:174:11 119s | 119s 174 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/array/traits.rs:270:11 119s | 119s 270 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/array/traits.rs:327:11 119s | 119s 327 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/devel.rs:19:14 119s | 119s 19 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s ::: /usr/share/cargo/registry/bitvec-1.0.1/src/array/traits.rs:261:1 119s | 119s 261 | / easy_fmt! { 119s 262 | | impl Binary 119s 263 | | impl Display 119s 264 | | impl LowerHex 119s ... | 119s 267 | | for BitArray 119s 268 | | } 119s | |_- in this macro invocation 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s = note: this warning originates in the macro `easy_fmt` (in Nightly builds, run with -Z macro-backtrace for more info) 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/boxed/api.rs:134:12 119s | 119s 134 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/boxed/iter.rs:122:11 119s | 119s 122 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/boxed/iter.rs:134:11 119s | 119s 134 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/boxed/iter.rs:150:11 119s | 119s 150 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/boxed/iter.rs:88:12 119s | 119s 88 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/boxed/iter.rs:113:12 119s | 119s 113 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/boxed/ops.rs:27:11 119s | 119s 27 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/boxed/ops.rs:39:11 119s | 119s 39 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/boxed/ops.rs:78:11 119s | 119s 78 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/boxed/ops.rs:90:11 119s | 119s 90 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/boxed/ops.rs:129:11 119s | 119s 129 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/boxed/ops.rs:141:11 119s | 119s 141 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/boxed/ops.rs:215:11 119s | 119s 215 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/boxed/ops.rs:230:11 119s | 119s 230 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/boxed/traits.rs:39:11 119s | 119s 39 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/boxed/traits.rs:51:11 119s | 119s 51 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/boxed/traits.rs:63:11 119s | 119s 63 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/boxed/traits.rs:75:11 119s | 119s 75 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/boxed/traits.rs:83:11 119s | 119s 83 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/boxed/traits.rs:95:11 119s | 119s 95 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/boxed/traits.rs:109:11 119s | 119s 109 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/boxed/traits.rs:123:11 119s | 119s 123 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/boxed/traits.rs:137:11 119s | 119s 137 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/boxed/traits.rs:150:11 119s | 119s 150 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/boxed/traits.rs:164:11 119s | 119s 164 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/boxed/traits.rs:177:11 119s | 119s 177 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/boxed/traits.rs:191:11 119s | 119s 191 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/boxed/traits.rs:205:11 119s | 119s 205 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/boxed/traits.rs:217:11 119s | 119s 217 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/boxed/traits.rs:345:11 119s | 119s 345 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/boxed/traits.rs:359:11 119s | 119s 359 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/devel.rs:32:14 119s | 119s 32 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s ::: /usr/share/cargo/registry/bitvec-1.0.1/src/boxed/traits.rs:335:1 119s | 119s 335 | / easy_fmt! { 119s 336 | | impl Binary 119s 337 | | impl Display 119s 338 | | impl LowerHex 119s ... | 119s 342 | | for BitBox 119s 343 | | } 119s | |_- in this macro invocation 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s = note: this warning originates in the macro `easy_fmt` (in Nightly builds, run with -Z macro-backtrace for more info) 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/domain.rs:206:11 119s | 119s 206 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/domain.rs:561:11 119s | 119s 561 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/domain.rs:892:11 119s | 119s 892 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/domain.rs:929:11 119s | 119s 929 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/domain.rs:765:12 119s | 119s 765 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/domain.rs:772:12 119s | 119s 772 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/domain.rs:780:12 119s | 119s 780 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/domain.rs:787:12 119s | 119s 787 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/domain.rs:840:12 119s | 119s 840 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/domain.rs:851:12 119s | 119s 851 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/domain.rs:862:12 119s | 119s 862 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/field.rs:444:11 119s | 119s 444 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/field.rs:477:11 119s | 119s 477 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/field/io.rs:64:12 119s | 119s 64 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/field/io.rs:102:12 119s | 119s 102 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/field.rs:44:12 119s | 119s 44 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/field.rs:70:12 119s | 119s 70 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/index.rs:388:11 119s | 119s 388 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/index.rs:109:12 119s | 119s 109 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/index.rs:160:12 119s | 119s 160 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/index.rs:173:12 119s | 119s 173 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/index.rs:185:12 119s | 119s 185 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/index.rs:373:12 119s | 119s 373 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/index.rs:484:12 119s | 119s 484 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/index.rs:676:12 119s | 119s 676 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/index.rs:695:12 119s | 119s 695 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/index.rs:797:12 119s | 119s 797 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/index.rs:804:12 119s | 119s 804 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/index.rs:894:12 119s | 119s 894 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/mem.rs:61:11 119s | 119s 61 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/mem.rs:68:11 119s | 119s 68 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/order.rs:237:11 119s | 119s 237 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr.rs:118:11 119s | 119s 118 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr.rs:130:11 119s | 119s 130 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr.rs:141:11 119s | 119s 141 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr.rs:152:11 119s | 119s 152 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr.rs:164:11 119s | 119s 164 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr.rs:176:11 119s | 119s 176 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr.rs:187:11 119s | 119s 187 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr.rs:198:11 119s | 119s 198 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr.rs:212:11 119s | 119s 212 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr.rs:260:11 119s | 119s 260 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr.rs:271:11 119s | 119s 271 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr.rs:287:11 119s | 119s 287 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr.rs:299:11 119s | 119s 299 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr.rs:312:11 119s | 119s 312 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr.rs:326:11 119s | 119s 326 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr/addr.rs:67:11 119s | 119s 67 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr/addr.rs:85:11 119s | 119s 85 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr/addr.rs:103:11 119s | 119s 103 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr/addr.rs:113:11 119s | 119s 113 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr/addr.rs:139:11 119s | 119s 139 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr/addr.rs:150:11 119s | 119s 150 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr/proxy.rs:172:11 119s | 119s 172 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr/proxy.rs:192:11 119s | 119s 192 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr/proxy.rs:205:11 119s | 119s 205 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr/proxy.rs:222:11 119s | 119s 222 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr/proxy.rs:235:11 119s | 119s 235 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr/proxy.rs:248:11 119s | 119s 248 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr/proxy.rs:261:11 119s | 119s 261 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr/proxy.rs:274:11 119s | 119s 274 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr/proxy.rs:294:11 119s | 119s 294 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr/proxy.rs:307:11 119s | 119s 307 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr/proxy.rs:320:11 119s | 119s 320 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr/proxy.rs:333:11 119s | 119s 333 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr/proxy.rs:358:11 119s | 119s 358 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr/proxy.rs:371:11 119s | 119s 371 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr/proxy.rs:384:11 119s | 119s 384 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr/proxy.rs:99:12 119s | 119s 99 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr/proxy.rs:110:12 119s | 119s 110 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr/range.rs:203:11 119s | 119s 203 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr/range.rs:242:11 119s | 119s 242 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr/range.rs:255:11 119s | 119s 255 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr/range.rs:268:11 119s | 119s 268 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr/range.rs:281:11 119s | 119s 281 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr/range.rs:297:11 119s | 119s 297 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr/range.rs:387:11 119s | 119s 387 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr/single.rs:1208:11 119s | 119s 1208 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr/single.rs:1289:11 119s | 119s 1289 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr/single.rs:1301:11 119s | 119s 1301 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr/single.rs:1377:11 119s | 119s 1377 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr/single.rs:1412:11 119s | 119s 1412 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr/single.rs:1422:11 119s | 119s 1422 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr/single.rs:1432:11 119s | 119s 1432 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr/single.rs:344:12 119s | 119s 344 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr/single.rs:391:12 119s | 119s 391 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr/single.rs:452:12 119s | 119s 452 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr/single.rs:834:12 119s | 119s 834 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr/single.rs:854:12 119s | 119s 854 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr/single.rs:1014:12 119s | 119s 1014 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr/single.rs:1046:12 119s | 119s 1046 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr/span.rs:681:11 119s | 119s 681 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr/span.rs:735:11 119s | 119s 735 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr/span.rs:800:11 119s | 119s 800 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr/span.rs:813:11 119s | 119s 813 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr/span.rs:823:11 119s | 119s 823 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/ptr/span.rs:843:11 119s | 119s 843 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/slice/api.rs:2740:11 119s | 119s 2740 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/slice/api.rs:528:12 119s | 119s 528 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/slice/api.rs:536:12 119s | 119s 536 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/slice/api.rs:556:12 119s | 119s 556 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/slice/api.rs:574:12 119s | 119s 574 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/slice/api.rs:2180:12 119s | 119s 2180 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/slice/api.rs:2192:12 119s | 119s 2192 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/slice/iter.rs:41:11 119s | 119s 41 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/slice/iter.rs:57:11 119s | 119s 57 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/slice/iter.rs:230:11 119s | 119s 230 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/slice/iter.rs:246:11 119s | 119s 246 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/slice/iter.rs:259:11 119s | 119s 259 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/slice/iter.rs:380:11 119s | 119s 380 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/slice/iter.rs:393:11 119s | 119s 393 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/slice/iter.rs:131:12 119s | 119s 131 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/slice/iter.rs:221:12 119s | 119s 221 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/slice/iter.rs:325:12 119s | 119s 325 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/slice/iter.rs:331:12 119s | 119s 331 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/slice/iter.rs:365:12 119s | 119s 365 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/slice/iter.rs:371:12 119s | 119s 371 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/slice/iter.rs:884:12 119s | 119s 884 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/slice/iter.rs:989:12 119s | 119s 989 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/slice/iter.rs:1295:12 119s | 119s 1295 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/slice/iter.rs:1400:12 119s | 119s 1400 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/slice/traits.rs:531:11 119s | 119s 531 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/slice/traits.rs:570:11 119s | 119s 570 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/slice.rs:974:12 119s | 119s 974 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/slice.rs:998:12 119s | 119s 998 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/slice.rs:1011:12 119s | 119s 1011 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/slice.rs:1024:12 119s | 119s 1024 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/slice.rs:1037:12 119s | 119s 1037 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/api.rs:314:12 119s | 119s 314 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/api.rs:368:12 119s | 119s 368 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/api.rs:376:12 119s | 119s 376 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/api.rs:384:12 119s | 119s 384 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/api.rs:392:12 119s | 119s 392 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/api.rs:773:12 119s | 119s 773 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/api.rs:788:12 119s | 119s 788 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/api.rs:894:12 119s | 119s 894 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/api.rs:931:12 119s | 119s 931 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/iter.rs:81:11 119s | 119s 81 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/iter.rs:94:11 119s | 119s 94 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/iter.rs:128:11 119s | 119s 128 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/iter.rs:145:11 119s | 119s 145 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/iter.rs:159:11 119s | 119s 159 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/iter.rs:172:11 119s | 119s 172 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/iter.rs:190:11 119s | 119s 190 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/iter.rs:203:11 119s | 119s 203 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/iter.rs:234:11 119s | 119s 234 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/iter.rs:250:11 119s | 119s 250 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/iter.rs:410:11 119s | 119s 410 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/iter.rs:422:11 119s | 119s 422 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/iter.rs:435:11 119s | 119s 435 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/iter.rs:457:11 119s | 119s 457 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/iter.rs:475:11 119s | 119s 475 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/iter.rs:601:11 119s | 119s 601 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/iter.rs:619:11 119s | 119s 619 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/iter.rs:323:12 119s | 119s 323 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/iter.rs:329:12 119s | 119s 329 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/ops.rs:30:11 119s | 119s 30 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/ops.rs:42:11 119s | 119s 42 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/ops.rs:54:11 119s | 119s 54 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/ops.rs:70:11 119s | 119s 70 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/ops.rs:83:11 119s | 119s 83 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/ops.rs:95:11 119s | 119s 95 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/ops.rs:107:11 119s | 119s 107 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/ops.rs:123:11 119s | 119s 123 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/ops.rs:136:11 119s | 119s 136 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/ops.rs:148:11 119s | 119s 148 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/ops.rs:160:11 119s | 119s 160 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/ops.rs:176:11 119s | 119s 176 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/ops.rs:226:11 119s | 119s 226 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/ops.rs:241:11 119s | 119s 241 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/traits.rs:40:11 119s | 119s 40 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/traits.rs:52:11 119s | 119s 52 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/traits.rs:64:11 119s | 119s 64 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/traits.rs:83:11 119s | 119s 83 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/traits.rs:95:11 119s | 119s 95 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/traits.rs:109:11 119s | 119s 109 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/traits.rs:123:11 119s | 119s 123 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/traits.rs:137:11 119s | 119s 137 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/traits.rs:150:11 119s | 119s 150 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/traits.rs:164:11 119s | 119s 164 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/traits.rs:178:11 119s | 119s 178 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/traits.rs:192:11 119s | 119s 192 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/traits.rs:205:11 119s | 119s 205 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/traits.rs:217:11 119s | 119s 217 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/traits.rs:229:11 119s | 119s 229 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/traits.rs:241:11 119s | 119s 241 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/traits.rs:253:11 119s | 119s 253 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/traits.rs:265:11 119s | 119s 265 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/traits.rs:277:11 119s | 119s 277 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/traits.rs:289:11 119s | 119s 289 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/traits.rs:301:11 119s | 119s 301 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/traits.rs:313:11 119s | 119s 313 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/traits.rs:325:11 119s | 119s 325 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/traits.rs:339:11 119s | 119s 339 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/vec/traits.rs:377:11 119s | 119s 377 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/devel.rs:32:14 119s | 119s 32 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s ::: /usr/share/cargo/registry/bitvec-1.0.1/src/vec/traits.rs:367:1 119s | 119s 367 | / easy_fmt! { 119s 368 | | impl Binary 119s 369 | | impl Display 119s 370 | | impl LowerHex 119s ... | 119s 374 | | for BitVec 119s 375 | | } 119s | |_- in this macro invocation 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s = note: this warning originates in the macro `easy_fmt` (in Nightly builds, run with -Z macro-backtrace for more info) 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/view.rs:43:11 119s | 119s 43 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/view.rs:73:11 119s | 119s 73 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/view.rs:107:11 119s | 119s 107 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/view.rs:225:11 119s | 119s 225 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: unexpected `cfg` condition name: `tarpaulin_include` 119s --> /usr/share/cargo/registry/bitvec-1.0.1/src/view.rs:244:11 119s | 119s 244 | #[cfg(not(tarpaulin_include))] 119s | ^^^^^^^^^^^^^^^^^ 119s | 119s = help: consider using a Cargo feature instead 119s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 119s [lints.rust] 119s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } 119s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs` 119s = note: see for more information about checking conditional configuration 119s 119s warning: `funty` (lib) generated 1 warning (1 duplicate) 120s warning: `bitvec` (lib) generated 262 warnings (1 duplicate) 120s Compiling bitvec_helpers v3.1.5 (/usr/share/cargo/registry/bitvec_helpers-3.1.5) 120s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=bitvec_helpers CARGO_MANIFEST_DIR=/usr/share/cargo/registry/bitvec_helpers-3.1.5 CARGO_MANIFEST_PATH=/usr/share/cargo/registry/bitvec_helpers-3.1.5/Cargo.toml CARGO_PKG_AUTHORS=quietvoid CARGO_PKG_DESCRIPTION='BitVec based bitstream reader and writer' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=bitvec_helpers CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/quietvoid/bitvec_helpers' CARGO_PKG_RUST_VERSION=1.79.0 CARGO_PKG_VERSION=3.1.5 CARGO_PKG_VERSION_MAJOR=3 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=5 CARGO_PKG_VERSION_PRE='' CARGO_PRIMARY_PACKAGE=1 LD_LIBRARY_PATH=/tmp/tmp.KZUspVEBBE/target/debug/deps rustc --crate-name bitvec_helpers --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="bitvec"' --cfg 'feature="default"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("bitstream-io", "bitvec", "default"))' -C metadata=37673bb98181450d -C extra-filename=-37673bb98181450d --out-dir /tmp/tmp.KZUspVEBBE/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -C incremental=/tmp/tmp.KZUspVEBBE/target/s390x-unknown-linux-gnu/debug/incremental -L dependency=/tmp/tmp.KZUspVEBBE/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.KZUspVEBBE/target/debug/deps --extern anyhow=/tmp/tmp.KZUspVEBBE/target/s390x-unknown-linux-gnu/debug/deps/libanyhow-30f85af40dc383bf.rlib --extern bitvec=/tmp/tmp.KZUspVEBBE/target/s390x-unknown-linux-gnu/debug/deps/libbitvec-255dfc50e4dc827a.rlib --extern funty=/tmp/tmp.KZUspVEBBE/target/s390x-unknown-linux-gnu/debug/deps/libfunty-b943fa651dbd1f9d.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/bitvec_helpers-3.1.5=/usr/share/cargo/registry/bitvec-helpers-3.1.5 --remap-path-prefix /tmp/tmp.KZUspVEBBE/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 121s warning: `bitvec_helpers` (lib test) generated 1 warning (1 duplicate) 121s Finished `test` profile [unoptimized + debuginfo] target(s) in 3.37s 121s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_MANIFEST_DIR=/usr/share/cargo/registry/bitvec_helpers-3.1.5 CARGO_MANIFEST_PATH=/usr/share/cargo/registry/bitvec_helpers-3.1.5/Cargo.toml CARGO_PKG_AUTHORS=quietvoid CARGO_PKG_DESCRIPTION='BitVec based bitstream reader and writer' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=bitvec_helpers CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/quietvoid/bitvec_helpers' CARGO_PKG_RUST_VERSION=1.79.0 CARGO_PKG_VERSION=3.1.5 CARGO_PKG_VERSION_MAJOR=3 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=5 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/tmp/tmp.KZUspVEBBE/target/s390x-unknown-linux-gnu/debug/deps:/tmp/tmp.KZUspVEBBE/target/s390x-unknown-linux-gnu/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' /tmp/tmp.KZUspVEBBE/target/s390x-unknown-linux-gnu/debug/deps/bitvec_helpers-37673bb98181450d` 121s 121s running 4 tests 121s test bitvec_impl::bitslice_reader::skip_n_validations ... ok 121s test bitvec_impl::bitslice_reader::get_n_validations ... ok 121s test bitvec_impl::bitvec_reader::get_n_validations ... ok 121s test bitvec_impl::bitvec_reader::skip_n_validations ... ok 121s 121s test result: ok. 4 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.00s 121s 121s /tmp/autopkgtest.ijk0Vb/wrapper.sh: checking for leaked background processes... 121s /tmp/autopkgtest.ijk0Vb/wrapper.sh: waiting for tee/cat subprocesses... 121s /tmp/autopkgtest.ijk0Vb/wrapper.sh: cleaning up... 121s /tmp/autopkgtest.ijk0Vb/wrapper.sh: Exit status: 0 121s autopkgtest: DBG: testbed command exited with code 0 121s autopkgtest [21:12:25]: test librust-bitvec-helpers-dev:default: -----------------------] 121s autopkgtest: DBG: testbed executing test finished with exit status 0 121s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.ijk0Vb/librust-bitvec-helpers-dev%3Adefault-stdout /tmp/autopkgtest-work.59hd9nc_/out/librust-bitvec-helpers-dev%3Adefault-stdout 122s autopkgtest: DBG: got reply from testbed: ok 122s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.ijk0Vb/librust-bitvec-helpers-dev%3Adefault-stderr /tmp/autopkgtest-work.59hd9nc_/out/librust-bitvec-helpers-dev%3Adefault-stderr 122s autopkgtest: DBG: got reply from testbed: ok 122s autopkgtest [21:12:26]: test librust-bitvec-helpers-dev:default: - - - - - - - - - - results - - - - - - - - - - 122s librust-bitvec-helpers-dev:default PASS 122s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.ijk0Vb/librust-bitvec-helpers-dev%3Adefault-artifacts/ /tmp/autopkgtest-work.59hd9nc_/out/artifacts/ 122s autopkgtest: DBG: got reply from testbed: ok 122s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.ijk0Vb/librust-bitvec-helpers-dev:default-artifacts', '/tmp/autopkgtest.ijk0Vb/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 122s autopkgtest: DBG: testbed command exited with code 0 122s autopkgtest [21:12:26]: test librust-bitvec-helpers-dev:: preparing testbed 122s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['dh-cargo (>= 18)', 'librust-bitvec-helpers-dev'], deps_new=['dh-cargo (>= 18)', 'librust-bitvec-helpers-dev'] 122s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 122s autopkgtest: DBG: install_deps: deps_new=['dh-cargo (>= 18)', 'librust-bitvec-helpers-dev'] 122s autopkgtest: DBG: install-deps: satisfying dh-cargo (>= 18), librust-bitvec-helpers-dev 122s autopkgtest: DBG: can use apt-get on testbed: True 122s 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-bitvec-helpers-dev'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 122s Reading package lists... 123s Building dependency tree... 123s Reading state information... 123s Starting pkgProblemResolver with broken count: 0 123s Starting 2 pkgProblemResolver with broken count: 0 123s Done 123s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 123s autopkgtest: DBG: testbed command exited with code 0 123s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'librust-bitvec-helpers-dev'], kind short, sout pipe, serr pipe, env [] 123s autopkgtest: DBG: testbed command exited with code 0 123s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.ijk0Vb/librust-bitvec-helpers-dev:-packages.all"], kind short, sout raw, serr pipe, env [] 123s autopkgtest: DBG: testbed command exited with code 0 123s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.ijk0Vb/librust-bitvec-helpers-dev%3A-packages.all /tmp/autopkgtest-work.59hd9nc_/out/librust-bitvec-helpers-dev%3A-packages.all 123s autopkgtest: DBG: got reply from testbed: ok 123s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.ijk0Vb/build.4F8/src'], kind short, sout raw, serr raw, env [] 124s autopkgtest: DBG: testbed command exited with code 0 124s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.ijk0Vb/build.4F8/src already exists 124s autopkgtest [21:12:28]: test librust-bitvec-helpers-dev:: /usr/share/cargo/bin/cargo-auto-test bitvec_helpers 3.1.5 --all-targets --no-default-features 124s autopkgtest [21:12:28]: test librust-bitvec-helpers-dev:: [----------------------- 124s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.ijk0Vb/wrapper.sh --debug --artifacts=/tmp/autopkgtest.ijk0Vb/librust-bitvec-helpers-dev:-artifacts --chdir=/tmp/autopkgtest.ijk0Vb/build.4F8/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.ijk0Vb/librust-bitvec-helpers-dev:-stderr --stdout=/tmp/autopkgtest.ijk0Vb/librust-bitvec-helpers-dev:-stdout --tmp=/tmp/autopkgtest.ijk0Vb/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 bitvec_helpers 3.1.5 --all-targets --no-default-features'"], kind test, sout raw, serr raw, env [] 124s /tmp/autopkgtest.ijk0Vb/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.ijk0Vb/librust-bitvec-helpers-dev:-artifacts 124s /tmp/autopkgtest.ijk0Vb/wrapper.sh: changing to directory: /tmp/autopkgtest.ijk0Vb/build.4F8/src 124s /tmp/autopkgtest.ijk0Vb/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 124s /tmp/autopkgtest.ijk0Vb/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 124s /tmp/autopkgtest.ijk0Vb/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 124s /tmp/autopkgtest.ijk0Vb/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 124s /tmp/autopkgtest.ijk0Vb/wrapper.sh: setting environment: LANG=C.UTF-8 124s /tmp/autopkgtest.ijk0Vb/wrapper.sh: unsetting environment: LANGUAGE 124s /tmp/autopkgtest.ijk0Vb/wrapper.sh: unsetting environment: LC_ADDRESS 124s /tmp/autopkgtest.ijk0Vb/wrapper.sh: unsetting environment: LC_ALL 124s /tmp/autopkgtest.ijk0Vb/wrapper.sh: unsetting environment: LC_COLLATE 124s /tmp/autopkgtest.ijk0Vb/wrapper.sh: unsetting environment: LC_CTYPE 124s /tmp/autopkgtest.ijk0Vb/wrapper.sh: unsetting environment: LC_IDENTIFICATION 124s /tmp/autopkgtest.ijk0Vb/wrapper.sh: unsetting environment: LC_MEASUREMENT 124s /tmp/autopkgtest.ijk0Vb/wrapper.sh: unsetting environment: LC_MESSAGES 124s /tmp/autopkgtest.ijk0Vb/wrapper.sh: unsetting environment: LC_MONETARY 124s /tmp/autopkgtest.ijk0Vb/wrapper.sh: unsetting environment: LC_NAME 124s /tmp/autopkgtest.ijk0Vb/wrapper.sh: unsetting environment: LC_NUMERIC 124s /tmp/autopkgtest.ijk0Vb/wrapper.sh: unsetting environment: LC_PAPER 124s /tmp/autopkgtest.ijk0Vb/wrapper.sh: unsetting environment: LC_TELEPHONE 124s /tmp/autopkgtest.ijk0Vb/wrapper.sh: unsetting environment: LC_TIME 124s /tmp/autopkgtest.ijk0Vb/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 124s /tmp/autopkgtest.ijk0Vb/wrapper.sh: pretending to be a login shell 124s /tmp/autopkgtest.ijk0Vb/wrapper.sh: will write standard error to /tmp/autopkgtest.ijk0Vb/librust-bitvec-helpers-dev:-stderr 124s /tmp/autopkgtest.ijk0Vb/wrapper.sh: will write stdout to /tmp/autopkgtest.ijk0Vb/librust-bitvec-helpers-dev:-stdout 124s /tmp/autopkgtest.ijk0Vb/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.ijk0Vb/autopkgtest_tmp 124s /tmp/autopkgtest.ijk0Vb/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 124s /tmp/autopkgtest.ijk0Vb/wrapper.sh: command to run: bash -ec /usr/share/cargo/bin/cargo-auto-test bitvec_helpers 3.1.5 --all-targets --no-default-features 124s /tmp/autopkgtest.ijk0Vb/wrapper.sh: copying /tmp/tmp.FXZEiUDvyA/out to stdout and file: /tmp/autopkgtest.ijk0Vb/librust-bitvec-helpers-dev:-stdout 124s /tmp/autopkgtest.ijk0Vb/wrapper.sh: copying /tmp/tmp.FXZEiUDvyA/err to standard error and file: /tmp/autopkgtest.ijk0Vb/librust-bitvec-helpers-dev:-stdout 124s /tmp/autopkgtest.ijk0Vb/wrapper.sh: writing script pid 4024 to /tmp/autopkgtest_script_pid 124s debian cargo wrapper: options, profiles, parallel, lto: ['parallel=2'] [] ['-j2'] 0 124s debian cargo wrapper: rust_type, gnu_type: s390x-unknown-linux-gnu, s390x-linux-gnu 124s debian cargo wrapper: unsetting RUSTFLAGS and assuming it will be (or already was) added to $CARGO_HOME/config.toml 124s debian cargo wrapper: linking /usr/share/cargo/registry/* into /tmp/tmp.DnhMNs8HWv/registry/ 124s debian cargo wrapper: options, profiles, parallel, lto: ['parallel=2'] [] ['-j2'] 0 124s debian cargo wrapper: rust_type, gnu_type: s390x-unknown-linux-gnu, s390x-linux-gnu 124s debian cargo wrapper: unsetting RUSTFLAGS and assuming it will be (or already was) added to $CARGO_HOME/config.toml 124s 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'],) {} 124s Compiling bitvec_helpers v3.1.5 (/usr/share/cargo/registry/bitvec_helpers-3.1.5) 124s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=bitvec_helpers CARGO_MANIFEST_DIR=/usr/share/cargo/registry/bitvec_helpers-3.1.5 CARGO_MANIFEST_PATH=/usr/share/cargo/registry/bitvec_helpers-3.1.5/Cargo.toml CARGO_PKG_AUTHORS=quietvoid CARGO_PKG_DESCRIPTION='BitVec based bitstream reader and writer' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=bitvec_helpers CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/quietvoid/bitvec_helpers' CARGO_PKG_RUST_VERSION=1.79.0 CARGO_PKG_VERSION=3.1.5 CARGO_PKG_VERSION_MAJOR=3 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=5 CARGO_PKG_VERSION_PRE='' CARGO_PRIMARY_PACKAGE=1 LD_LIBRARY_PATH=/tmp/tmp.DnhMNs8HWv/target/debug/deps rustc --crate-name bitvec_helpers --edition=2021 src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --test --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("bitstream-io", "bitvec", "default"))' -C metadata=21f9921dc610aadd -C extra-filename=-21f9921dc610aadd --out-dir /tmp/tmp.DnhMNs8HWv/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -C incremental=/tmp/tmp.DnhMNs8HWv/target/s390x-unknown-linux-gnu/debug/incremental -L dependency=/tmp/tmp.DnhMNs8HWv/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.DnhMNs8HWv/target/debug/deps -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/bitvec_helpers-3.1.5=/usr/share/cargo/registry/bitvec-helpers-3.1.5 --remap-path-prefix /tmp/tmp.DnhMNs8HWv/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 124s warning: function `signed_to_unsigned` is never used 124s --> src/lib.rs:13:15 124s | 124s 13 | pub(crate) fn signed_to_unsigned(v: &i64) -> u64 { 124s | ^^^^^^^^^^^^^^^^^^ 124s | 124s = note: `#[warn(dead_code)]` on by default 124s 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 warning: `bitvec_helpers` (lib test) generated 2 warnings 124s Finished `test` profile [unoptimized + debuginfo] target(s) in 0.39s 124s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_MANIFEST_DIR=/usr/share/cargo/registry/bitvec_helpers-3.1.5 CARGO_MANIFEST_PATH=/usr/share/cargo/registry/bitvec_helpers-3.1.5/Cargo.toml CARGO_PKG_AUTHORS=quietvoid CARGO_PKG_DESCRIPTION='BitVec based bitstream reader and writer' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=bitvec_helpers CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/quietvoid/bitvec_helpers' CARGO_PKG_RUST_VERSION=1.79.0 CARGO_PKG_VERSION=3.1.5 CARGO_PKG_VERSION_MAJOR=3 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=5 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/tmp/tmp.DnhMNs8HWv/target/s390x-unknown-linux-gnu/debug/deps:/tmp/tmp.DnhMNs8HWv/target/s390x-unknown-linux-gnu/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' /tmp/tmp.DnhMNs8HWv/target/s390x-unknown-linux-gnu/debug/deps/bitvec_helpers-21f9921dc610aadd` 124s 124s running 0 tests 124s 124s test result: ok. 0 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.00s 124s 124s /tmp/autopkgtest.ijk0Vb/wrapper.sh: checking for leaked background processes... 124s /tmp/autopkgtest.ijk0Vb/wrapper.sh: waiting for tee/cat subprocesses... 124s /tmp/autopkgtest.ijk0Vb/wrapper.sh: cleaning up... 124s /tmp/autopkgtest.ijk0Vb/wrapper.sh: Exit status: 0 124s autopkgtest: DBG: testbed command exited with code 0 125s autopkgtest [21:12:29]: test librust-bitvec-helpers-dev:: -----------------------] 125s autopkgtest: DBG: testbed executing test finished with exit status 0 125s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.ijk0Vb/librust-bitvec-helpers-dev%3A-stdout /tmp/autopkgtest-work.59hd9nc_/out/librust-bitvec-helpers-dev%3A-stdout 125s autopkgtest: DBG: got reply from testbed: ok 125s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.ijk0Vb/librust-bitvec-helpers-dev%3A-stderr /tmp/autopkgtest-work.59hd9nc_/out/librust-bitvec-helpers-dev%3A-stderr 125s autopkgtest: DBG: got reply from testbed: ok 125s librust-bitvec-helpers-dev: PASS 125s autopkgtest [21:12:29]: test librust-bitvec-helpers-dev:: - - - - - - - - - - results - - - - - - - - - - 125s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.ijk0Vb/librust-bitvec-helpers-dev%3A-artifacts/ /tmp/autopkgtest-work.59hd9nc_/out/artifacts/ 125s autopkgtest: DBG: got reply from testbed: ok 125s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.ijk0Vb/librust-bitvec-helpers-dev:-artifacts', '/tmp/autopkgtest.ijk0Vb/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 125s autopkgtest: DBG: testbed command exited with code 0 125s autopkgtest: DBG: needs_reset, previously=False, requested by run_tests() line 230 125s autopkgtest [21:12:29]: @@@@@@@@@@@@@@@@@@@@ summary 125s rust-bitvec-helpers:@ PASS 125s librust-bitvec-helpers-dev:bitstream-io PASS 125s librust-bitvec-helpers-dev:bitvec PASS 125s librust-bitvec-helpers-dev:default PASS 125s librust-bitvec-helpers-dev: PASS 125s autopkgtest: DBG: testbed stop 125s autopkgtest: DBG: testbed close, scratch=/tmp/autopkgtest.ijk0Vb 125s autopkgtest: DBG: sending command to testbed: close 142s autopkgtest: DBG: got reply from testbed: ok 142s autopkgtest: DBG: sending command to testbed: quit 142s nova [W] Using flock in prodstack6-s390x 142s Creating nova instance adt-plucky-s390x-rust-bitvec-helpers-20250211-211024-juju-7f2275-prod-proposed-migration-environment-15-fdf68a54-f1ed-4b88-a3ac-de90ba955b04 from image adt/ubuntu-plucky-s390x-server-20250211.img (UUID 66c3edab-d329-48ef-b4f4-4fc082c07041)... 142s nova [W] Timed out waiting for 48fe42ff-2a64-4177-a15a-f2df2137c0ea to get deleted.